yevsh commented on issue #17679:
URL: https://github.com/apache/airflow/issues/17679#issuecomment-901111783


   ```
   helm install airflow-xxx airflow \
      --set webserver.service.type=NodePort \
      --set executor="LocalExecutor" \
      --set workers.persistence.size=1Gi \
      --set logs.persistence.size=1Gi \
      --set workers.persistence.enabled=false \
      --set postgresql.persistence.enabled=false \
      --set dags.persistence.enabled=true \
      --set logs.persistence.enabled=true \
      --set dags.persistence.accessMode=ReadWriteMany \
      --set dags.persistence.storageClassName=airflow-dags-xxx \
      --set logs.persistence.storageClassName=airflow-logs-xxx \
      --set images.airflow.repository=${EXTERNAL_IMAGES}/airflow \
      --set postgresql.image.registry=${EXTERNAL_IMAGES} \
      --set redis.enabled=false \
      --set uid=0 \
      --set gid=0 \
      --namespace xxx
   ```
   
   from values.yaml, 
   
   #User and group of airflow user
   uid: 0
   gid: 0
   
   
   if you need anything specific from values please tell.


-- 
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: [email protected]

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


Reply via email to