Login
Remember
Register
Ask a Question
What is the command to install a Kubernetes Helm chart?
0
votes
asked
Mar 24, 2024
in
Kubernetes K8s
by
rajeshsharma
What is the command to install a Kubernetes Helm chart?
a) helm install [name] [chart]
b) kubectl apply -f helm.yaml
c) helm create [name]
d) helm upgrade [name] [chart]
kubernetes
helm
chart
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 24, 2024
by
rajeshsharma
Answer: a)
Explanation: helm install [name] [chart]. This command installs a Kubernetes Helm chart with the specified name and chart.
...