kaxil commented on a change in pull request #12384:
URL: https://github.com/apache/airflow/pull/12384#discussion_r525210168



##########
File path: airflow/providers/cncf/kubernetes/backcompat/pod_runtime_info_env.py
##########
@@ -0,0 +1,43 @@
+# 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"""
+
+
+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
+
+    def to_k8s_client_obj(self):
+        """:return: kubernetes.client.models.V1EnvVar"""

Review comment:
       ```suggestion
       def to_k8s_client_obj(self):
           """Converts to k8s object.
           
           :return: kubernetes.client.models.V1EnvVar
           """
   ```




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to