Skip to content

Commit

Permalink
fix(charts): refactor secretName -> existingSecretName
Browse files Browse the repository at this point in the history
Signed-off-by: Thibault Camalon <[email protected]>
  • Loading branch information
thbcmlowk committed Jul 4, 2024
1 parent 80d354c commit e802fe1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/substra-backend/templates/secret-add-account.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if not .Values.addAccountOperator.secretName }}
{{- if not .Values.addAccountOperator.existingSecretName }}
apiVersion: v1
kind: Secret
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/substra-backend/templates/secret-database.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if not .Values.database.auth.secretName }}
{{- if not .Values.database.auth.existingSecretName }}
apiVersion: v1
kind: Secret
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/substra-backend/templates/secret-objectstore.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if or (not .Values.minio.auth.secretName) .Values.localstack.enabled }}
{{- if or (not .Values.minio.auth.existingSecretName) .Values.localstack.enabled }}
apiVersion: v1
kind: Secret
metadata:
Expand Down
2 changes: 1 addition & 1 deletion charts/substra-backend/templates/secret-redis.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if not .Values.redis.auth.secretName }}
{{- if not .Values.redis.auth.existingSecretName }}
apiVersion: v1
kind: Secret
metadata:
Expand Down

0 comments on commit e802fe1

Please sign in to comment.