From 814a3414d5739824d766a4773d98ccee8b7a1abc Mon Sep 17 00:00:00 2001 From: git-hyagi <45576767+git-hyagi@users.noreply.github.com> Date: Mon, 4 Dec 2023 11:50:09 -0300 Subject: [PATCH] Bump version from Makefile to 1.0.0-beta.4 [noissue] --- .github/workflows/ci.yml | 2 +- Makefile | 2 +- bundle/manifests/pulp-operator.clusterserviceversion.yaml | 8 ++++---- config/manager/kustomization.yaml | 2 +- main.go | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 85a90763f..bc884a4c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,7 +87,7 @@ jobs: with: fetch-depth: 0 repository: pulp/pulp-operator - ref: 1.0.0-beta.2 + ref: 1.0.0-beta.3 - name: Install Pulp CRD run: | make install diff --git a/Makefile b/Makefile index c73aaa1fe..cc267ca98 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ WEB_IMAGE ?= quay.io/pulp/pulp-web # 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 ?= 1.0.0-beta.3 +VERSION ?= 1.0.0-beta.4 # CHANNELS define the bundle channels used in the bundle. CHANNELS = "beta" diff --git a/bundle/manifests/pulp-operator.clusterserviceversion.yaml b/bundle/manifests/pulp-operator.clusterserviceversion.yaml index 56fc5dad2..6aef4f2b3 100644 --- a/bundle/manifests/pulp-operator.clusterserviceversion.yaml +++ b/bundle/manifests/pulp-operator.clusterserviceversion.yaml @@ -168,13 +168,13 @@ metadata: capabilities: Full Lifecycle categories: Integration & Delivery containerImage: quay.io/pulp/pulp-operator:devel - createdAt: "2023-11-22T17:16:19Z" + createdAt: "2023-12-04T14:48:41Z" description: Pulp is a platform for managing repositories of software packages and making them available to a large number of consumers. operators.operatorframework.io/builder: operator-sdk-v1.29.0 operators.operatorframework.io/project_layout: go.kubebuilder.io/v3 repository: https://github.com/pulp/pulp-operator - name: pulp-operator.v1.0.0-beta.3 + name: pulp-operator.v1.0.0-beta.4 namespace: placeholder spec: apiservicedefinitions: {} @@ -1301,7 +1301,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.annotations['olm.targetNamespaces'] - image: quay.io/pulp/pulp-operator:v1.0.0-beta.3 + image: quay.io/pulp/pulp-operator:v1.0.0-beta.4 livenessProbe: httpGet: path: /healthz @@ -1613,4 +1613,4 @@ spec: name: pulp-redis - image: docker.io/library/postgres:13 name: pulp-postgres - version: 1.0.0-beta.3 + version: 1.0.0-beta.4 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index add151be6..351751e5b 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -13,4 +13,4 @@ kind: Kustomization images: - name: controller newName: quay.io/pulp/pulp-operator - newTag: v1.0.0-beta.3 + newTag: v1.0.0-beta.4 diff --git a/main.go b/main.go index 7bc9eabb0..28f5e814c 100644 --- a/main.go +++ b/main.go @@ -170,7 +170,7 @@ func main() { os.Exit(1) } - setupLog.Info("pulp-operator version: 1.0.11-beta.3") + setupLog.Info("pulp-operator version: 1.0.0-beta.4") setupLog.Info("starting manager") if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil { setupLog.Error(err, "problem running manager")