Complete Kubernetes Tutorial By School Of Devops Guide
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.8.1/deploy/static/provider/cloud/deploy.yaml
volumes: - name: storage persistentVolumeClaim: claimName: app-pvc Install NGINX Ingress: Complete Kubernetes Tutorial by School of Devops
helm repo add bitnami https://charts.bitnami.com/bitnami helm repo update helm search repo nginx helm install my-release bitnami/nginx helm list helm uninstall my-release kubectl apply -f https://raw
kubectl create secret generic db-secret --from-literal=password=supersecret env: - name: DB_PASSWORD valueFrom: secretKeyRef: name: db-secret key: password PersistentVolume (cluster storage): Complete Kubernetes Tutorial by School of Devops