From deb99595f316c77cd085bf324d5e18d23f24982c Mon Sep 17 00:00:00 2001 From: Shawn Date: Tue, 1 Oct 2024 22:40:23 -0400 Subject: [PATCH 1/3] expose the default value for replace_existing --- charts/cluster-secret/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/cluster-secret/values.yaml b/charts/cluster-secret/values.yaml index f8baa7f..351f929 100644 --- a/charts/cluster-secret/values.yaml +++ b/charts/cluster-secret/values.yaml @@ -4,9 +4,9 @@ image: tag: 0.0.11 # use tag-alt for ARM and other alternative builds - read the readme for more information # If Clustersecret is about to create a secret and then it founds it exists: - # Default is to ignore it. (to not loose any unintentional data) - # It can also reeplace it. Just uncommenting next line. - # replace_existing: 'true' + # Default is to ignore it via false setting. (to not loose any unintentional data) + # It can also be replaced, just set value to true. + replace_existing: 'false' kubernetesClusterDomain: cluster.local From 3c6405761e42edee795ffd6df762e63612c633ef Mon Sep 17 00:00:00 2001 From: Shawn Date: Sat, 12 Oct 2024 12:07:54 -0400 Subject: [PATCH 2/3] chart bump to 0.4.4 --- charts/cluster-secret/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/cluster-secret/Chart.yaml b/charts/cluster-secret/Chart.yaml index 12f9f80..5a1c300 100755 --- a/charts/cluster-secret/Chart.yaml +++ b/charts/cluster-secret/Chart.yaml @@ -3,7 +3,7 @@ name: cluster-secret description: ClusterSecret Operator kubeVersion: '>= 1.25.0-0' type: application -version: 0.4.3 +version: 0.4.4 icon: https://clustersecret.com/assets/csninjasmall.png sources: - https://github.com/zakkg3/ClusterSecret From d1ef40a9a5dc397b884bbf0ade558f835a847384 Mon Sep 17 00:00:00 2001 From: Shawn Date: Sat, 12 Oct 2024 16:41:11 -0400 Subject: [PATCH 3/3] imgVersion 0.0.12 as well --- Makefile | 2 +- charts/cluster-secret/Chart.yaml | 2 +- charts/cluster-secret/README.md | 2 +- charts/cluster-secret/values.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 50f4b66..08fe5ed 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ IMG_NAMESPACE = flag5 IMG_NAME = clustersecret IMG_FQNAME = $(IMG_NAMESPACE)/$(IMG_NAME) -IMG_VERSION = 0.0.11 +IMG_VERSION = 0.0.12 .PHONY: container push clean all: container diff --git a/charts/cluster-secret/Chart.yaml b/charts/cluster-secret/Chart.yaml index 5a1c300..cd332aa 100755 --- a/charts/cluster-secret/Chart.yaml +++ b/charts/cluster-secret/Chart.yaml @@ -7,7 +7,7 @@ version: 0.4.4 icon: https://clustersecret.com/assets/csninjasmall.png sources: - https://github.com/zakkg3/ClusterSecret -appVersion: "0.0.11" +appVersion: "0.0.12" maintainers: - email: zakkg3@gmail.com name: zakkg3 diff --git a/charts/cluster-secret/README.md b/charts/cluster-secret/README.md index c00f493..76f9ce9 100644 --- a/charts/cluster-secret/README.md +++ b/charts/cluster-secret/README.md @@ -57,7 +57,7 @@ Clustersecrets automates this. It keep track of any modification in your secret ## Requirements -Current is 0.0.11 tested on > 1.27.1 +Current is 0.0.12 tested on > 1.27.1 Version 0.0.9 is tested for Kubernetes >= 1.19 up to 1.27.1 For older kubernes (<1.19) use the image tag "0.0.6" in yaml/02_deployment.yaml diff --git a/charts/cluster-secret/values.yaml b/charts/cluster-secret/values.yaml index 351f929..bb845b4 100644 --- a/charts/cluster-secret/values.yaml +++ b/charts/cluster-secret/values.yaml @@ -1,7 +1,7 @@ imagePullSecrets: [] image: repository: quay.io/clustersecret/clustersecret - tag: 0.0.11 + tag: 0.0.12 # use tag-alt for ARM and other alternative builds - read the readme for more information # If Clustersecret is about to create a secret and then it founds it exists: # Default is to ignore it via false setting. (to not loose any unintentional data)