INSTALL 568 B

1234567891011121314151617
  1. ## INSTALL / BUILD instructions for Apache Airflow Chart
  2. # The Assumption here is that you have a running Kubernetes cluster
  3. # and helm installed & configured to talk with the cluster
  4. # Run `helm dependency update` Command to install dependencies (postgresql)
  5. helm dependency update
  6. # Run `helm install` Command
  7. helm install airflow .
  8. # If you want to install in a particular namespace
  9. ## Create that namespace (example 'airflow' here, change it as needed)
  10. kubectl create namespace airflow
  11. ## Install the chart in that namespace
  12. helm install airflow -n airflow .