Which URL format is correct when adding a Helm chart repository?
easy📝 Conceptual Q2 of 15
Kubernetes - Helm Package Manager
Which URL format is correct when adding a Helm chart repository?
Ahttp://charts.example
Bhttps://charts.example.com/
Cfile://charts.example.com/
Dftp://charts.example.com/
Step-by-Step Solution
Solution:
Step 1: Identify supported URL protocols for Helm repos
Helm supports HTTP and HTTPS URLs for chart repositories.
Step 2: Evaluate each option
https://charts.example.com/ uses HTTPS which is correct. FTP and file protocols are not supported by Helm for repos. http://charts.example is incomplete URL.
Final Answer:
https://charts.example.com/ -> Option B
Quick Check:
Valid repo URL = HTTPS [OK]
Quick Trick:Use HTTPS URLs for Helm repos [OK]
Common Mistakes:
Using unsupported protocols like ftp or file
Leaving URLs incomplete
Using local file paths instead of URLs
Master "Helm Package Manager" in Kubernetes
9 interactive learning modes - each teaches the same concept differently