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
title: Using the NGINX IC Plus JWT token in a Docker Config Secret
3
-
description: "This document explains how to use the NGINX Plus Ingress Controller image from the F5 Docker registry in your Kubernetes cluster by using your NGINX Ingress Controller subscription JWT token."
2
+
title: Using NGINX Ingress Controller Plus JWT token in a Docker Config Secret
3
+
description: "This document explains how to use the NGINX Plus Ingress Controller image from the F5 Docker registry in your Kubernetes cluster by using an NGINX Ingress Controller subscription JWT token."
4
4
weight: 1600
5
5
doctypes: [""]
6
6
toc: true
7
-
docs: "DOCS-608"
8
7
---
9
8
10
-
This document explains how to use the NGINX Plus Ingress Controller image from the F5 Docker registry in your Kubernetes cluster by using your NGINX Ingress Controller subscription JWT token. **Please note that an NGINX Plus subscription certificate and key will not work with the F5 Docker registry.** You can also get the image using alternative methods:
9
+
## Overview
11
10
12
-
* You can use Docker to pull an Ingress Controller image with NGINX Plus and push it to your private registry by following the [Pulling the Ingress Controller Image]({{< relref "/installation/pulling-ingress-controller-image.md" >}}) documentation.
13
-
* Please see the [information on how to build an Ingress Controller image]({{< relref "/installation/building-ingress-controller-image.md" >}}) using the source code from this repository and your NGINX Plus subscription certificate and key.
14
-
* Note that for NGINX Ingress Controller based on NGINX OSS, we provide the image through [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/).
11
+
This document explains how to pull the NGINX Plus Ingress Controller image from the F5 Docker registry into your Kubernetes cluster using your JWT token.
15
12
16
-
## Prerequisites
13
+
{{<note>}}
14
+
An NGINX Plus subscription certificate and key will not work with the F5 Docker registry.
15
+
For NGINX Ingress Controller, you must have the NGINX Ingress Controller subscription -- download the NGINX Plus Ingress Controller (per instance) JWT access token from [MyF5](https://my.f5.com).
16
+
To list the available image tags using the Docker registry API, you will also need to download the NGINX Plus Ingress Controller (per instance) certificate (`nginx-repo.crt`) and the key (`nginx-repo.key`) from [MyF5](https://my.f5.com).
17
+
{{</note>}}
17
18
18
-
* For NGINX Ingress Controller, you must have the NGINX Ingress Controller subscription -- download the NGINX Plus Ingress Controller (per instance) JWT access token from [MyF5](https://my.f5.com).
19
-
* To list the available image tags using the Docker registry API, you will also need to download the NGINX Plus Ingress Controller (per instance) certificate (`nginx-repo.crt`) and the key (`nginx-repo.key`) from [MyF5](https://my.f5.com).
19
+
You can also get the image using alternative methods:
20
+
21
+
* You can use Docker to pull an NGINX Ingress Controller image with NGINX Plus and push it to your private registry by following the ["Pulling the Ingress Controller Image"](https://docs.nginx.com/nginx-ingress-controller/installation/pulling-ingress-controller-image/) documentation.
22
+
* You can also build an NGINX Ingress Controller image by following the ["Information on how to build an Ingress Controller image"](https://docs.nginx.com/nginx-ingress-controller/installation/building-ingress-controller-image/) documentation.
23
+
24
+
If you would like an NGINX Ingress Controller image using NGINX open source, we provide the image through [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/).
25
+
26
+
## Before You Begin
27
+
28
+
You will need the following information from [MyF5](https://my.f5.com) for these steps:
29
+
30
+
* A JWT Access Token (Per instance) for NGINX Ingress Controller from an active NGINX Ingress Controller subscription.
31
+
* The certificate (`nginx-repo.crt`) and key (`nginx-repo.key`) for each NGINX Ingress Controller instance, used to list the available image tags from the Docker registry API.
32
+
33
+
## Prepare NGINX Ingress Controller
34
+
35
+
1. Choose your desired [NGINX Ingress Controller Image](https://docs.nginx.com/nginx-ingress-controller/technical-specifications/#images-with-nginx-plus).
36
+
1. Log into the [MyF5 Portal](https://myf5.com/), navigate to your subscription details, and download the relevant .cert, .key and .JWT files.
37
+
1. Create a Kubernetes secret using the JWT token. You should use `cat` to view the contents of the JWT token and store the output for use in later steps.
38
+
1. Ensure there are no additional characters or extra whiespace that might have been accidently added. This will break authorization and prevent the NGINX Ingress Controller image from being downloaded.
39
+
1. Modify your deployment (manifest or helm) to use the Kubernetes secret created in step three.
40
+
1. Deploy NGINX Ingress Controller into your Kubernetes cluster and verify successful installation.
20
41
21
42
## Using the JWT token in a Docker Config Secret
22
43
23
-
1. Create a `docker-registry` secret on the cluster using the JWT token as the username and `none` for password (password is unused). The name of the docker server is `private-registry.nginx.com`. Optionally namespace the secret.
44
+
1. Create a kubernetes `docker-registry` secret type on the cluster, using the JWT token as the username and `none` for password (Password is unused). The name of the docker server is `private-registry.nginx.com`.
It is important that the `--docker-username=<JWT Token>` contains the contents of the token and is not pointing to the token itself. Ensure that when you copy the contents of the JWT token, there are no additional characters or extra whitepaces. This can invalidate the token and cause 401 errors when trying to authenticate to the registry.
51
+
52
+
53
+
1. Confirm the details of the created secret by running:
1. You can now use the newly created Kubernetes secret in `helm` and `manifest` deployments.
61
+
62
+
## Manifest Deployment
63
+
64
+
The page ["Installation with Manifests"](https://docs.nginx.com/nginx-ingress-controller/installation/installation-with-manifests/) explains how to install NGINX Ingress Controller using manifests. The following snippet is an example of a deployment:
2. Confirm the details of the created secret by running:
81
+
The `imagePullSecrets` and `containers.image` lines represent the Kubernetes secret, as well as the registry and version of the NGINX Ingress Controller we are going to deploy.
82
+
83
+
## Helm Deployment
84
+
85
+
If you are using `helm` for deployment, there are two main methods: using *sources* or *charts*.
86
+
87
+
### Helm Source
88
+
89
+
The [Helm installation page for NGINX Ingess Controller](https://docs.nginx.com/nginx-ingress-controller/installation/installation-with-helm/#managing-the-chart-via-sources) has a section describing how to use sources: these are the unique steps for Docker secrets using JWT tokens.
90
+
91
+
1. Clone the NGINX [`kubernetes-ingress` repository](https://github.com/nginxinc/kubernetes-ingress).
92
+
1. Navigate to the `deployments/helm-chart` folder of your local clone.
93
+
1. Open the `values.yaml` file in an editor.
94
+
95
+
You must change a few lines NGINX Ingress Controller with NGINX Plus to be deployed.
30
96
31
-
```console
32
-
kubectl get secret regcred --output=yaml
97
+
1. Change the `nginxplus` argument to `true`.
98
+
1. Change the `repository` argument to the NGINX Ingress Controller image you intend to use.
99
+
1. Add an argument to `imagePullSecretName` to allow Docker to pull the image from the private registry.
100
+
101
+
The following codeblock shows snippets of the parameters you will need to change, and an example of their contents:
102
+
103
+
```yaml
104
+
## Deploys the Ingress Controller for NGINX Plus
105
+
nginxplus: true
106
+
## Truncated fields
107
+
## ...
108
+
## ...
109
+
image:
110
+
## The image repository for the desired NGINX Ingress Controller image
## The annotations of the service account of the Ingress Controller pods.
118
+
annotations: {}
119
+
120
+
## Truncated fields
121
+
## ...
122
+
## ...
123
+
124
+
## The name of the secret containing docker registry credentials.
125
+
## Secret must exist in the same namespace as the helm release.
126
+
imagePullSecretName: regcred
33
127
```
34
128
35
-
3. You can now add this secret to a deployment spec or to a service account to apply to all deployments for a given SA spec. See the [Create a Pod that uses your Secret](https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/#create-a-pod-that-uses-your-secret) and [Add ImagePullSecrets to a service account](https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/#add-imagepullsecrets-to-a-service-account) documentation for more details.
129
+
With `values.yaml` modified, you can now use Helm to install NGINX Ingress Controller, such as in the following example:
36
130
37
-
4. Update the deployment spec with the chosen image path. Choose the image from the [available images]({{< relref "/technical-specifications.md#images-with-nginx-plus" >}}).
The above command will install NGINX Ingress Controller in the `nginx-ingress` namespace.
136
+
137
+
If the namespace does not exist, `--create-namespace` will create it. Using `-f values.yaml` tells `helm` to use the `values.yaml` file that you modified earlier with the settings you want to apply for your NGINX Ingress Controller deployment.
38
138
39
-
5. You can use the certificate and key from the MyF5 portal and the Docker registry API to list the available image tags for the repositories, e.g.:
40
139
41
-
```json
140
+
### Helm Chart
141
+
142
+
If you want to install NGINX Ingress Controller using the charts method, the following is an example of using the command line to pass the required arguments using the `set` parameter.
0 commit comments