Skip to content

Commit daac7f4

Browse files
authored
Bump version to 3.4.3 (#695)
1 parent 632f2f8 commit daac7f4

File tree

27 files changed

+58
-48
lines changed

27 files changed

+58
-48
lines changed

.github/workflows/compatibility-tests.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
compatibilityVersion:
40+
- 3.4.2
41+
- 3.4.1
4042
- 3.4.0
4143
- 3.3.5
4244
- 3.3.4
@@ -50,6 +52,14 @@ jobs:
5052
- 3.2.7
5153
- 3.2.6
5254
include:
55+
- compatibilityVersion: 3.4.2
56+
coherence-image: "ghcr.io/oracle/coherence-ce:14.1.2-0-1"
57+
compatibilitySelector: control-plane=coherence
58+
k8s: kindest/node:v1.29.2@sha256:51a1434a5397193442f0be2a297b488b6c919ce8a3931be0ce822606ea5ca245
59+
- compatibilityVersion: 3.4.1
60+
coherence-image: "ghcr.io/oracle/coherence-ce:14.1.2-0-1"
61+
compatibilitySelector: control-plane=coherence
62+
k8s: kindest/node:v1.29.2@sha256:51a1434a5397193442f0be2a297b488b6c919ce8a3931be0ce822606ea5ca245
5363
- compatibilityVersion: 3.4.0
5464
coherence-image: "ghcr.io/oracle/coherence-ce:22.06.10"
5565
compatibilitySelector: control-plane=coherence

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@
1515
# ======================================================================================================================
1616

1717
# The version of the Operator being build - this should be a valid SemVer format
18-
VERSION ?= 3.4.2
18+
VERSION ?= 3.4.3
1919
MVN_VERSION ?= $(VERSION)
2020

2121
# The version number to be replaced by this release
22-
PREV_VERSION ?= 3.4.1
22+
PREV_VERSION ?= 3.4.2
2323
NEXT_VERSION := $(shell sh ./hack/next-version.sh "$(VERSION)")
2424

2525
# The operator version to use to run certification tests against
2626
CERTIFICATION_VERSION ?= $(VERSION)
2727

2828
# The previous Operator version used to run the compatibility tests.
29-
COMPATIBLE_VERSION ?= 3.4.1
29+
COMPATIBLE_VERSION ?= 3.4.2
3030
# The selector to use to find Operator Pods of the COMPATIBLE_VERSION (do not put in double quotes!!)
3131
COMPATIBLE_SELECTOR ?= control-plane=coherence
3232

config/crd/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ commonLabels:
4141
app.kubernetes.io/instance: coherence-operator-crd
4242
app.kubernetes.io/name: coherence-operator
4343
app.kubernetes.io/part-of: coherence-operator
44-
app.kubernetes.io/version: 3.4.2
44+
app.kubernetes.io/version: 3.4.3

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ resources:
99
images:
1010
- name: controller
1111
newName: ghcr.io/oracle/coherence-operator
12-
newTag: 3.4.2
12+
newTag: 3.4.3

config/manager/manager.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ metadata:
88
app.kubernetes.io/name: coherence-operator
99
app: coherence-operator
1010
app.kubernetes.io/instance: coherence-operator-manager
11-
app.kubernetes.io/version: "3.4.2"
12-
version: "3.4.2"
11+
app.kubernetes.io/version: "3.4.3"
12+
version: "3.4.3"
1313
app.kubernetes.io/component: manager
1414
app.kubernetes.io/part-of: coherence-operator
1515
spec:
@@ -24,8 +24,8 @@ spec:
2424
app.kubernetes.io/name: coherence-operator
2525
app: coherence-operator
2626
app.kubernetes.io/instance: coherence-operator-manager
27-
app.kubernetes.io/version: "3.4.2"
28-
version: "3.4.2"
27+
app.kubernetes.io/version: "3.4.3"
28+
version: "3.4.3"
2929
app.kubernetes.io/component: manager
3030
app.kubernetes.io/part-of: coherence-operator
3131
spec:
@@ -106,7 +106,7 @@ spec:
106106
control-plane: coherence
107107
app.kubernetes.io/name: coherence-operator
108108
app.kubernetes.io/instance: coherence-operator-manager
109-
app.kubernetes.io/version: "3.4.2"
109+
app.kubernetes.io/version: "3.4.3"
110110
affinity:
111111
podAntiAffinity:
112112
preferredDuringSchedulingIgnoredDuringExecution:
@@ -117,7 +117,7 @@ spec:
117117
control-plane: coherence
118118
app.kubernetes.io/name: coherence-operator
119119
app.kubernetes.io/instance: coherence-operator-manager
120-
app.kubernetes.io/version: "3.4.2"
120+
app.kubernetes.io/version: "3.4.3"
121121
weight: 50
122122
- podAffinityTerm:
123123
topologyKey: "oci.oraclecloud.com/fault-domain"
@@ -126,7 +126,7 @@ spec:
126126
control-plane: coherence
127127
app.kubernetes.io/name: coherence-operator
128128
app.kubernetes.io/instance: coherence-operator-manager
129-
app.kubernetes.io/version: "3.4.2"
129+
app.kubernetes.io/version: "3.4.3"
130130
weight: 10
131131
- podAffinityTerm:
132132
topologyKey: "kubernetes.io/hostname"
@@ -135,5 +135,5 @@ spec:
135135
control-plane: coherence
136136
app.kubernetes.io/name: coherence-operator
137137
app.kubernetes.io/instance: coherence-operator-manager
138-
app.kubernetes.io/version: "3.4.2"
138+
app.kubernetes.io/version: "3.4.3"
139139
weight: 1

config/manager/service.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
control-plane: coherence
88
app.kubernetes.io/name: coherence-operator
99
app.kubernetes.io/instance: coherence-operator-webhook
10-
app.kubernetes.io/version: "3.4.2"
10+
app.kubernetes.io/version: "3.4.3"
1111
app.kubernetes.io/component: webhook
1212
app.kubernetes.io/part-of: coherence-operator
1313
spec:
@@ -18,7 +18,7 @@ spec:
1818
selector:
1919
app.kubernetes.io/name: coherence-operator
2020
app.kubernetes.io/instance: coherence-operator-manager
21-
app.kubernetes.io/version: "3.4.2"
21+
app.kubernetes.io/version: "3.4.3"
2222
app.kubernetes.io/component: manager
2323
---
2424
apiVersion: v1
@@ -30,7 +30,7 @@ metadata:
3030
control-plane: coherence
3131
app.kubernetes.io/name: coherence-operator
3232
app.kubernetes.io/instance: coherence-operator-rest
33-
app.kubernetes.io/version: "3.4.2"
33+
app.kubernetes.io/version: "3.4.3"
3434
app.kubernetes.io/component: rest
3535
app.kubernetes.io/part-of: coherence-operator
3636
spec:
@@ -41,5 +41,5 @@ spec:
4141
selector:
4242
app.kubernetes.io/name: coherence-operator
4343
app.kubernetes.io/instance: coherence-operator-manager
44-
app.kubernetes.io/version: "3.4.2"
44+
app.kubernetes.io/version: "3.4.3"
4545
app.kubernetes.io/component: manager

config/manifests/bases/coherence-operator.clusterserviceversion.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ metadata:
1111
description: >-
1212
Coherence Operator implements features to assist with deploying and
1313
managing Coherence clusters in a Kubernetes environment.
14-
containerImage: 'ghcr.io/oracle/coherence-operator:3.4.2'
14+
containerImage: 'ghcr.io/oracle/coherence-operator:3.4.3'
1515
support: ''
1616
repository: 'https://github.com/oracle/coherence-operator'
1717
operators.operatorframework.io/builder: operator-sdk-v1.0.0
1818
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
19-
name: coherence-operator.v3.4.2
19+
name: coherence-operator.v3.4.3
2020
namespace: placeholder
2121
spec:
2222
apiservicedefinitions: {}
@@ -65,4 +65,4 @@ spec:
6565
provider:
6666
name: Oracle
6767
url: https://oracle.github.io/coherence-operator/docs/latest
68-
version: 3.4.2
68+
version: 3.4.3

docs/about/03_quickstart.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If you want the default Coherence Operator installation then the simplest soluti
2121
2222
[source,bash]
2323
----
24-
kubectl apply -f https://github.com/oracle/coherence-operator/releases/download/v3.4.2/coherence-operator.yaml
24+
kubectl apply -f https://github.com/oracle/coherence-operator/releases/download/v3.4.3/coherence-operator.yaml
2525
----
2626
2727
This will create a namespace called `coherence` and install the Operator into it along with all the required `ClusterRole` and `RoleBinding` resources. The `coherence` namespace can be changed by downloading and editing the yaml file.

docs/installation/01_installation.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ If you want the default Coherence Operator installation then the simplest soluti
152152
153153
[source,bash]
154154
----
155-
kubectl apply -f https://github.com/oracle/coherence-operator/releases/download/v3.4.2/coherence-operator.yaml
155+
kubectl apply -f https://github.com/oracle/coherence-operator/releases/download/v3.4.3/coherence-operator.yaml
156156
----
157157
158158
This will create a namespace called `coherence` and install the Operator into it along with all the required `ClusterRole` and `RoleBinding` resources. The `coherence` namespace can be changed by downloading and editing the yaml file.
@@ -196,7 +196,7 @@ The Operator installed with this yaml
196196
197197
[source,bash]
198198
----
199-
kubectl apply -f https://github.com/oracle/coherence-operator/releases/download/v3.4.2/coherence-operator-restricted.yaml
199+
kubectl apply -f https://github.com/oracle/coherence-operator/releases/download/v3.4.3/coherence-operator-restricted.yaml
200200
----
201201
202202
[IMPORTANT]
@@ -215,8 +215,8 @@ The Operator release artifacts include small versions of the two CRDs which can
215215
216216
[source,bash]
217217
----
218-
kubectl apply -f https://github.com/oracle/coherence-operator/releases/download/v3.4.2/coherence.oracle.com_coherence_small.yaml
219-
kubectl apply -f https://github.com/oracle/coherence-operator/releases/download/v3.4.2/coherencejob.oracle.com_coherence_small.yaml
218+
kubectl apply -f https://github.com/oracle/coherence-operator/releases/download/v3.4.3/coherence.oracle.com_coherence_small.yaml
219+
kubectl apply -f https://github.com/oracle/coherence-operator/releases/download/v3.4.3/coherencejob.oracle.com_coherence_small.yaml
220220
----
221221
222222
The small versions of the CRDs are identical to the full versions but hav a cut down OpenAPI spec with a lot of comments

docs/installation/07_webhooks.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ If installing the operator using the manifest yaml file first replace the occurr
6363
For example:
6464
[source,bash]
6565
----
66-
curl -L https://github.com/oracle/coherence-operator/releases/download/v3.4.2/coherence-operator.yaml \
66+
curl -L https://github.com/oracle/coherence-operator/releases/download/v3.4.3/coherence-operator.yaml \
6767
-o coherence-operator.yaml
6868
sed -i s/self-signed/cert-manager/g coherence-operator.yaml
6969
kubectl apply -f coherence-operator.yaml

0 commit comments

Comments
 (0)