You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
468 B
14 lines
468 B
## INSTALL / BUILD instructions for Apache Airflow Chart
|
|
|
|
# The Assumption here is that you have a running Kubernetes cluster
|
|
# and helm installed & configured to talk with the cluster
|
|
|
|
# Run `helm install` Command
|
|
helm install airflow .
|
|
|
|
# If you want to install in a particular namespace
|
|
## Create that namespace (example 'airflow' here, change it as needed)
|
|
kubectl create namespace airflow
|
|
|
|
## Install the chart in that namespace
|
|
helm install airflow -n airflow .
|
|
|