From d8ba06a0ba81851c204a8226bcf8b56f63f2279c Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Fri, 16 Feb 2024 18:40:53 +0100 Subject: [PATCH] Set `VERSION` to `0.1.0` in Makefile for release branch (#206) As discussed in [1], it would make sense to use different `VERSION` on `main` and release branches. [1] https://github.com/janus-idp/operator/pull/200#discussion_r1489312876 --- Makefile | 2 +- .../backstage-operator.clusterserviceversion.yaml | 8 ++++---- config/manager/kustomization.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index c89e2eba..f394a395 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ # To re-generate a bundle for another specific version without changing the standard setup, you can: # - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2) # - use environment variables to overwrite this value (e.g export VERSION=0.0.2) -VERSION ?= 0.0.1 +VERSION ?= 0.1.0 # Using docker or podman to build and push images CONTAINER_ENGINE ?= docker diff --git a/bundle/manifests/backstage-operator.clusterserviceversion.yaml b/bundle/manifests/backstage-operator.clusterserviceversion.yaml index bc3be853..379c5a00 100644 --- a/bundle/manifests/backstage-operator.clusterserviceversion.yaml +++ b/bundle/manifests/backstage-operator.clusterserviceversion.yaml @@ -21,11 +21,11 @@ metadata: } ] capabilities: Seamless Upgrades - createdAt: "2024-02-13T07:11:47Z" + createdAt: "2024-02-16T17:01:45Z" operatorframework.io/suggested-namespace: backstage-system operators.operatorframework.io/builder: operator-sdk-v1.33.0 operators.operatorframework.io/project_layout: go.kubebuilder.io/v3 - name: backstage-operator.v0.0.1 + name: backstage-operator.v0.1.0 namespace: placeholder spec: apiservicedefinitions: {} @@ -221,7 +221,7 @@ spec: value: quay.io/fedora/postgresql-15:latest - name: RELATED_IMAGE_backstage value: quay.io/janus-idp/backstage-showcase:latest - image: quay.io/janus-idp/operator:0.0.1 + image: quay.io/janus-idp/operator:0.1.0 livenessProbe: httpGet: path: /healthz @@ -326,4 +326,4 @@ spec: name: postgresql - image: quay.io/janus-idp/backstage-showcase:latest name: backstage - version: 0.0.1 + version: 0.1.0 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index a5b1aec8..2a9e83b6 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,7 +5,7 @@ kind: Kustomization images: - name: controller newName: quay.io/janus-idp/operator - newTag: 0.0.1 + newTag: 0.1.0 generatorOptions: disableNameSuffixHash: true