Complete the code to install a Helm chart named 'myapp'.
helm [1] install myapp ./mychartThe install command is used to deploy a Helm chart to Kubernetes.
Complete the code to upgrade an existing Helm release named 'myapp'.
helm [1] upgrade myapp ./mychartThe upgrade command updates an existing Helm release with new chart changes.
Fix the error in the Helm command to list all releases.
helm [1] --all-namespacesThe list command shows all Helm releases, and --all-namespaces includes all namespaces.
Fill both blanks to create a Helm values override file and apply it during install.
helm install myapp ./mychart -f [1] --set [2]
The -f flag loads a values file like custom-values.yaml. The --set flag overrides specific values like replicaCount=3.
Fill all three blanks to define a Helm template snippet that creates a ConfigMap with a key and value.
apiVersion: v1 kind: ConfigMap metadata: name: [1] data: [2]: [3]
The ConfigMap name is my-config. The data key is configKey with value "configValue" (quotes needed for string).