Apache Airflow Install
Apache Airflow Install
md 2024-01-15
Update configuration
Open the values.yaml file and make the necessary changes to the configuration.
Here are our configuration updates:
images:
airflow:
repository: our_own_apache_airflow
tag: "1.0"
# Specifying digest takes precedence over tag.
digest: ~
pullPolicy: IfNotPresent
#Dockerfile
FROM apache/airflow:2.6.2
1/2
apache_airflow_install.md 2024-01-15
COPY requirements.txt /
apache-airflow-providers-cncf-kubernetes
apache-airflow-providers-apache-spark
It should be that the Docker image exists in the cluster because the image was
created on the local machine.
User: admin
Password: admin
Now you should see Airflow webserver UI.
2/2