diff --git a/bundle.Dockerfile b/bundle.Dockerfile index f9b7e540f..18fed946e 100644 --- a/bundle.Dockerfile +++ b/bundle.Dockerfile @@ -5,7 +5,7 @@ LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1 LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/ LABEL operators.operatorframework.io.bundle.package.v1=volsync -LABEL operators.operatorframework.io.bundle.channels.v1=stable,acm-2.7 +LABEL operators.operatorframework.io.bundle.channels.v1=acm-2.7 LABEL operators.operatorframework.io.bundle.channel.default.v1=stable LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.22.0 LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1 diff --git a/bundle/manifests/volsync.clusterserviceversion.yaml b/bundle/manifests/volsync.clusterserviceversion.yaml index d9412a836..e3b3de2af 100644 --- a/bundle/manifests/volsync.clusterserviceversion.yaml +++ b/bundle/manifests/volsync.clusterserviceversion.yaml @@ -41,10 +41,10 @@ metadata: } ] capabilities: Basic Install - olm.skipRange: '>=0.4.0 <0.6.1' + olm.skipRange: '>=0.4.0 <0.6.2' operators.operatorframework.io/builder: operator-sdk-v1.22.0 operators.operatorframework.io/project_layout: go.kubebuilder.io/v3 - name: volsync.v0.6.1 + name: volsync.v0.6.2 namespace: placeholder spec: apiservicedefinitions: {} @@ -535,5 +535,5 @@ spec: name: restic-container - image: quay.io/backube/volsync-mover-syncthing:latest name: syncthing-container - replaces: volsync.v0.6.0 - version: 0.6.1 + replaces: volsync.v0.6.1 + version: 0.6.2 diff --git a/bundle/metadata/annotations.yaml b/bundle/metadata/annotations.yaml index 4685c8fb0..d1373ee39 100644 --- a/bundle/metadata/annotations.yaml +++ b/bundle/metadata/annotations.yaml @@ -4,7 +4,7 @@ annotations: operators.operatorframework.io.bundle.manifests.v1: manifests/ operators.operatorframework.io.bundle.metadata.v1: metadata/ operators.operatorframework.io.bundle.package.v1: volsync - operators.operatorframework.io.bundle.channels.v1: stable,acm-2.7 + operators.operatorframework.io.bundle.channels.v1: acm-2.7 operators.operatorframework.io.bundle.channel.default.v1: stable operators.operatorframework.io.metrics.builder: operator-sdk-v1.22.0 operators.operatorframework.io.metrics.mediatype.v1: metrics+v1 diff --git a/helm/volsync/Chart.yaml b/helm/volsync/Chart.yaml index f207eea77..98773ca7d 100644 --- a/helm/volsync/Chart.yaml +++ b/helm/volsync/Chart.yaml @@ -54,10 +54,10 @@ kubeVersion: "^1.20.0-0" # This is the chart version. This version number should be incremented each time # you make changes to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "0.6.1" +version: "0.6.2" # This is the version number of the application being deployed. This version # number should be incremented each time you make changes to the application. # Versions are not expected to follow Semantic Versioning. They should reflect # the version the application is using. It is recommended to use it with quotes. -appVersion: "0.6.1" +appVersion: "0.6.2" diff --git a/version.mk b/version.mk index 2092cf4d4..2f8b881af 100644 --- a/version.mk +++ b/version.mk @@ -9,11 +9,11 @@ # # Bundle Version being built right now and channels to use # -VERSION := 0.6.1 +VERSION := 0.6.2 # REPLACES_VERSION should be left empty for the first version in a new channel (See more info in Procedures.md) -REPLACES_VERSION := 0.6.0 +REPLACES_VERSION := 0.6.1 OLM_SKIPRANGE := '>=0.4.0 <$(VERSION)' -CHANNELS := stable,acm-2.7 +CHANNELS := acm-2.7 DEFAULT_CHANNEL := stable MIN_KUBE_VERSION := 1.20.0