Complete the command to install a Helm chart named 'myapp'.
helm [1] myapp ./mychartThe helm install command is used to install a Helm chart into your Kubernetes cluster.
Complete the command to list all Helm releases in the cluster.
helm [1]The helm list command shows all the releases installed in the Kubernetes cluster.
Fix the error in the command to upgrade a release named 'myapp'.
helm [1] myapp ./mychartThe helm upgrade command updates an existing release with a new chart or configuration.
Fill both blanks to create a Helm chart directory structure with the correct command and chart name.
helm [1] [2]
The helm create command generates a new chart directory named as specified, here 'mychart'.
Fill all four blanks to define a Helm values override file usage in the install command.
helm install myapp ./mychart [1] [2] [3] [4]
Use --values followed by a file name to override default values, and --set to override specific values inline.