Skip to content

Commit

Permalink
Merge pull request #145 from NerdyShawn/replaceExistingChartValuesExpose
Browse files Browse the repository at this point in the history
expose the default value for replace_existing
  • Loading branch information
zakkg3 authored Oct 13, 2024
2 parents 4e1ee27 + 6b70538 commit 706766b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions charts/cluster-secret/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ 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
appVersion: "0.0.11"
appVersion: "0.0.12"
maintainers:
- email: [email protected]
name: zakkg3
2 changes: 1 addition & 1 deletion charts/cluster-secret/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 5 additions & 4 deletions charts/cluster-secret/values.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
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. (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


Expand Down

0 comments on commit 706766b

Please sign in to comment.