From 966e4640c0db0d5a98bbcbb7c270cfdd76bcfc9f Mon Sep 17 00:00:00 2001 From: Taylor Bot Date: Wed, 23 Oct 2024 14:47:13 +0100 Subject: [PATCH] Release v0.12.1 (#173) * Release v0.12.1 * namefix --------- Co-authored-by: Spyros Synodinos <138458697+ssyno@users.noreply.github.com> Co-authored-by: Spyros Synodinos --- CHANGELOG.md | 6 +++++- helm/teleport-operator/Chart.yaml | 2 +- helm/teleport-operator/templates/tbot-configmap.yaml | 2 +- helm/teleport-operator/templates/tbot-deployment.yaml | 2 +- helm/teleport-operator/templates/tbot-networkpolicy.yaml | 2 +- helm/teleport-operator/values.schema.json | 2 +- helm/teleport-operator/values.yaml | 2 +- 7 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 797a083c..ce653acf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.12.1] - 2024-10-23 + ### Added - Added enable/disable switch on `tbot` components @@ -166,7 +169,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2023-08-09 -[Unreleased]: https://github.com/giantswarm/teleport-operator/compare/v0.12.0...HEAD +[Unreleased]: https://github.com/giantswarm/teleport-operator/compare/v0.12.1...HEAD +[0.12.1]: https://github.com/giantswarm/teleport-operator/compare/v0.12.0...v0.12.1 [0.12.0]: https://github.com/giantswarm/teleport-operator/compare/v0.11.2...v0.12.0 [0.11.2]: https://github.com/giantswarm/teleport-operator/compare/v0.11.1...v0.11.2 [0.11.1]: https://github.com/giantswarm/teleport-operator/compare/v0.11.0...v0.11.1 diff --git a/helm/teleport-operator/Chart.yaml b/helm/teleport-operator/Chart.yaml index 57320826..140eef20 100644 --- a/helm/teleport-operator/Chart.yaml +++ b/helm/teleport-operator/Chart.yaml @@ -1,5 +1,5 @@ name: teleport-operator -version: 0.12.0 +version: 0.12.1 description: "Teleport operator" home: "https://github.com/giantswarm/teleport-operator" apiVersion: v1 diff --git a/helm/teleport-operator/templates/tbot-configmap.yaml b/helm/teleport-operator/templates/tbot-configmap.yaml index b2f1bb29..61622784 100644 --- a/helm/teleport-operator/templates/tbot-configmap.yaml +++ b/helm/teleport-operator/templates/tbot-configmap.yaml @@ -1,4 +1,4 @@ -{{- if .Values.tbot-deployment.enabled }} +{{- if .Values.tbotDeployment.enabled }} apiVersion: v1 kind: ConfigMap metadata: diff --git a/helm/teleport-operator/templates/tbot-deployment.yaml b/helm/teleport-operator/templates/tbot-deployment.yaml index 2d1f21c2..79bd16ce 100644 --- a/helm/teleport-operator/templates/tbot-deployment.yaml +++ b/helm/teleport-operator/templates/tbot-deployment.yaml @@ -1,4 +1,4 @@ -{{- if .Values.tbot-deployment.enabled }} +{{- if .Values.tbotDeployment.enabled }} apiVersion: apps/v1 kind: Deployment metadata: diff --git a/helm/teleport-operator/templates/tbot-networkpolicy.yaml b/helm/teleport-operator/templates/tbot-networkpolicy.yaml index 659522d0..87025469 100644 --- a/helm/teleport-operator/templates/tbot-networkpolicy.yaml +++ b/helm/teleport-operator/templates/tbot-networkpolicy.yaml @@ -1,4 +1,4 @@ -{{- if .Values.tbot-deployment.enabled }} +{{- if .Values.tbotDeployment.enabled }} {{- if .Values.ciliumNetworkPolicy.enabled }} apiVersion: cilium.io/v2 kind: CiliumNetworkPolicy diff --git a/helm/teleport-operator/values.schema.json b/helm/teleport-operator/values.schema.json index a02cfc49..5c994f70 100644 --- a/helm/teleport-operator/values.schema.json +++ b/helm/teleport-operator/values.schema.json @@ -164,7 +164,7 @@ } } }, - "tbot-deployment": { + "tbotDeployment": { "type": "object", "properties": { "enabled": { diff --git a/helm/teleport-operator/values.yaml b/helm/teleport-operator/values.yaml index 6fd8892c..6ae855de 100644 --- a/helm/teleport-operator/values.yaml +++ b/helm/teleport-operator/values.yaml @@ -69,5 +69,5 @@ tbot: enabled: false # Enables `teleport-operator-tbot` deployment -tbot-deployment: +tbotDeployment: enabled: true