Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 486 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 486 Bytes

Helm-charts

Dataops-sre's public Helm charts repository

TL;TR

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"
}