Source code for airflow.providers.cncf.kubernetes.backcompat.pod_runtime_info_env

# 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"""

import kubernetes.client.models as k8s


[docs]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 :type: name: str :param field_path: path to pod runtime info. Ex: metadata.namespace | status.podIP :type: field_path: str """ self.name = name self.field_path = field_path
[docs] 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)),
)

Was this entry helpful?