You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add more detail to helm install commands (nginx#1299)
Problem: Some environments may not want to have a Service installed by default. Our instructions for installing via helm are not clear about this.
Solution: Update helm installation docs to be clear about how to alter the installation commands. Also cleaned up the commands/docs a bit.
This will install the latest stable release. To install the latest version from the `main` branch, specify the
77
-
`--version 0.0.0-edge` flag when installing.
75
+
`ngf` is the name of the release, and can be changed to any name you want. This name is added as a prefix to the Deployment name.
76
+
77
+
If the namespace already exists, you can omit the optional `--create-namespace` flag. If you want the latest version from the `main` branch, add `--version 0.0.0-edge` to your install command.
78
+
79
+
To wait for the Deployment to be ready, you can either add the `--wait` flag to the `helm install` command, or run
Change `<my-release>` to the name you want for your release. If the namespace already exists, you can omit the optional `--create-namespace` flag. If you want the latest version from the **main** branch, add `--version 0.0.0-edge` to your install command.
33
+
`ngf` is the name of the release, and can be changed to any name you want. This name is added as a prefix to the Deployment name.
34
+
35
+
If the namespace already exists, you can omit the optional `--create-namespace` flag. If you want the latest version from the **main** branch, add `--version 0.0.0-edge` to your install command.
36
+
37
+
To wait for the Deployment to be ready, you can either add the `--wait` flag to the `helm install` command, or run the following after installing:
0 commit comments