airflow pod_runtime_info_env 源码

  • 2022-10-20
  • 浏览 (242)

airflow pod_runtime_info_env 代码

文件路径:/airflow/providers/cncf/kubernetes/backcompat/pod_runtime_info_env.py

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#   http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied.  See the License for the
# specific language governing permissions and limitations
# under the License.
"""
Classes for interacting with Kubernetes API.

This module is deprecated. Please use :mod:`kubernetes.client.models.V1EnvVar`.
"""
from __future__ import annotations

import warnings

import kubernetes.client.models as k8s

warnings.warn(
    "This module is deprecated. Please use `kubernetes.client.models.V1EnvVar`.",
    DeprecationWarning,
    stacklevel=2,
)


class PodRuntimeInfoEnv:
    """Defines Pod runtime information as environment variable."""

    def __init__(self, name, field_path):
        """
        Adds Kubernetes pod runtime information as environment variables such as namespace, pod IP, pod name.
        Full list of options can be found in kubernetes documentation.

        :param name: the name of the environment variable
        :param field_path: path to pod runtime info. Ex: metadata.namespace | status.podIP
        """
        self.name = name
        self.field_path = field_path

    def to_k8s_client_obj(self):
        """Converts to k8s object.

        :return: kubernetes.client.models.V1EnvVar
        """
        return k8s.V1EnvVar(
            name=self.name,
            value_from=k8s.V1EnvVarSource(field_ref=k8s.V1ObjectFieldSelector(field_path=self.field_path)),
        )

相关信息

airflow 源码目录

相关文章

airflow init 源码

airflow backwards_compat_converters 源码

airflow pod 源码

airflow volume 源码

airflow volume_mount 源码

0  赞