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