Skip to content

Commit 706766b

Browse files
authored
Merge pull request #145 from NerdyShawn/replaceExistingChartValuesExpose
expose the default value for replace_existing
2 parents 4e1ee27 + 6b70538 commit 706766b

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
IMG_NAMESPACE = flag5
22
IMG_NAME = clustersecret
33
IMG_FQNAME = $(IMG_NAMESPACE)/$(IMG_NAME)
4-
IMG_VERSION = 0.0.11
4+
IMG_VERSION = 0.0.12
55

66
.PHONY: container push clean
77
all: container

charts/cluster-secret/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name: cluster-secret
33
description: ClusterSecret Operator
44
kubeVersion: '>= 1.25.0-0'
55
type: application
6-
version: 0.4.3
6+
version: 0.4.4
77
icon: https://clustersecret.com/assets/csninjasmall.png
88
sources:
99
- https://github.com/zakkg3/ClusterSecret
10-
appVersion: "0.0.11"
10+
appVersion: "0.0.12"
1111
maintainers:
1212
1313
name: zakkg3

charts/cluster-secret/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Clustersecrets automates this. It keep track of any modification in your secret
5757

5858
## Requirements
5959

60-
Current is 0.0.11 tested on > 1.27.1
60+
Current is 0.0.12 tested on > 1.27.1
6161
Version 0.0.9 is tested for Kubernetes >= 1.19 up to 1.27.1
6262

6363
For older kubernes (<1.19) use the image tag "0.0.6" in yaml/02_deployment.yaml

charts/cluster-secret/values.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
imagePullSecrets: []
22
image:
33
repository: quay.io/clustersecret/clustersecret
4-
tag: 0.0.11
4+
tag: 0.0.12
5+
# use tag-alt for ARM and other alternative builds - read the readme for more information
56
# If Clustersecret is about to create a secret and then it founds it exists:
6-
# Default is to ignore it. (to not loose any unintentional data)
7-
# It can also reeplace it. Just uncommenting next line.
8-
# replace_existing: 'true'
7+
# Default is to ignore it via false setting. (to not loose any unintentional data)
8+
# It can also be replaced, just set value to true.
9+
replace_existing: 'false'
910
kubernetesClusterDomain: cluster.local
1011

1112

0 commit comments

Comments
 (0)