Complete the command to upgrade a Helm release named 'myapp' with the chart located in './chart'.
helm upgrade myapp [1]The helm upgrade command requires the release name followed by the path to the chart directory or chart name. Here, './chart' specifies the local chart directory.
Complete the command to rollback the Helm release 'myapp' to revision 2.
helm rollback myapp [1]The helm rollback command requires the release name and the revision number to rollback to. Here, revision 2 is specified.
Fix the error in the command to upgrade 'myapp' with the chart './chart' and set the image tag to 'v2'.
helm upgrade myapp [1] --set image.tag=v2The helm upgrade command requires the release name followed by the path to the chart directory or chart name. Here, './chart' specifies the local chart directory and --set image.tag=v2 overrides the tag.
Fill both blanks to upgrade 'myapp' with the chart './chart' and set the replica count to 3.
helm upgrade myapp [1] --set [2]=3
The first blank is the chart path './chart'. The second blank is the correct Helm value key 'replicaCount' to set the number of replicas.
Fill all three blanks to rollback 'myapp' to revision 1 and verify the status.
helm rollback [1] [2] && helm status [3]
The rollback command needs the release name 'myapp' and the revision number '1'. The status command should check the same release 'myapp'.