curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo add superset https://apache.github.io/superset
helm search repo bitnami helm search repo superset
helm repo update superset
helm dep up ./helm/superset
helm upgrade --install --values values.yaml superset superset/superset
helm install --install --values values.yaml superset superset/superset
helm upgrade --install --create-namespace --namespace superset superset superset/superset --version 0.10.10 --values values.yaml --dry-run --debug > dryrun.out
source <(kubectl completion zsh)
kubectl cluster-info
kubectl version --client && kubeadm version
kubectl config set-context --current --namespace=superset
kubectl apply -f
kubectl get namespaces
kubectl get nodes -o wide
kubectl get all
kubectl get pods --all-namespaces
kubectl delete all --all -n superset
kubectl logs superset-postgresql-0 -n superset
kubectl describe pod
kubectl exec -it postgresdb-7b475497d6-tn757 -- psql -h localhost -U superset --password superset -p 5432
kubectl scale deployment superset --replicas=0
kubectl apply -f db-persistent-volume.yaml
kubectl apply -f db-volume-claim.yaml
kubectl apply -f db-configmap.yaml
kubectl apply -f db-deployment.yaml
kubectl apply -f db-service.yaml