helm airflow - choisungwook/portfolio GitHub Wiki

๊ฐœ์š”

  • airflow helm ์„ค์น˜

helm chart githbub: https://github.com/apache/airflow/tree/main/chart


helm repo add

kubectl create namespace airflow
helm repo add apache-airflow https://airflow.apache.org
helm repo update

helm override_values.yaml ํŒŒ์ผ ์ƒ์„ฑ

  • webserver nodeํฌํŠธ๋กœ ๋ณ€๊ฒฝ
  • ์ƒ˜ํ”Œ import
  • ๊ด€๋ฆฌ์ž ๊ณ„์ •๊ณผ ๋น„๋ฐ€๋ฒˆํ˜ธ ์„ค์ •
webserver:
  resources:
    limits:
      cpu: 4
      memory: 4Gi
    requests:
      cpu: 4
      memory: 4Gi
  service:
    type: NodePort
extraEnv: |
  - name: AIRFLOW__CORE__LOAD_EXAMPLES
    value: 'True'
username: admin
password: admin123

helm ์„ค์น˜

helm install -n airflow -f override_values.yaml airflow apache-airflow/airflow 

์›น ๋Œ€์‹œ๋ณด๋“œ ์ ‘์†

  • ์ƒ˜ํ”Œ์ด ์ž„ํฌํŠธ๋˜์–ด์•ผ ์ •์ƒ

์ฐธ๊ณ ์ž๋ฃŒ

โš ๏ธ **GitHub.com Fallback** โš ๏ธ