0
0
Kubernetesdevops~10 mins

Installing Helm in Kubernetes - Interactive Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the command to download the Helm installation script.

Kubernetes
curl -fsSL [1] | bash
Drag options to blanks, or click blank then click option'
Ahttps://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
Bhttps://get.helm.sh/helm-v3.12.0-linux-amd64.tar.gz
Chttps://helm.sh/docs/intro/install/
Dhttps://kubernetes.io/docs/tasks/tools/install-helm/
Attempts:
3 left
💡 Hint
Common Mistakes
Using a URL that points to a tarball instead of the installation script.
Using the Helm documentation page URL instead of the script URL.
2fill in blank
medium

Complete the command to verify the Helm version after installation.

Kubernetes
helm [1]
Drag options to blanks, or click blank then click option'
Aversion
Blist
Cinstall
Dupdate
Attempts:
3 left
💡 Hint
Common Mistakes
Using helm install which installs charts, not shows version.
Using helm list which lists releases, not version.
3fill in blank
hard

Fix the error in the command to add the Bitnami Helm chart repository.

Kubernetes
helm repo [1] bitnami https://charts.bitnami.com/bitnami
Drag options to blanks, or click blank then click option'
Aupdate
Binstall
Cadd
Dlist
Attempts:
3 left
💡 Hint
Common Mistakes
Using helm repo update which refreshes repos but does not add new ones.
Using helm repo install which is not a valid subcommand.
4fill in blank
hard

Fill both blanks to update Helm repositories and then install a chart named 'nginx' from the 'bitnami' repo.

Kubernetes
helm repo [1] && helm [2] nginx bitnami/nginx
Drag options to blanks, or click blank then click option'
Aupdate
Binstall
Cadd
Dlist
Attempts:
3 left
💡 Hint
Common Mistakes
Using helm repo add instead of update for refreshing repos.
Using helm list instead of install to deploy charts.
5fill in blank
hard

Fill all three blanks to initialize Helm with the correct version, add the Bitnami repo, and update repositories.

Kubernetes
curl -fsSL [1] | bash && helm repo [2] bitnami https://charts.bitnami.com/bitnami && helm repo [3]
Drag options to blanks, or click blank then click option'
Ahttps://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
Badd
Cupdate
Dinstall
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong URLs or commands like 'install' instead of 'add' or 'update'.
Skipping the repo update step after adding a new repo.