Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

expose the default value for replace_existing #145

Merged
merged 4 commits into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading