Skip to content

Commit 6fbc0c9

Browse files
Bump version to 0.7.0 for 18.0-fr6 release
1 parent 3329512 commit 6fbc0c9

4 files changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/build-openstack-operator.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ on:
33
push:
44
branches:
55
- '*'
6-
workflow_dispatch: # This allows manual triggering from the Actions tab if needed
7-
6+
workflow_dispatch: # This allows manual triggering from the Actions tab if needed
87
env:
98
imageregistry: 'quay.io'
109
imagenamespace: ${{ secrets.IMAGENAMESPACE || secrets.QUAY_USERNAME }}
@@ -17,7 +16,7 @@ jobs:
1716
go_version: 1.24.x
1817
operator_sdk_version: 1.41.1
1918
bundle_dockerfile: ./bundle.Dockerfile
20-
operator_version: 0.6.0
19+
operator_version: 0.7.0
2120
secrets:
2221
IMAGENAMESPACE: ${{ secrets.IMAGENAMESPACE }}
2322
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }}

.github/workflows/catalog-openstack-operator-upgrades.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ jobs:
6666
run: ./openstack-operator/hack/catalog-build-olm-upgrade.sh
6767
env:
6868
#FIXME: these should be pulled from a YAML config in the main operator directory?
69-
MAIN_VERSION: 0.6.0
70-
FEATURE_RELEASE_VERSION: 0.5.0
71-
FEATURE_RELEASE_BRANCH: 18.0-fr5
69+
MAIN_VERSION: 0.7.0
70+
FEATURE_RELEASE_VERSION: 0.6.0
71+
FEATURE_RELEASE_BRANCH: 18.0-fr6
7272
BUNDLE: ${{ env.imageregistry }}/${{ env.imagenamespace }}/openstack-operator-bundle:${{ github.sha }}
7373
- name: Buildah Action
7474
id: build-operator-index-upgrade

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 0.6.0
6+
VERSION ?= 0.7.0
77

88
OPENSTACK_RELEASE_VERSION ?= $(VERSION)-$(shell date +%s)
99

hack/fake_minor_update.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# A quick way to test a fake minor update. Run this script, and then once the
22
# openstackversion reconciles (the CSV will redeploy the controller-manager)
33
# you can set targetVersion == 0.0.2 for a quick test
4-
VERSION=0.6
4+
VERSION=0.7
55
CURRENT=${VERSION}.0
66
UPDATE=${VERSION}.1
77
oc get csv openstack-operator.v${CURRENT} -o yaml -n openstack-operators > csv.yaml

0 commit comments

Comments
 (0)