volumes: - name: storage persistentVolumeClaim: claimName: app-pvc Install NGINX Ingress:
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash Complete Kubernetes Tutorial by School of Devops
kubectl create configmap app-config --from-literal=db_url=postgres://db:5432 # Use in pod env: - name: DB_URL valueFrom: configMapKeyRef: name: app-config key: db_url (base64 encoded): Complete Kubernetes Tutorial by School of Devops
helm create mychart # Edit templates/deployment.yaml, values.yaml helm install myapp ./mychart Metrics Server: Complete Kubernetes Tutorial by School of Devops