diff --git a/CHANGELOG.md b/CHANGELOG.md index 17a6d12f..c9d6663a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v1.0.1] - 2024-03-22 +### Fixed +- [#169] Fix dogu-operator-crd dependency version. + ## [v1.0.0] - 2024-03-21 + +### Attention +- This release is broken due to an invalid helm dependency version for the `dogu-operator-crd` + ### Added - [#149] Clarified escaping rules for running the operator locally (see [here](docs/development/development_guide_en.md) or [here](.env.template)) diff --git a/Dockerfile b/Dockerfile index f34d8329..282e1933 100644 --- a/Dockerfile +++ b/Dockerfile @@ -38,7 +38,7 @@ RUN make compile-generic FROM gcr.io/distroless/static:nonroot LABEL maintainer="hello@cloudogu.com" \ NAME="k8s-dogu-operator" \ - VERSION="1.0.0" + VERSION="1.0.1" WORKDIR / COPY --from=builder /workspace/target/k8s-dogu-operator . diff --git a/Makefile b/Makefile index 6b478203..aae05212 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Set these to the desired values ARTIFACT_ID=k8s-dogu-operator -VERSION=1.0.0 +VERSION=1.0.1 IMAGE=cloudogu/${ARTIFACT_ID}:${VERSION} GOTAG=1.21 diff --git a/k8s/helm/Chart.yaml b/k8s/helm/Chart.yaml index 507c8b5e..a50b0621 100644 --- a/k8s/helm/Chart.yaml +++ b/k8s/helm/Chart.yaml @@ -26,7 +26,7 @@ appVersion: "0.0.0-replaceme" annotations: # Dependency for the Dogu-CRD. # Allow all versions up to next major version to avoid breaking changes - "k8s.cloudogu.com/ces-dependency/k8s-dogu-operator-crd": "0.x.x-0" + "k8s.cloudogu.com/ces-dependency/k8s-dogu-operator-crd": "1.x.x-0" # For k8s-etcd it is important to include "prerelease"-versions like "3.5.7-4", so there must be a "-0" after the patch-version. # see https://helm.sh/docs/chart_best_practices/dependencies/#prerelease-versions for more information diff --git a/k8s/helm/component-patch-tpl.yaml b/k8s/helm/component-patch-tpl.yaml index 4f3cef85..d9c50be1 100644 --- a/k8s/helm/component-patch-tpl.yaml +++ b/k8s/helm/component-patch-tpl.yaml @@ -1,7 +1,7 @@ apiVersion: v1 values: images: - doguOperator: cloudogu/k8s-dogu-operator:1.0.0 + doguOperator: cloudogu/k8s-dogu-operator:1.0.1 kubeRbacProxy: gcr.io/kubebuilder/kube-rbac-proxy:v0.14.1 chownInitImage: busybox:1.36 patches: diff --git a/k8s/helm/values.yaml b/k8s/helm/values.yaml index d0aabfbf..d561aa2e 100644 --- a/k8s/helm/values.yaml +++ b/k8s/helm/values.yaml @@ -4,7 +4,7 @@ additionalImages: controllerManager: image: repository: cloudogu/k8s-dogu-operator - tag: 1.0.0 + tag: 1.0.1 imagePullPolicy: IfNotPresent env: logLevel: debug