CKAD-exercises
CKAD-exercises copied to clipboard
Helm command has mistakes
Helm install command has a mistake
now
helm install -f myvalues.yaml my redis ./redis
correct
helm install -f myvalues.yaml myredis ./redis
now
helm upgrade -f myvalues.yaml -f override.yaml redis ./redis
correct
helm upgrade -f override.yaml redis ./redis
now
helm upgrade -f myvalues.yaml -f override.yaml redis ./redis
correct
helm upgrade -f override.yaml redis ./redis
sorry, I misunderstood "helm upgrade command". now command is correct.
This issuer is resolved by the following PR https://github.com/dgkanatsios/CKAD-exercises/pull/285