Skip to content

Commit

Permalink
Bump version to 1.2.0 (#57)
Browse files Browse the repository at this point in the history
Change ODF version to 1.2.0 and CSI to 1.10.0

Signed-off-by: 662962756 <[email protected]>
  • Loading branch information
bvered authored Aug 7, 2022
1 parent 37b4c67 commit 436d438
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ LABEL vendor="IBM" \
org.label-schema.name="ibm storage odf operator" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.vcs-url=$VCS_URL \
org.label-schema.schema-version="1.0.2" \
org.label-schema.schema-version="1.2.0" \
summary="IBM Storage ODF Operator" \
description="operator and driver of ibm storage systems for openshift data foundation (ODF)"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ metadata:
operators.operatorframework.io/builder: operator-sdk-v1.4.0+git
operators.operatorframework.io/operator-type: non-standalone
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
olm.skipRange: '>=0.0.1 <1.0.2'
name: ibm-storage-odf-operator.v1.0.2
olm.skipRange: '>=0.0.1 <1.2.0'
name: ibm-storage-odf-operator.v1.2.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -292,12 +292,12 @@ spec:
- /manager
env:
- name: EXPORTER_IMAGE
value: docker.io/ibmcom/ibm-storage-odf-block-driver:1.0.2
value: docker.io/ibmcom/ibm-storage-odf-block-driver:1.2.0
- name: WATCH_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.annotations['olm.targetNamespaces']
image: docker.io/ibmcom/ibm-storage-odf-operator:1.0.2
image: docker.io/ibmcom/ibm-storage-odf-operator:1.2.0
imagePullPolicy: Always
livenessProbe:
httpGet:
Expand Down Expand Up @@ -344,7 +344,7 @@ spec:
app: ibm-odf-console
spec:
containers:
- image: docker.io/ibmcom/ibm-storage-odf-plugin:1.0.2
- image: docker.io/ibmcom/ibm-storage-odf-plugin:1.2.0
name: ibm-odf-console
ports:
- containerPort: 9003
Expand Down Expand Up @@ -416,4 +416,4 @@ spec:
maturity: alpha
provider:
name: IBM
version: 1.0.2
version: 1.2.0
2 changes: 1 addition & 1 deletion config/console/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ kind: Kustomization
images:
- name: ibm-console
newName: docker.io/ibmcom/ibm-storage-odf-plugin
newTag: 1.0.2
newTag: 1.2.0
2 changes: 1 addition & 1 deletion config/default/manager_config_patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ spec:
- name: manager
env:
- name: EXPORTER_IMAGE
value: docker.io/ibmcom/ibm-storage-odf-block-driver:1.0.2
value: docker.io/ibmcom/ibm-storage-odf-block-driver:1.2.0
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ kind: Kustomization
images:
- name: controller
newName: docker.io/ibmcom/ibm-storage-odf-operator
newTag: 1.0.2
newTag: 1.2.0
2 changes: 1 addition & 1 deletion hack/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ DEFAULT_BLOCK_CSI_RELEASE="v1.10.0"
DEFAULT_BLOCK_CSI_CR_FILE="csi.ibm.com_v1_ibmblockcsi_cr.yaml"

VCS_URL="https://github.com/IBM/ibm-storage-odf-operator"
VCS_REF="1.0.2-$(git rev-parse --short HEAD)"
VCS_REF="1.2.0-$(git rev-parse --short HEAD)"
RELEASE_VERSION=$(cat version/version.go | grep "Version =" | awk -F '"' '{print $2}')

CHANNELS="stable-v1"
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ package version

var (
// Version of the operator
Version = "1.0.2"
Version = "1.2.0"
)

0 comments on commit 436d438

Please sign in to comment.