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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Red Hat OpenShift Container Platform 4.3 or newer installed on one of the follow

## Operator versions

- 4.3.0
- 4.3.1

## Prerequisites

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ metadata:
description: The IBM Common Service Operator is used to deploy IBM Common Services
nss.operator.ibm.com/managed-operators: ibm-common-service-operator
nss.operator.ibm.com/managed-webhooks: ""
olm.skipRange: ">=3.3.0 <4.3.0"
olm.skipRange: ">=3.3.0 <4.3.1"
operatorChannel: v4.3
operatorVersion: 4.3.0
operatorVersion: 4.3.1
operators.openshift.io/infrastructure-features: '["disconnected"]'
operators.operatorframework.io/builder: operator-sdk-v1.31.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
Expand All @@ -39,7 +39,7 @@ metadata:
operatorframework.io/arch.ppc64le: supported
operatorframework.io/arch.s390x: supported
operatorframework.io/os.linux: supported
name: ibm-common-service-operator.v4.3.0
name: ibm-common-service-operator.v4.3.1
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -124,7 +124,7 @@ spec:

## Operator versions

- 4.3.0
- 4.3.1

## Prerequisites

Expand Down Expand Up @@ -482,7 +482,7 @@ spec:
version: v1
provider:
name: IBM
version: 4.3.0
version: 4.3.1
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down Expand Up @@ -525,7 +525,7 @@ spec:
type: ValidatingAdmissionWebhook
webhookPath: /validate-operator-ibm-com-v3-commonservice
relatedImages:
- image: icr.io/cpopen/common-service-operator:4.3.0
- image: icr.io/cpopen/common-service-operator:4.3.1
name: COMMON_SERVICE_OPERATOR_IMAGE
- image: icr.io/cpopen/cpfs/cpfs-utils:latest
name: CPFS_UTILS_IMAGE
2 changes: 1 addition & 1 deletion common/scripts/multiarch_image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ ALL_PLATFORMS="amd64 ppc64le s390x"
IMAGE_REPO=${1}
IMAGE_NAME=${2}
VERSION=${3-"$(git describe --exact-match 2> /dev/null || git describe --match=$(git rev-parse --short=8 HEAD) --always --dirty --abbrev=8)"}
RELEASE_VERSION=${4:-4.3.0}
RELEASE_VERSION=${4:-4.3.1}
MAX_PULLING_RETRY=${MAX_PULLING_RETRY-10}
RETRY_INTERVAL=${RETRY_INTERVAL-10}
# support other container tools, e.g. podman
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ metadata:
nss.operator.ibm.com/managed-webhooks: ""
olm.skipRange: ""
operatorChannel: v4.3
operatorVersion: 4.3.0
operatorVersion: 4.3.1
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 @@ -110,7 +110,7 @@ spec:

## Operator versions

- 4.3.0
- 4.3.1

## Prerequisites

Expand Down Expand Up @@ -186,7 +186,7 @@ spec:
provider:
name: IBM
relatedImages:
- image: icr.io/cpopen/common-service-operator:4.3.0
- image: icr.io/cpopen/common-service-operator:4.3.1
name: COMMON_SERVICE_OPERATOR_IMAGE
- image: icr.io/cpopen/cpfs/cpfs-utils:latest
name: CPFS_UTILS_IMAGE
Expand Down
6 changes: 3 additions & 3 deletions testdata/deploy/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
annotations:
description: The IBM Common Service Operator is used to deploy IBM Common Services
operatorChannel: v4.3
operatorVersion: 4.3.0
operatorVersion: 4.3.1
spec:
affinity:
nodeAffinity:
Expand All @@ -36,9 +36,9 @@ spec:
- name: OPERATOR_NAME
value: ibm-common-service-operator
- name: IBM_CS_WEBHOOK_IMAGE
value: icr.io/cpopen/cpfs/ibm-cs-webhook:1.18.0
value: icr.io/cpopen/cpfs/:1.18.0
- name: IBM_SECRETSHARE_OPERATOR_IMAGE
value: icr.io/cpopen/cpfs/ibm-secretshare-operator:1.19.0
value: icr.io/cpopen/cpfs/:1.19.0
- name: IBM_ZEN_OPERATOR_IMAGE
value: icr.io/cpopen/ibm-zen-operator:1.7.0
image: siji/operator:cs
Expand Down
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.3.0"
Version = "4.3.1"
)