Skip to content

fix: Update deploy-using-helm.md nms => nim #687

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions content/nim/deploy/kubernetes/deploy-using-helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,23 +61,23 @@ Make sure there are no extra characters or spaces when copying the JWT token. Th
### Kubernetes

```shell
kubectl create namespace nms
kubectl create namespace nim
kubectl create secret docker-registry regcred \
--docker-server=private-registry.nginx.com \
--docker-username=<NGINX JWT Token> \
--docker-password=none \
-n nms
-n nim
```

### OpenShift

```shell
oc new-project nms && \
oc new-project nim && \
oc create secret docker-registry regcred \
--docker-server=private-registry.nginx.com \
--docker-username=<NGINX JWT Token> \
--docker-password=none \
-n nms
-n nim
```

{{< call-out "note" "Note" >}}
Expand All @@ -91,13 +91,13 @@ As a best practice, you can delete the JWT token and clear your shell history af
- Kubernetes

```shell
kubectl get secret regcred --output=yaml -n nms
kubectl get secret regcred --output=yaml -n nim
```

- OpenShift

```shell
oc get secret regcred --output=yaml -n nms
oc get secret regcred --output=yaml -n nim
```

You can now use this secret for Helm deployments and point the chart to the private registry.
Expand Down
Loading