Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the command to add a Helm chart repository named 'stable'.
Kubernetes
helm repo add stable [1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using a local path instead of a URL.
Using an incorrect URL format.
✗ Incorrect
The correct URL for the stable Helm chart repository is 'https://charts.helm.sh/stable'.
2fill in blank
mediumComplete the command to update the Helm chart repositories after adding new ones.
Kubernetes
helm repo [1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'install' instead of 'update'.
Using 'list' which only shows repositories.
✗ Incorrect
The 'helm repo update' command refreshes the local cache of chart repositories.
3fill in blank
hardFix the error in the command to add a Helm repository with the correct URL.
Kubernetes
helm repo add myrepo [1] Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Omitting the protocol in the URL.
Using unsupported protocols like 'ftp://'.
✗ Incorrect
The URL must include the protocol 'http://' or 'https://'.
4fill in blank
hardFill both blanks to add a Helm repository named 'myrepo' with the URL 'https://charts.myrepo.com' and then update the repositories.
Kubernetes
helm repo add [1] [2] helm repo update
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'stable' instead of 'myrepo' as the repository name.
Using 'http://' instead of 'https://' in the URL.
✗ Incorrect
The repository name is 'myrepo' and the URL is 'https://charts.myrepo.com'.
5fill in blank
hardFill all three blanks to add a Helm repository named 'customrepo' with URL 'https://charts.customrepo.io', update the repositories, and then list all repositories.
Kubernetes
helm repo add [1] [2] helm repo [3]
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'list' instead of 'update' for refreshing repositories.
Using incorrect URLs without protocol.
✗ Incorrect
Add the repo with name 'customrepo' and URL 'https://charts.customrepo.io', then update repos with 'helm repo update'.