Complete the command to download the Helm installation script.
curl -fsSL [1] | bashThe Helm installation script is available at the URL https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3. Using curl -fsSL downloads this script for installation.
Complete the command to verify the Helm version after installation.
helm [1]helm install which installs charts, not shows version.helm list which lists releases, not version.The command helm version shows the installed Helm version to confirm successful installation.
Fix the error in the command to add the Bitnami Helm chart repository.
helm repo [1] bitnami https://charts.bitnami.com/bitnamihelm repo update which refreshes repos but does not add new ones.helm repo install which is not a valid subcommand.The correct command to add a Helm chart repository is helm repo add. This registers the repository URL under the name 'bitnami'.
Fill both blanks to update Helm repositories and then install a chart named 'nginx' from the 'bitnami' repo.
helm repo [1] && helm [2] nginx bitnami/nginx
helm repo add instead of update for refreshing repos.helm list instead of install to deploy charts.First, helm repo update refreshes the local cache of chart repositories. Then, helm install nginx bitnami/nginx installs the nginx chart from the bitnami repository.
Fill all three blanks to initialize Helm with the correct version, add the Bitnami repo, and update repositories.
curl -fsSL [1] | bash && helm repo [2] bitnami https://charts.bitnami.com/bitnami && helm repo [3]
The first blank is the URL to download the Helm installation script. The second blank is the command to add the Bitnami chart repository. The third blank updates the local repository cache.