eeluve opened a new issue, #26405:
URL: https://github.com/apache/airflow/issues/26405

   ### Official Helm Chart version
   
   1.6.0 (latest released)
   
   ### Apache Airflow version
   
   2.3.0
   
   ### Kubernetes Version
   
   v1.20.6
   
   ### Helm Chart configuration
   
   - helm repo add apache-airflow https://airflow.apache.org
   - helm repo update
   - helm upgrade -i airflow apache-airflow/airflow -n airflow
                         --set 
images.airflow.repository=$pathToOurGLABprojContReg
                         --set images.airflow.tag=stg
                         --set images.airflow.pullPolicy=Always
                         --set registry.secretName=airflowreg
                         --set nodeSelector."kubernetes\\.io/hostname"=$nodeName
                         --set fernetKey="$sens"
                         --set workers.persistence.size=30Gi
                         --create-namespace
                         --wait=false
                         --kubeconfig stage-config.yaml
   
   also had ::
   --set webserverSecretKey=""
   temporarily removed testing one of hypotheses based on k8s events for a 
namespace
   
   ### Docker Image customisations
   
   FROM apache/airflow
   
   USER root
   
   RUN apt-get update \
       && apt-get install -y --no-install-recommends \
               default-libmysqlclient-dev \
       && apt-get autoremove -yqq --purge \
       && apt-get clean \
       && rm -rf /var/lib/apt/lists/*
   
   USER airflow
   
   RUN pip install --no-cache-dir \
       apache-airflow \
       airflow-clickhouse-plugin \
       apache-airflow-providers-mysql
   
   COPY ./dags ${AIRFLOW_HOME}/dags
   COPY ./plugins ${AIRFLOW_HOME}/plugins
   COPY ./files ${AIRFLOW_HOME}/files
   
   USER airflow
   
   ### What happened
   
   recently deploys began failing ::
   
   NAME                                       READY   STATUS    RESTARTS   AGE
   pod/airflow-postgresql-0                   1/1     Running   0          15m
   pod/airflow-redis-0                        0/1     Pending   0          15m
   pod/airflow-run-airflow-migrations-5j9qc   0/1     Pending   0          15m
   pod/airflow-scheduler-588cbbf87f-j7z52     0/2     Pending   0          15m
   pod/airflow-statsd-58d7f8d864-brpb5        0/1     Pending   0          15m
   pod/airflow-triggerer-6cc749dbb4-q6549     0/1     Pending   0          15m
   pod/airflow-webserver-747bffcccd-lr5bl     0/1     Pending   0          15m
   pod/airflow-worker-0                       0/2     Pending   0          15m
   
   NAME                                  TYPE        CLUSTER-IP      
EXTERNAL-IP   PORT(S)             AGE
   service/airflow-postgresql            ClusterIP   10.233.26.13    <none>     
   5432/TCP            15m
   service/airflow-postgresql-headless   ClusterIP   None            <none>     
   5432/TCP            15m
   service/airflow-redis                 ClusterIP   10.233.51.154   <none>     
   6379/TCP            15m
   service/airflow-statsd                ClusterIP   10.233.11.53    <none>     
   9125/UDP,9102/TCP   15m
   service/airflow-webserver             ClusterIP   10.233.39.52    <none>     
   8080/TCP            15m
   service/airflow-worker                ClusterIP   None            <none>     
   8793/TCP            15m
   
   NAME                                READY   UP-TO-DATE   AVAILABLE   AGE
   deployment.apps/airflow-scheduler   0/1     1            0           15m
   deployment.apps/airflow-statsd      0/1     1            0           15m
   deployment.apps/airflow-triggerer   0/1     1            0           15m
   deployment.apps/airflow-webserver   0/1     1            0           15m
   
   NAME                                           DESIRED   CURRENT   READY   
AGE
   replicaset.apps/airflow-scheduler-588cbbf87f   1         1         0       
15m
   replicaset.apps/airflow-statsd-58d7f8d864      1         1         0       
15m
   replicaset.apps/airflow-triggerer-6cc749dbb4   1         1         0       
15m
   replicaset.apps/airflow-webserver-747bffcccd   1         1         0       
15m
   
   NAME                                  READY   AGE
   statefulset.apps/airflow-postgresql   1/1     15m
   statefulset.apps/airflow-redis        0/1     15m
   statefulset.apps/airflow-worker       0/1     15m
   
   NAME                                       COMPLETIONS   DURATION   AGE
   job.batch/airflow-run-airflow-migrations   0/1           15m        15m
   
   I am not able to check logs for the JOB pod, it returns ::
   
   ### What you think should happen instead
   
   everything gets deployed w/o any errors thrown
   
   ### How to reproduce
   
   based on the Dockerfile & helm upgrade string I provided, probably
   
   ### Anything else
   
   _No response_
   
   ### Are you willing to submit PR?
   
   - [ ] Yes I am willing to submit a PR!
   
   ### Code of Conduct
   
   - [X] I agree to follow this project's [Code of 
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to