From 08c49f6d11d97c5eb8d3853db1787c3bef16e1b3 Mon Sep 17 00:00:00 2001 From: Niklas Date: Wed, 18 Sep 2024 15:17:51 +0200 Subject: [PATCH 1/2] Bump version --- Dockerfile | 2 +- Makefile | 2 +- k8s/helm/component-patch-tpl.yaml | 2 +- k8s/helm/values.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 72cc6e82..a254bc7a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,7 +34,7 @@ RUN make compile-generic FROM gcr.io/distroless/static:nonroot LABEL maintainer="hello@cloudogu.com" \ NAME="k8s-blueprint-operator" \ - VERSION="1.0.0" + VERSION="1.1.0" WORKDIR / COPY --from=builder /workspace/target/k8s-blueprint-operator . diff --git a/Makefile b/Makefile index ee40fe1a..a6b32820 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Set these to the desired values ARTIFACT_ID=k8s-blueprint-operator -VERSION=1.0.0 +VERSION=1.1.0 IMAGE=cloudogu/${ARTIFACT_ID}:${VERSION} GOTAG=1.22 MAKEFILES_VERSION=9.0.3 diff --git a/k8s/helm/component-patch-tpl.yaml b/k8s/helm/component-patch-tpl.yaml index e1a5d5cb..34646bea 100644 --- a/k8s/helm/component-patch-tpl.yaml +++ b/k8s/helm/component-patch-tpl.yaml @@ -1,7 +1,7 @@ apiVersion: v1 values: images: - blueprintOperator: cloudogu/k8s-blueprint-operator:1.0.0 + blueprintOperator: cloudogu/k8s-blueprint-operator:1.1.0 kubeRbacProxy: gcr.io/kubebuilder/kube-rbac-proxy:v0.15.0 patches: values.yaml: diff --git a/k8s/helm/values.yaml b/k8s/helm/values.yaml index 7a700195..62352179 100644 --- a/k8s/helm/values.yaml +++ b/k8s/helm/values.yaml @@ -2,7 +2,7 @@ manager: replicas: 1 image: repository: cloudogu/k8s-blueprint-operator - tag: 1.0.0 + tag: 1.1.0 imagePullPolicy: IfNotPresent env: logLevel: info From 47241d5d912fcd579d8714d73da4e08a8724c160 Mon Sep 17 00:00:00 2001 From: Niklas Date: Wed, 18 Sep 2024 15:17:53 +0200 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ffa6fd7..f4da1cd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [v1.1.0] - 2024-09-18 ### Changed - [#79] Relicense to AGPL-3.0-only