From 75d6e88a01b5fe677341cbee3ce291729e3d0aae Mon Sep 17 00:00:00 2001 From: yossig-runai <143929074+yossig-runai@users.noreply.github.com> Date: Sun, 27 Oct 2024 12:35:12 +0200 Subject: [PATCH] inc the version to 0.0.2 --- Makefile | 4 ++-- README.md | 2 +- config/manager/kustomization.yaml | 2 +- test/e2e/e2e_test.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index c148de9..cbe2318 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.0.2 LOGLEVEL ?= debug # CHANNELS define the bundle channels used in the bundle. @@ -159,7 +159,7 @@ docker-push: ## Push docker image with the manager. $(CONTAINER_TOOL) push ${IMG} # PLATFORMS defines the target platforms for the manager image be built to provide support to multiple -# architectures. (i.e. make docker-buildx IMG=myregistry/mypoperator:0.0.1). To use this option you need to: +# architectures. (i.e. make docker-buildx IMG=myregistry/mypoperator:0.0.2). To use this option you need to: # - be able to use docker buildx. More info: https://docs.docker.com/build/buildx/ # - have enabled BuildKit. More info: https://docs.docker.com/develop/develop-images/build_enhancements/ # - be able to push the image to your registry (i.e. if you do not set a valid value via IMG=> then the export will fail) diff --git a/README.md b/README.md index 2190f0a..7e9c89a 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ make install ``` or ```sh -kubectl apply -f github.com/run-ai/argo-rollout-config-keeper/rleasses/v0.0.1/argo-rollout-config-keeper.yaml +kubectl apply -f github.com/run-ai/argo-rollout-config-keeper/rleasses/v0.0.2/argo-rollout-config-keeper.yaml ``` diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 5cd0d8f..a3a0ce4 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -5,4 +5,4 @@ kind: Kustomization images: - name: controller newName: docker.io/runaidevops/argo-rollout-config-keeper-operator - newTag: v0.0.1 + newTag: v0.0.2 diff --git a/test/e2e/e2e_test.go b/test/e2e/e2e_test.go index 4b5ebec..d39cf0d 100644 --- a/test/e2e/e2e_test.go +++ b/test/e2e/e2e_test.go @@ -60,7 +60,7 @@ var _ = Describe("controller", Ordered, func() { var err error // projectimage stores the name of the image used in the example - var projectimage = "example.com/argo-rollout-config-keeper:v0.0.1" + var projectimage = "example.com/argo-rollout-config-keeper:v0.0.2" By("building the manager(Operator) image") cmd := exec.Command("make", "docker-build", fmt.Sprintf("IMG=%s", projectimage))