Skip to content
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
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ OPERATOR_IMAGE_NAME ?= odlm
# Current Operator bundle image name
BUNDLE_IMAGE_NAME ?= odlm-operator-bundle
# Current Operator version
OPERATOR_VERSION ?= 4.2.1
OPERATOR_VERSION ?= 4.2.2

# Kind cluster name
KIND_CLUSTER_NAME ?= "odlm"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ metadata:
createdAt: "2023-11-03T17:30:05Z"
description: The Operand Deployment Lifecycle Manager provides a Kubernetes CRD-based API to manage the lifecycle of operands.
nss.operator.ibm.com/managed-operators: ibm-odlm
olm.skipRange: '>=1.2.0 <4.2.1'
olm.skipRange: '>=1.2.0 <4.2.2'
operators.openshift.io/infrastructure-features: '["disconnected"]'
operators.operatorframework.io/builder: operator-sdk-v1.29.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
Expand All @@ -143,7 +143,7 @@ metadata:
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
name: operand-deployment-lifecycle-manager.v4.2.1
name: operand-deployment-lifecycle-manager.v4.2.2
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -786,7 +786,7 @@ spec:
minKubeVersion: 1.19.0
provider:
name: IBM
version: 4.2.1
version: 4.2.2
relatedImages:
- image: icr.io/cpopen/odlm:4.2.1
- image: icr.io/cpopen/odlm:4.2.2
name: ODLM_IMAGE
2 changes: 2 additions & 0 deletions common/scripts/next-csv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then

# Update config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml
sed -i "/olm.skipRange/s/$CURRENT_DEV_CSV/$NEW_DEV_CSV/g" config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml
sed -i "s/odlm:$CURRENT_DEV_CSV/odlm:$NEW_DEV_CSV/g" config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml
echo "Updated the config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml"

sed -i "s/OPERATOR_VERSION ?= $CURRENT_DEV_CSV/OPERATOR_VERSION ?= $NEW_DEV_CSV/g" Makefile
Expand All @@ -54,6 +55,7 @@ elif [[ "$OSTYPE" == "darwin"* ]]; then

# Update config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml
sed -i "" "/olm.skipRange/s/$CURRENT_DEV_CSV/$NEW_DEV_CSV/g" config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml
sed -i "" "s/odlm:$CURRENT_DEV_CSV/odlm:$NEW_DEV_CSV/g" config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml
echo "Updated the config/manifests/bases/operand-deployment-lifecycle-manager.clusterserviceversion.yaml"

sed -i "" "s/OPERATOR_VERSION ?= $CURRENT_DEV_CSV/OPERATOR_VERSION ?= $NEW_DEV_CSV/g" Makefile
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
description: The Operand Deployment Lifecycle Manager provides a Kubernetes CRD-based
API to manage the lifecycle of operands.
nss.operator.ibm.com/managed-operators: ibm-odlm
olm.skipRange: '>=1.2.0 <4.2.1'
olm.skipRange: '>=1.2.0 <4.2.2'
operators.openshift.io/infrastructure-features: '["disconnected"]'
operators.operatorframework.io/builder: operator-sdk-v1.2.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
Expand Down Expand Up @@ -467,6 +467,6 @@ spec:
provider:
name: IBM
relatedImages:
- image: icr.io/cpopen/odlm:4.2.1
- image: icr.io/cpopen/odlm:4.2.2
name: ODLM_IMAGE
version: 0.0.0
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
package version

var (
Version = "4.2.1"
Version = "4.2.2"
)