0 votes
in Kubernetes K8s by
Scenario Question: You have a container that keeps crashing because its "command" section has a misspelling How do you fix this?

1 Answer

0 votes
by
1 generate the yaml file,

  2 fix it,

  3 kill the pod,

  4 re-run with the correct yaml file (kubectl apply -f)
...