Complete the command to create a new Helm chart named myapp.
helm [1] myappThe correct command to create a new Helm chart is helm create followed by the chart name.
Complete the Helm command to package the chart located in the current directory.
helm [1] .The helm package command creates a packaged chart archive from the chart directory.
Fix the error in the Helm install command by completing the missing flag to specify the release name.
helm install [1] ./mychartThe release name is given as a positional argument before the chart path, so you just provide the name directly without a flag.
Fill both blanks to complete the Helm template command that renders templates with a custom values file.
helm template [1] -f [2]
The first argument is the chart directory or name, here 'mychart'. The -f flag specifies the custom values file, here 'myvalues.yaml'.
Fill all three blanks to create a Helm values file snippet that sets the container image repository, tag, and pull policy.
image: repository: [1] tag: [2] pullPolicy: [3]
The repository is the image name, here 'nginx'. The tag is the version, here '1.21.0'. The pull policy controls when Kubernetes pulls the image, here 'IfNotPresent' means only pull if not already present.