Skip to content

include/airflow-ocp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 

Repository files navigation

Deploy Airflow on OpenShift

Prepare namespace

oc new-project airflow
oc new-app -e POSTGRESQL_ADMIN_PASSWORD=airflow --name airflow-psql postgresql:13-el9
oc new-app -e REDIS_PASSWORD=airflow --name airflow-redis redis:6-el9

Deploy Airflow

helm repo add apache-airflow https://airflow.apache.org
helm upgrade --install airflow apache-airflow/airflow --namespace airflow --values values.yml

Expose Airflow

oc expose svc/airflow-webserver
oc patch route airflow-webserver --patch '{"spec":{"tls":{"termination":"edge","insecureEdgeTerminationPolicy":"Redirect"}}}'

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors