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

Release 0.4.0 #159

Merged
merged 1 commit into from
Oct 1, 2021
Merged
Show file tree
Hide file tree
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### 0.4.0

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)

### 0.3.0

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)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To re-generate a bundle for another specific version without changing the standard setup, you can:
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
VERSION ?= 0.3.0
VERSION ?= 0.4.0

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "preview,fast,stable")
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ The following table shows the relation between the versions of the two projects:

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

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.
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.

## Development

Expand Down
3 changes: 2 additions & 1 deletion bundle/manifests/k8s.nginx.org_nginxingresscontrollers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ spec:
ingressClass:
description: A class of the Ingress controller. The Ingress controller
only processes Ingress resources that belong to its class (in other
words, have the annotation “kubernetes.io/ingress.class”). Default is `nginx`.
words, have the annotation “kubernetes.io/ingress.class”). Default
is `nginx`.
type: string
logLevel:
description: Log level for V logs. Format is 0 - 3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ metadata:
"image": {
"pullPolicy": "Always",
"repository": "docker.io/nginx/nginx-ingress",
"tag": "1.12.0-ubi"
"tag": "2.0.0-ubi"
},
"ingressClass": "nginx",
"nginxPlus": false,
Expand All @@ -26,7 +26,7 @@ metadata:
capabilities: Basic Install
operators.operatorframework.io/builder: operator-sdk-v1.11.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
name: nginx-ingress-operator.v0.3.0
name: nginx-ingress-operator.v0.4.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -359,7 +359,7 @@ spec:
- --leader-elect
command:
- /manager
image: registry.connect.redhat.com/nginx/nginx-ingress-operator:0.3.0
image: registry.connect.redhat.com/nginx/nginx-ingress-operator:0.4.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -447,4 +447,4 @@ spec:
provider:
name: NGINX Inc
replaces: nginx-ingress-operator.v0.2.0
version: 0.3.0
version: 0.4.0
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ kind: Kustomization
images:
- name: controller
newName: nginx/nginx-ingress-operator
newTag: 0.3.0
newTag: 0.4.0
2 changes: 1 addition & 1 deletion config/samples/k8s_v1alpha1_nginxingresscontroller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
nginxPlus: false
image:
repository: docker.io/nginx/nginx-ingress
tag: 1.12.0-ubi
tag: 2.0.0-ubi
pullPolicy: Always
serviceType: NodePort
ingressClass: nginx
2 changes: 1 addition & 1 deletion examples/deployment-oss-min/nginx-ingress-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
nginxPlus: false
image:
repository: nginx/nginx-ingress
tag: 1.12.0-ubi
tag: 2.0.0-ubi
pullPolicy: Always
replicas: 1
serviceType: NodePort
Expand Down
2 changes: 1 addition & 1 deletion examples/deployment-plus-min/nginx-ingress-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
nginxPlus: true
image:
repository: nginx-plus-ingress
tag: 1.12.0-ubi
tag: 2.0.0-ubi
pullPolicy: IfNotPresent
replicas: 1
serviceType: NodePort
Expand Down