Running Airflow with Kubernetes on Kubernetes(Minikube)
helm repo add apache-airflow https://airflow.apache.org
helm repo add spark-operator https://googlecloudplatform.github.io/spark-on-k8s-operator
minikube start --cpus 7 --memory 10000 --kubernetes-version=v1.22.0
kubectl label nodes minikube nodePool=cluster
kubectl create clusterrolebinding permissive-binding --clusterrole=cluster-admin --user=admin --user=kubelet --group=system:serviceaccounts
helm install my-release spark-operator/spark-operator --version 1.1.5
kubectl create ns spark-jobs --dry-run=client -o yaml | kubectl apply -f -
helm install airflow apache-airflow/airflow --namespace spark-jobs --timeout 600s