From 301b12c3fceb46d70c3505e3f77d3b2a3c7af118 Mon Sep 17 00:00:00 2001 From: git-hyagi <45576767+git-hyagi@users.noreply.github.com> Date: Thu, 18 Jan 2024 20:33:42 +0000 Subject: [PATCH] Bump version from Makefile to 1.0.0-beta.5 [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 6fc9c881b..1bb818705 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.3 + ref: 1.0.0-beta.4 - name: Install Pulp CRD run: | make install diff --git a/Makefile b/Makefile index cc267ca98..2fa2299ef 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.4 +VERSION ?= 1.0.0-beta.5 # 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 b16cd20a7..79be63573 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: "2024-01-18T20:33:37Z" + createdAt: "2024-01-18T20:33:42Z" 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.4 + name: pulp-operator.v1.0.0-beta.5 namespace: placeholder spec: apiservicedefinitions: {} @@ -1326,7 +1326,7 @@ spec: valueFrom: fieldRef: fieldPath: metadata.annotations['olm.targetNamespaces'] - image: quay.io/pulp/pulp-operator:v1.0.0-beta.4 + image: quay.io/pulp/pulp-operator:v1.0.0-beta.5 livenessProbe: httpGet: path: /healthz @@ -1638,4 +1638,4 @@ spec: name: pulp-redis - image: docker.io/library/postgres:13 name: pulp-postgres - version: 1.0.0-beta.4 + version: 1.0.0-beta.5 diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 351751e5b..b734a9a02 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.4 + newTag: v1.0.0-beta.5 diff --git a/main.go b/main.go index d5edeee47..f025f3c47 100644 --- a/main.go +++ b/main.go @@ -177,7 +177,7 @@ func main() { os.Exit(1) } - setupLog.Info("pulp-operator version: 1.0.2-beta.4") + setupLog.Info("pulp-operator version: 1.0.0-beta.5") setupLog.Info("starting manager") if err := mgr.Start(ctrl.SetupSignalHandler()); err != nil { setupLog.Error(err, "problem running manager")