Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update ibm odf operator to 1.7.0 #517

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ data:
CSIADDONS_SUBSCRIPTION_STARTINGCSV: csi-addons.v0.10.0
IBM_SUBSCRIPTION_CATALOGSOURCE: odf-catalogsource
IBM_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE: openshift-marketplace
IBM_SUBSCRIPTION_CHANNEL: stable-v1.6
IBM_SUBSCRIPTION_CHANNEL: stable-v1.7
IBM_SUBSCRIPTION_NAME: ibm-storage-odf-operator
IBM_SUBSCRIPTION_PACKAGE: ibm-storage-odf-operator
IBM_SUBSCRIPTION_STARTINGCSV: ibm-storage-odf-operator.v1.6.0
IBM_SUBSCRIPTION_STARTINGCSV: ibm-storage-odf-operator.v1.7.0
NOOBAA_SUBSCRIPTION_CATALOGSOURCE: odf-catalogsource
NOOBAA_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE: openshift-marketplace
NOOBAA_SUBSCRIPTION_CHANNEL: alpha
Expand Down
18 changes: 9 additions & 9 deletions catalog/ibm.yaml

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions catalog/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ entries:
- name: cephcsi-operator.v4.18.0

---
defaultChannel: stable-v1.6
defaultChannel: stable-v1.7
name: ibm-storage-odf-operator
schema: olm.package
---
schema: olm.channel
package: ibm-storage-odf-operator
name: stable-v1.6
name: stable-v1.7
entries:
- name: ibm-storage-odf-operator.v1.6.0
- name: ibm-storage-odf-operator.v1.7.0

---
defaultChannel: alpha
Expand Down
4 changes: 2 additions & 2 deletions config/manager/manager.env
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ OCS_CLIENT_SUBSCRIPTION_CATALOGSOURCE=odf-catalogsource
OCS_CLIENT_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE=openshift-marketplace
IBM_SUBSCRIPTION_NAME=ibm-storage-odf-operator
IBM_SUBSCRIPTION_PACKAGE=ibm-storage-odf-operator
IBM_SUBSCRIPTION_CHANNEL=stable-v1.6
IBM_SUBSCRIPTION_STARTINGCSV=ibm-storage-odf-operator.v1.6.0
IBM_SUBSCRIPTION_CHANNEL=stable-v1.7
IBM_SUBSCRIPTION_STARTINGCSV=ibm-storage-odf-operator.v1.7.0
IBM_SUBSCRIPTION_CATALOGSOURCE=odf-catalogsource
IBM_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE=openshift-marketplace
ROOK_SUBSCRIPTION_NAME=rook-ceph-operator
Expand Down
4 changes: 2 additions & 2 deletions controllers/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ var (

"IBM_SUBSCRIPTION_NAME": "ibm-storage-odf-operator",
"IBM_SUBSCRIPTION_PACKAGE": "ibm-storage-odf-operator",
"IBM_SUBSCRIPTION_CHANNEL": "stable-v1.6",
"IBM_SUBSCRIPTION_STARTINGCSV": "ibm-storage-odf-operator.v1.6.0",
"IBM_SUBSCRIPTION_CHANNEL": "stable-v1.7",
"IBM_SUBSCRIPTION_STARTINGCSV": "ibm-storage-odf-operator.v1.7.0",
"IBM_SUBSCRIPTION_CATALOGSOURCE": "odf-catalogsource",
"IBM_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE": "openshift-marketplace",

Expand Down
6 changes: 3 additions & 3 deletions hack/make-bundle-vars.mk
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ CEPHCSI_BUNDLE_IMG ?= $(CEPHCSI_BUNDLE_IMG_LOCATION)/$(CEPHCSI_BUNDLE_IMG_NAME):

IBM_BUNDLE_NAME ?= ibm-storage-odf-operator
IBM_BUNDLE_IMG_NAME ?= $(IBM_BUNDLE_NAME)-bundle
IBM_BUNDLE_VERSION ?= 1.6.0
IBM_BUNDLE_IMG_TAG ?= 1.6.0
IBM_BUNDLE_VERSION ?= 1.7.0
IBM_BUNDLE_IMG_TAG ?= 1.7.0
IBM_BUNDLE_IMG_LOCATION ?= quay.io/ibmodffs
IBM_BUNDLE_IMG ?= $(IBM_BUNDLE_IMG_LOCATION)/$(IBM_BUNDLE_IMG_NAME):$(IBM_BUNDLE_IMG_TAG)

Expand Down Expand Up @@ -197,7 +197,7 @@ OCS_CLIENT_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE ?= $(OPERATOR_CATALOGSOURCE_NAME

IBM_SUBSCRIPTION_NAME ?= $(IBM_BUNDLE_NAME)
IBM_SUBSCRIPTION_PACKAGE ?= $(IBM_BUNDLE_NAME)
IBM_SUBSCRIPTION_CHANNEL ?= stable-v1.6
IBM_SUBSCRIPTION_CHANNEL ?= stable-v1.7
IBM_SUBSCRIPTION_STARTINGCSV ?= $(IBM_BUNDLE_NAME).v$(IBM_BUNDLE_VERSION)
IBM_SUBSCRIPTION_CATALOGSOURCE ?= $(OPERATOR_CATALOGSOURCE)
IBM_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE ?= $(OPERATOR_CATALOGSOURCE_NAMESPACE)
Expand Down
Loading