Skip to content

Commit d6d9fcd

Browse files
authored
Merge pull request #410 from concourse/disable-redact-secrets
add CONCOURSE_DISABLE_REDACT_SECRETS
2 parents 80d4cdf + dd583a7 commit d6d9fcd

2 files changed

Lines changed: 12 additions & 3 deletions

File tree

templates/web-deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,10 @@ spec:
222222
- name: CONCOURSE_ENABLE_REDACT_SECRETS
223223
value: {{ .Values.concourse.web.enableRedactSecrets | quote }}
224224
{{- end }}
225+
{{- if .Values.concourse.web.disableRedactSecrets }}
226+
- name: CONCOURSE_DISABLE_REDACT_SECRETS
227+
value: {{ .Values.concourse.web.disableRedactSecrets | quote }}
228+
{{- end }}
225229
{{- if .Values.concourse.web.secretRetryAttempts }}
226230
- name: CONCOURSE_SECRET_RETRY_ATTEMPTS
227231
value: {{ .Values.concourse.web.secretRetryAttempts | quote }}

values.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,11 +114,11 @@ concourse:
114114
##
115115
enableBuildRerunWhenWorkerDisappears: false
116116

117-
## Enable the experimental across step to be used in jobs. The API is subject to change.
117+
## DEPRECATED - Across step is always enabled
118118
##
119119
enableAcrossStep: false
120120

121-
## Enable the creation of instanced pipelines.
121+
## DEPRECATED - Pipeline instances are always enabled
122122
##
123123
enablePipelineInstances: false
124124

@@ -188,10 +188,15 @@ concourse:
188188
##
189189
enableVolumeAuditing: false
190190

191-
## Enable redacting secrets in build logs.
191+
## DEPRECATED: Secret redaction is on by default.
192+
## See disableRedactSecrets to turn it off.
192193
##
193194
enableRedactSecrets:
194195

196+
## Disable redacting secrets in build logs.
197+
##
198+
disableRedactSecrets:
199+
195200
## The number of attempts secret will be retried to be fetched,
196201
## in case a retryable error happens.
197202
##

0 commit comments

Comments
 (0)