Skip to content

Commit c086a29

Browse files
authored
Release 1.4.0 (#96)
* Release 1.4.0 * Update docs for 1.4.0 * Update cluster service container image version
1 parent c5c0cc5 commit c086a29

10 files changed

+41
-37
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Changelog
22

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

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

7-
811
### 1.3.0
912

1013
An automatically generated list of changes can be found on Github at: [1.3.0 Release](https://github.com/nginxinc/nginx-ingress-helm-operator/releases/tag/v1.3.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.3.1
6+
VERSION ?= 1.4.0
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: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,32 @@ Up until version 0.5.1, this Operator was Go based. Version 1.0.0 marks an incom
1313
The following table shows the relation between the versions of the two projects:
1414

1515
| NGINX Ingress Controller | NGINX Ingress Operator |
16-
| --- | --- |
17-
| 3.0.x | 1.3.1 |
18-
| 2.4.x | 1.2.1 |
19-
| 2.3.x | 1.1.0 |
20-
| 2.2.x | 1.0.0 |
21-
| 2.1.x | 0.5.1 |
22-
| 2.0.x | 0.4.0 |
23-
| 1.12.x | 0.3.0 |
24-
| 1.11.x | 0.2.0 |
25-
| 1.10.x | 0.1.0 |
26-
| 1.9.x | 0.0.7 |
27-
| 1.8.x | 0.0.6 |
28-
| 1.7.x | 0.0.4 |
29-
| < 1.7.0 | N/A |
16+
|--------------------------|------------------------|
17+
| 3.1.x | 1.4.0 |
18+
| 3.0.x | 1.3.1 |
19+
| 2.4.x | 1.2.1 |
20+
| 2.3.x | 1.1.0 |
21+
| 2.2.x | 1.0.0 |
22+
| 2.1.x | 0.5.1 |
23+
| 2.0.x | 0.4.0 |
24+
| 1.12.x | 0.3.0 |
25+
| 1.11.x | 0.2.0 |
26+
| 1.10.x | 0.1.0 |
27+
| 1.9.x | 0.0.7 |
28+
| 1.8.x | 0.0.6 |
29+
| 1.7.x | 0.0.4 |
30+
| < 1.7.0 | N/A |
3031

3132
Note: The NGINX Ingress Operator works only for NGINX Ingress Controller versions after `1.7.0`.
3233

3334
## Getting Started
3435

3536
1. Install the NGINX Ingress Operator. See [docs](./docs/installation.md).
3637
<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)
37-
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.3.1/examples/default-server-secret.yaml)
38+
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.4.0/examples/default-server-secret.yaml)
3839
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:
3940
```shell
40-
kubectl apply -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.3.1/resources/scc.yaml
41+
kubectl apply -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.4.0/resources/scc.yaml
4142
```
4243
4. Deploy a new NGINX Ingress Controller using the [NginxIngress](./config/samples/charts_v1alpha1_nginxingress.yaml) Custom Resource:
4344
* Use the name of the default server secret created above for `controller.defaultTLS.secret` field (needs to be in the form `namespace/name`)
@@ -63,7 +64,7 @@ See [upgrade docs](./docs/upgrades.md)
6364
## NGINX Ingress Operator Releases
6465
We publish NGINX Ingress Operator releases on GitHub. See our [releases page](https://github.com/nginxinc/nginx-ingress-helm-operator/releases).
6566

66-
The latest stable release is [1.3.1](https://github.com/nginxinc/nginx-ingress-helm-operator/releases/tag/v1.3.1). For production use, we recommend that you choose the latest stable release.
67+
The latest stable release is [1.4.0](https://github.com/nginxinc/nginx-ingress-helm-operator/releases/tag/v1.4.0). For production use, we recommend that you choose the latest stable release.
6768

6869
## Development
6970

bundle.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77
LABEL operators.operatorframework.io.bundle.package.v1=nginx-ingress-operator
88
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
99
LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha
10-
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.27.0
10+
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.28.0
1111
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1212
LABEL operators.operatorframework.io.metrics.project_layout=helm.sdk.operatorframework.io/v1
1313

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,12 @@ metadata:
176176
capabilities: Basic Install
177177
categories: Monitoring, Networking
178178
certified: "true"
179-
containerImage: nginx/nginx-ingress-operator:1.3.1
180-
createdAt: "2023-03-28T10:43:20Z"
179+
containerImage: nginx/nginx-ingress-operator:1.4.0
180+
createdAt: "2023-04-06T12:51:57Z"
181181
description: The NGINX Ingress Operator is a Kubernetes/OpenShift component which
182182
deploys and manages one or more NGINX/NGINX Plus Ingress Controllers
183183
operatorframework.io/suggested-namespace: nginx-ingress
184-
operators.operatorframework.io/builder: operator-sdk-v1.27.0
184+
operators.operatorframework.io/builder: operator-sdk-v1.28.0
185185
operators.operatorframework.io/project_layout: helm.sdk.operatorframework.io/v1
186186
repository: https://github.com/nginxinc/nginx-ingress-helm-operator
187187
support: NGINX Inc.
@@ -190,7 +190,7 @@ metadata:
190190
operatorframework.io/arch.arm64: supported
191191
operatorframework.io/arch.ppc64le: supported
192192
operatorframework.io/arch.s390x: supported
193-
name: nginx-ingress-operator.v1.3.1
193+
name: nginx-ingress-operator.v1.4.0
194194
namespace: placeholder
195195
spec:
196196
apiservicedefinitions: {}
@@ -371,7 +371,7 @@ spec:
371371
- --upstream=http://127.0.0.1:8080/
372372
- --logtostderr=true
373373
- --v=0
374-
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.13.0
374+
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.13.1
375375
name: kube-rbac-proxy
376376
ports:
377377
- containerPort: 8443
@@ -394,7 +394,7 @@ spec:
394394
- --metrics-bind-address=127.0.0.1:8080
395395
- --leader-elect
396396
- --leader-election-id=nginx-ingress-operator
397-
image: nginx/nginx-ingress-operator:1.3.1
397+
image: nginx/nginx-ingress-operator:1.4.0
398398
livenessProbe:
399399
httpGet:
400400
path: /healthz
@@ -485,4 +485,4 @@ spec:
485485
minKubeVersion: 1.21.0
486486
provider:
487487
name: NGINX Inc
488-
version: 1.3.1
488+
version: 1.4.0

bundle/metadata/annotations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ annotations:
66
operators.operatorframework.io.bundle.package.v1: nginx-ingress-operator
77
operators.operatorframework.io.bundle.channels.v1: alpha
88
operators.operatorframework.io.bundle.channel.default.v1: alpha
9-
operators.operatorframework.io.metrics.builder: operator-sdk-v1.27.0
9+
operators.operatorframework.io.metrics.builder: operator-sdk-v1.28.0
1010
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
1111
operators.operatorframework.io.metrics.project_layout: helm.sdk.operatorframework.io/v1
1212

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.3.1
8+
newTag: 1.4.0

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ metadata:
176176
capabilities: Basic Install
177177
categories: Monitoring, Networking
178178
certified: "true"
179-
containerImage: nginx/nginx-ingress-operator:1.3.1
179+
containerImage: nginx/nginx-ingress-operator:1.4.0
180180
createdAt: placeholder
181181
description: The NGINX Ingress Operator is a Kubernetes/OpenShift component which
182182
deploys and manages one or more NGINX/NGINX Plus Ingress Controllers
@@ -345,7 +345,7 @@ spec:
345345
- --metrics-bind-address=127.0.0.1:8080
346346
- --leader-elect
347347
- --leader-election-id=nginx-ingress-operator
348-
image: nginx/nginx-ingress-operator:1.3.1
348+
image: nginx/nginx-ingress-operator:1.4.0
349349
livenessProbe:
350350
httpGet:
351351
path: /healthz
@@ -451,4 +451,4 @@ spec:
451451
minKubeVersion: 1.21.0
452452
provider:
453453
name: NGINX Inc
454-
version: 1.3.1
454+
version: 1.4.0

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.3.1
11+
git checkout v1.4.0
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.3.1
16+
make deploy IMG=nginx/nginx-ingress-operator:1.4.0
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.3.1
21+
make deploy IMG=nginx/nginx-ingress-operator:1.4.0
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 apply -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.3.1/resources/scc.yaml`
36+
`kubectl apply -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.4.0/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 apply -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.3.1/resources/scc.yaml`
24+
`kubectl apply -f https://raw.githubusercontent.com/nginxinc/nginx-ingress-helm-operator/v1.4.0/resources/scc.yaml`
2525

2626
You can now deploy the NGINX Ingress Controller instances.

0 commit comments

Comments
 (0)