Dataops-sre’s Airflow2 public Helm charts repository
To install charts in this repository with command line:
helm repo add dataops-sre-airflow https://dataops-sre.github.io/docker-airflow2/
helm repo update
helm install airflow dataops-sre-airflow/airflow --wait --timeout 300s
with terraform:
resource "helm_release" "aiflow" {
name = "airflow"
repository = "https://dataops-sre.github.io/docker-airflow2/"
chart = "airflow"
namespace = "default"
}