Skip to content

Commit 9d79744

Browse files
authored
Release 1.2.1 (#49)
1 parent b9fe578 commit 9d79744

File tree

8 files changed

+22
-18
lines changed

8 files changed

+22
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### 1.2.1
4+
5+
An automatically generated list of changes can be found on Github at: [1.2.1 Release](https://github.com/nginxinc/nginx-ingress-helm-operator/releases/tag/v1.2.1)
6+
37
### 1.2.0
48

59
An automatically generated list of changes can be found on Github at: [1.2.0 Release](https://github.com/nginxinc/nginx-ingress-helm-operator/releases/tag/v1.2.0)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 1.2.0
6+
VERSION ?= 1.2.1
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The following table shows the relation between the versions of the two projects:
1414

1515
| NGINX Ingress Controller | NGINX Ingress Operator |
1616
| --- | --- |
17-
| 2.4.x | 1.2.0 |
17+
| 2.4.x | 1.2.1 |
1818
| 2.3.x | 1.1.0 |
1919
| 2.2.x | 1.0.0 |
2020
| 2.1.x | 0.5.1 |
@@ -33,10 +33,10 @@ Note: The NGINX Ingress Operator works only for NGINX Ingress Controller version
3333

3434
1. Install the NGINX Ingress Operator. See [docs](./docs/installation.md).
3535
<br> NOTE: To use TransportServers as part of your NGINX Ingress Controller configuration, a GlobalConfiguration resource must be created *before* starting the Operator - [see the notes](./examples/deployment-oss-min/README.md#TransportServers)
36-
2. Create a default server secret on the cluster - an example yaml for this can be found in the [examples folder](https://github.com/nginxinc/nginx-ingress-helm-operator/blob/v1.2.0/examples/default-server-secret.yaml)
36+
2. Create a default server secret on the cluster - an example yaml for this can be found in the [examples folder](https://github.com/nginxinc/nginx-ingress-helm-operator/blob/v1.2.1/examples/default-server-secret.yaml)
3737
3. (If using OpenShift) Create the scc resource on the cluster by applying the scc.yaml file found in the `resources` folder of this repo:
3838
```shell
39-
kubectl apply -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.2.0/resources/scc.yaml
39+
kubectl apply -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.2.1/resources/scc.yaml
4040
```
4141
4. Deploy a new NGINX Ingress Controller using the [NginxIngress](./config/samples/charts_v1alpha1_nginxingress.yaml) Custom Resource:
4242
* Use the name of the default server secret created above for `controller.defaultTLS.secret` field (needs to be in the form `namespace/name`)
@@ -62,7 +62,7 @@ See [upgrade docs](./docs/upgrades.md)
6262
## NGINX Ingress Operator Releases
6363
We publish NGINX Ingress Operator releases on GitHub. See our [releases page](https://github.com/nginxinc/nginx-ingress-helm-operator/releases).
6464

65-
The latest stable release is [1.2.0](https://github.com/nginxinc/nginx-ingress-helm-operator/releases/tag/v1.2.0). For production use, we recommend that you choose the latest stable release.
65+
The latest stable release is [1.2.1](https://github.com/nginxinc/nginx-ingress-helm-operator/releases/tag/v1.2.1). For production use, we recommend that you choose the latest stable release.
6666

6767
## Development
6868

bundle/manifests/nginx-ingress-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ metadata:
145145
capabilities: Basic Install
146146
categories: Monitoring, Networking
147147
certified: "true"
148-
containerImage: nginx/nginx-ingress-operator:1.2.0
148+
containerImage: nginx/nginx-ingress-operator:1.2.1
149149
createdAt: placeholder
150150
description: The NGINX Ingress Operator is a Kubernetes/OpenShift component which
151151
deploys and manages one or more NGINX/NGINX Plus Ingress Controllers
@@ -159,7 +159,7 @@ metadata:
159159
operatorframework.io/arch.arm64: supported
160160
operatorframework.io/arch.ppc64le: supported
161161
operatorframework.io/arch.s390x: supported
162-
name: nginx-ingress-operator.v1.2.0
162+
name: nginx-ingress-operator.v1.2.1
163163
namespace: placeholder
164164
spec:
165165
apiservicedefinitions: {}
@@ -363,7 +363,7 @@ spec:
363363
- --metrics-bind-address=127.0.0.1:8080
364364
- --leader-elect
365365
- --leader-election-id=nginx-ingress-operator
366-
image: nginx/nginx-ingress-operator:1.2.0
366+
image: nginx/nginx-ingress-operator:1.2.1
367367
livenessProbe:
368368
httpGet:
369369
path: /healthz
@@ -454,4 +454,4 @@ spec:
454454
minKubeVersion: 1.19.0
455455
provider:
456456
name: NGINX Inc
457-
version: 1.2.0
457+
version: 1.2.1

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ kind: Kustomization
55
images:
66
- name: controller
77
newName: nginx/nginx-ingress-operator
8-
newTag: 1.2.0
8+
newTag: 1.2.1

config/manifests/bases/nginx-ingress-operator.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ metadata:
136136
capabilities: Basic Install
137137
categories: Monitoring, Networking
138138
certified: "true"
139-
containerImage: nginx/nginx-ingress-operator:1.2.0
139+
containerImage: nginx/nginx-ingress-operator:1.2.1
140140
createdAt: placeholder
141141
description: The NGINX Ingress Operator is a Kubernetes/OpenShift component which
142142
deploys and manages one or more NGINX/NGINX Plus Ingress Controllers
@@ -305,7 +305,7 @@ spec:
305305
- --metrics-bind-address=127.0.0.1:8080
306306
- --leader-elect
307307
- --leader-election-id=nginx-ingress-operator
308-
image: nginx/nginx-ingress-operator:1.2.0
308+
image: nginx/nginx-ingress-operator:1.2.1
309309
livenessProbe:
310310
httpGet:
311311
path: /healthz
@@ -411,4 +411,4 @@ spec:
411411
minKubeVersion: 1.19.0
412412
provider:
413413
name: NGINX Inc
414-
version: 1.2.0
414+
version: 1.2.1

docs/manual-installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ This will deploy the operator in the `nginx-ingress-operator-system` namespace.
88
```
99
git clone https://github.com/nginxinc/nginx-ingress-helm-operator/
1010
cd nginx-ingress-helm-operator/
11-
git checkout v1.2.0
11+
git checkout v1.2.1
1212
```
1313
1414
2. `OpenShift` To deploy the Operator and associated resources to an OpenShift environment, run:
1515
```
16-
make deploy IMG=nginx/nginx-ingress-operator:1.2.0
16+
make deploy IMG=nginx/nginx-ingress-operator:1.2.1
1717
```
1818
1919
3. Alternatively, to deploy the Operator and associated resources to all other environments:
2020
```
21-
make deploy IMG=nginx/nginx-ingress-operator:1.2.0
21+
make deploy IMG=nginx/nginx-ingress-operator:1.2.1
2222
```
2323
2424
2. Check that the Operator is running:
@@ -33,4 +33,4 @@ This will deploy the operator in the `nginx-ingress-operator-system` namespace.
3333
3434
In order to deploy NGINX Ingress Controller instances into OpenShift environments, a new SCC is required to be created on the cluster which will be used to bind the specific required capabilities to the NGINX Ingress service account(s). To do so, please run the following command (assuming you are logged in with administrator access to the cluster):
3535
36-
`kubectl -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.2.0/resources/scc.yaml`
36+
`kubectl -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.2.1/resources/scc.yaml`

docs/openshift-installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ Additional steps:
2121

2222
In order to deploy NGINX Ingress Controller instances into OpenShift environments, a new SCC is required to be created on the cluster which will be used to bind the specific required capabilities to the NGINX Ingress service account(s). To do so, please run the following command (assuming you are logged in with administrator access to the cluster):
2323

24-
`kubectl -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.2.0/resources/scc.yaml`
24+
`kubectl -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.2.1/resources/scc.yaml`
2525

2626
You can now deploy the NGINX Ingress Controller instances.

0 commit comments

Comments
 (0)