Skip to content

Commit ab6ffe1

Browse files
authored
Bump ODLM to 4.3.2 for 4.6.3 (IBM#1047)
* Bump ODLM to 4.3.2 for 4.6.3 Signed-off-by: Daniel Fan <[email protected]> * Rollback package setup-envtest due to issue kubernetes-sigs/controller-runtime#2838 Signed-off-by: Daniel Fan <[email protected]> --------- Signed-off-by: Daniel Fan <[email protected]>
1 parent 646f7ea commit ab6ffe1

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ OPERATOR_IMAGE_NAME ?= odlm
8484
# Current Operator bundle image name
8585
BUNDLE_IMAGE_NAME ?= odlm-operator-bundle
8686
# Current Operator version
87-
OPERATOR_VERSION ?= 4.3.1
87+
OPERATOR_VERSION ?= 4.3.2
8888

8989
# Kind cluster name
9090
KIND_CLUSTER_NAME ?= "odlm"

bundle/manifests/operand-deployment-lifecycle-manager.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ metadata:
132132
createdAt: "2024-04-04T03:40:45Z"
133133
description: The Operand Deployment Lifecycle Manager provides a Kubernetes CRD-based API to manage the lifecycle of operands.
134134
nss.operator.ibm.com/managed-operators: ibm-odlm
135-
olm.skipRange: '>=1.2.0 <4.3.1'
135+
olm.skipRange: '>=1.2.0 <4.3.2'
136136
operators.openshift.io/infrastructure-features: '["disconnected"]'
137137
operators.operatorframework.io/builder: operator-sdk-v1.32.0
138138
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
@@ -143,7 +143,7 @@ metadata:
143143
operatorframework.io/arch.ppc64le: supported
144144
operatorframework.io/arch.s390x: supported
145145
operatorframework.io/os.linux: supported
146-
name: operand-deployment-lifecycle-manager.v4.3.1
146+
name: operand-deployment-lifecycle-manager.v4.3.2
147147
namespace: placeholder
148148
spec:
149149
apiservicedefinitions: {}
@@ -860,7 +860,7 @@ spec:
860860
minKubeVersion: 1.19.0
861861
provider:
862862
name: IBM
863-
version: 4.3.1
863+
version: 4.3.2
864864
relatedImages:
865-
- image: icr.io/cpopen/odlm:4.3.1
865+
- image: icr.io/cpopen/odlm:4.3.2
866866
name: ODLM_IMAGE

common/Makefile.common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ kind: ## Download kind locally if necessary.
9494

9595
ENVTEST = $(shell pwd)/common/bin/setup-envtest
9696
setup-envtest: ## Download envtest-setup locally if necessary.
97-
$(call go-get-tool,$(ENVTEST),sigs.k8s.io/controller-runtime/tools/setup-envtest@latest)
97+
$(call go-get-tool,$(ENVTEST),sigs.k8s.io/controller-runtime/tools/setup-envtest@7b4325d5a38dff0c7eb9a939d079950eafcc4f7e)
9898

9999
FINDFILES=find . \( -path ./.git -o -path ./.github -o -path ./testcrds \) -prune -o -type f
100100
XARGS = xargs -0 ${XARGS_FLAGS}

config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
description: The Operand Deployment Lifecycle Manager provides a Kubernetes CRD-based
1212
API to manage the lifecycle of operands.
1313
nss.operator.ibm.com/managed-operators: ibm-odlm
14-
olm.skipRange: '>=1.2.0 <4.3.1'
14+
olm.skipRange: '>=1.2.0 <4.3.2'
1515
operators.openshift.io/infrastructure-features: '["disconnected"]'
1616
operators.operatorframework.io/builder: operator-sdk-v1.2.0
1717
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
@@ -482,6 +482,6 @@ spec:
482482
provider:
483483
name: IBM
484484
relatedImages:
485-
- image: icr.io/cpopen/odlm:4.3.1
485+
- image: icr.io/cpopen/odlm:4.3.2
486486
name: ODLM_IMAGE
487487
version: 0.0.0

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
package version
1818

1919
var (
20-
Version = "4.3.1"
20+
Version = "4.3.2"
2121
)

0 commit comments

Comments
 (0)