Complete the command to install a Helm chart named 'nginx' in the default namespace.
helm [1] nginxThe helm install command is used to install a Helm chart.
Complete the command to install the 'nginx' chart with the release name 'my-nginx'.
helm install [1] nginxThe release name is specified right after helm install and before the chart name.
Fix the error in the command to install the 'nginx' chart in the 'web' namespace.
helm install my-nginx nginx [1] webThe correct flag to specify namespace in Helm install is --namespace.
Fill both blanks to install the 'nginx' chart with release name 'web-nginx' and set the replica count to 3.
helm install [1] nginx [2] replicaCount=3
The release name goes first, then --set is used to override chart values.
Fill all three blanks to install the 'nginx' chart with release name 'web-nginx', in namespace 'production', and set replica count to 5.
helm install [1] nginx [2] production [3] replicaCount=5
The release name is first, then --namespace to specify the namespace, and --set to override values.