0 votes
in Kubernetes K8s by
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]

1 Answer

0 votes
by
Answer: a)

Explanation: helm install [name] [chart]. This command installs a Kubernetes Helm chart with the specified name and chart.
...