Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.

Commit d499918

Browse files
committed
Release 0.4.0 (#159)
1 parent 03c6609 commit d499918

10 files changed

+20
-14
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

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

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

Makefile

+1-1
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 ?= 0.3.0
6+
VERSION ?= 0.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 = "preview,fast,stable")

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ The following table shows the relation between the versions of the two projects:
1212

1313
| NGINX Ingress Controller | NGINX Ingress Operator |
1414
| --- | --- |
15+
| 2.0.x | 0.4.0 |
1516
| 1.12.x | 0.3.0 |
1617
| 1.11.x | 0.2.0 |
1718
| 1.10.x | 0.1.0 |
@@ -37,7 +38,7 @@ See [upgrade docs](./docs/upgrades)
3738
## NGINX Ingress Operator Releases
3839
We publish NGINX Ingress Operator releases on GitHub. See our [releases page](https://github.com/nginxinc/nginx-ingress-operator/releases).
3940

40-
The latest stable release is [0.3.0](https://github.com/nginxinc/nginx-ingress-operator/releases/tag/v0.3.0). For production use, we recommend that you choose the latest stable release.
41+
The latest stable release is [0.4.0](https://github.com/nginxinc/nginx-ingress-operator/releases/tag/v0.4.0). For production use, we recommend that you choose the latest stable release.
4142

4243
## Development
4344

bundle/manifests/k8s.nginx.org_nginxingresscontrollers.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ spec:
135135
ingressClass:
136136
description: A class of the Ingress controller. The Ingress controller
137137
only processes Ingress resources that belong to its class (in other
138-
words, have the annotation “kubernetes.io/ingress.class”). Default is `nginx`.
138+
words, have the annotation “kubernetes.io/ingress.class”). Default
139+
is `nginx`.
139140
type: string
140141
logLevel:
141142
description: Log level for V logs. Format is 0 - 3

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ metadata:
1414
"image": {
1515
"pullPolicy": "Always",
1616
"repository": "docker.io/nginx/nginx-ingress",
17-
"tag": "1.12.0-ubi"
17+
"tag": "2.0.0-ubi"
1818
},
1919
"ingressClass": "nginx",
2020
"nginxPlus": false,
@@ -26,7 +26,7 @@ metadata:
2626
capabilities: Basic Install
2727
operators.operatorframework.io/builder: operator-sdk-v1.11.0
2828
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
29-
name: nginx-ingress-operator.v0.3.0
29+
name: nginx-ingress-operator.v0.4.0
3030
namespace: placeholder
3131
spec:
3232
apiservicedefinitions: {}
@@ -359,7 +359,7 @@ spec:
359359
- --leader-elect
360360
command:
361361
- /manager
362-
image: registry.connect.redhat.com/nginx/nginx-ingress-operator:0.3.0
362+
image: registry.connect.redhat.com/nginx/nginx-ingress-operator:0.4.0
363363
livenessProbe:
364364
httpGet:
365365
path: /healthz
@@ -447,4 +447,4 @@ spec:
447447
provider:
448448
name: NGINX Inc
449449
replaces: nginx-ingress-operator.v0.2.0
450-
version: 0.3.0
450+
version: 0.4.0

config/manager/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ kind: Kustomization
1313
images:
1414
- name: controller
1515
newName: nginx/nginx-ingress-operator
16-
newTag: 0.3.0
16+
newTag: 0.4.0

config/samples/k8s_v1alpha1_nginxingresscontroller.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ spec:
77
nginxPlus: false
88
image:
99
repository: docker.io/nginx/nginx-ingress
10-
tag: 1.12.0-ubi
10+
tag: 2.0.0-ubi
1111
pullPolicy: Always
1212
serviceType: NodePort
1313
ingressClass: nginx

docs/manual-installation.md

+3-3
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-operator/
1010
cd nginx-ingress-operator/
11-
git checkout v0.3.0
11+
git checkout v0.4.0
1212
```
1313
1414
2. `Openshift` To deploy the Operator and associated resources to an OpenShift environment, run:
1515
```
16-
make openshift-deploy IMG=registry.connect.redhat.com/nginx/nginx-ingress-operator:0.3.0
16+
make openshift-deploy IMG=registry.connect.redhat.com/nginx/nginx-ingress-operator:0.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:0.3.0
21+
make deploy IMG=nginx/nginx-ingress-operator:0.4.0
2222
```
2323
2424
2. Check that the Operator is running:

examples/deployment-oss-min/nginx-ingress-controller.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
nginxPlus: false
99
image:
1010
repository: nginx/nginx-ingress
11-
tag: 1.12.0-ubi
11+
tag: 2.0.0-ubi
1212
pullPolicy: Always
1313
replicas: 1
1414
serviceType: NodePort

examples/deployment-plus-min/nginx-ingress-controller.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ spec:
88
nginxPlus: true
99
image:
1010
repository: nginx-plus-ingress
11-
tag: 1.12.0-ubi
11+
tag: 2.0.0-ubi
1212
pullPolicy: IfNotPresent
1313
replicas: 1
1414
serviceType: NodePort

0 commit comments

Comments
 (0)