You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/02/19 00:45:03 UTC

[GitHub] [airflow] everglory99 commented on issue #14307: KubernetesPodOperator raises exception when pod_template_file contains multiple objects

everglory99 commented on issue #14307:
URL: https://github.com/apache/airflow/issues/14307#issuecomment-781733615


   The YAML file is generated by a helm chart our team developed by running `helm template`. The YAML file looks like
   ```
   ---
   apiVersion: v1
   kind: ConfigMap 
   metadata:
     name: dev-configmap
   
   data:
     SOME_KEY: "SOME_VALUE"
   ---
   apiVersion: v1
   kind: Service
   metadata:
     name: dev-engine
   spec:
     ports:
       - name: http
         port: 80
         protocol: TCP
     selector:
       app.kubernetes.io/name: engine
       app.kubernetes.io/instance: dev
   ---
   SOME MORE OBJECTS...
   ```
   


----------------------------------------------------------------
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:
users@infra.apache.org