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

makefile: update csi-addons version to v0.10.0 #477

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data:
CSIADDONS_SUBSCRIPTION_CHANNEL: alpha
CSIADDONS_SUBSCRIPTION_NAME: csi-addons
CSIADDONS_SUBSCRIPTION_PACKAGE: csi-addons
CSIADDONS_SUBSCRIPTION_STARTINGCSV: csi-addons.v0.9.1
CSIADDONS_SUBSCRIPTION_STARTINGCSV: csi-addons.v0.10.0
IBM_SUBSCRIPTION_CATALOGSOURCE: odf-catalogsource
IBM_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE: openshift-marketplace
IBM_SUBSCRIPTION_CHANNEL: stable-v1.5
Expand Down
2 changes: 1 addition & 1 deletion bundle/metadata/dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies:
- type: olm.package
value:
packageName: csi-addons
version: ">=0.8.0 <=0.9.1"
version: ">=0.9.1 <=0.10.0"
- type: olm.package
value:
packageName: cephcsi-operator
Expand Down
34 changes: 17 additions & 17 deletions catalog/csiaddons.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion catalog/index.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ schema: olm.channel
package: csi-addons
name: alpha
entries:
- name: csi-addons.v0.9.1
- name: csi-addons.v0.10.0

---
defaultChannel: alpha
Expand Down
2 changes: 1 addition & 1 deletion config/manager/manager.env
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ NOOBAA_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE=openshift-marketplace
CSIADDONS_SUBSCRIPTION_NAME=csi-addons
CSIADDONS_SUBSCRIPTION_PACKAGE=csi-addons
CSIADDONS_SUBSCRIPTION_CHANNEL=alpha
CSIADDONS_SUBSCRIPTION_STARTINGCSV=csi-addons.v0.9.1
CSIADDONS_SUBSCRIPTION_STARTINGCSV=csi-addons.v0.10.0
CSIADDONS_SUBSCRIPTION_CATALOGSOURCE=odf-catalogsource
CSIADDONS_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE=openshift-marketplace
CEPHCSI_SUBSCRIPTION_NAME=cephcsi-operator
Expand Down
2 changes: 1 addition & 1 deletion controllers/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ var (
"CSIADDONS_SUBSCRIPTION_NAME": "csi-addons",
"CSIADDONS_SUBSCRIPTION_PACKAGE": "csi-addons",
"CSIADDONS_SUBSCRIPTION_CHANNEL": "alpha",
"CSIADDONS_SUBSCRIPTION_STARTINGCSV": "csi-addons.v0.9.1",
"CSIADDONS_SUBSCRIPTION_STARTINGCSV": "csi-addons.v0.10.0",
"CSIADDONS_SUBSCRIPTION_CATALOGSOURCE": "odf-catalogsource",
"CSIADDONS_SUBSCRIPTION_CATALOGSOURCE_NAMESPACE": "openshift-marketplace",

Expand Down
4 changes: 2 additions & 2 deletions hack/make-bundle-vars.mk
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ NOOBAA_BUNDLE_IMG ?= $(NOOBAA_BUNDLE_IMG_LOCATION)/$(NOOBAA_BUNDLE_IMG_NAME):$(N

CSIADDONS_BUNDLE_NAME ?= csi-addons
CSIADDONS_BUNDLE_IMG_NAME ?= k8s-bundle
CSIADDONS_BUNDLE_VERSION ?= v0.9.1
CSIADDONS_BUNDLE_IMG_TAG ?= v0.9.1
CSIADDONS_BUNDLE_VERSION ?= v0.10.0
CSIADDONS_BUNDLE_IMG_TAG ?= v0.10.0
CSIADDONS_BUNDLE_IMG_LOCATION ?= quay.io/csiaddons
CSIADDONS_BUNDLE_IMG ?= $(CSIADDONS_BUNDLE_IMG_LOCATION)/$(CSIADDONS_BUNDLE_IMG_NAME):$(CSIADDONS_BUNDLE_IMG_TAG)

Expand Down
Loading