Add Replace key for pipeline secrets
This commit is contained in:
parent
c8b1e1965b
commit
03cf1c390b
|
@ -1,4 +1,4 @@
|
|||
{{- if .Values.PipelineSecrets.Env }}
|
||||
{{- if .Values.PipelineSecrets.Env.Replace }}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{{- if .Values.PipelineSecrets.File }}
|
||||
{{- if .Values.PipelineSecrets.File.Replace }}
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
|
|
|
@ -101,6 +101,8 @@ jenkins:
|
|||
# jenkins-agent: v1
|
||||
PipelineSecrets:
|
||||
Env:
|
||||
# Set to false to keep existing secret
|
||||
Replace: true
|
||||
# Passphrase for the pgp private key file
|
||||
pgpPassphrase: xxxx
|
||||
# Token for codecov.io service
|
||||
|
@ -110,6 +112,8 @@ PipelineSecrets:
|
|||
# Token for sonarcloud.io
|
||||
sonarToken: xxxx
|
||||
File:
|
||||
# Set to false to keep existing secret
|
||||
Replace: true
|
||||
# PGP Private key in ascii format used to sign artifacts
|
||||
PGPPrivateKeyAsc: |-
|
||||
-----BEGIN PGP PRIVATE KEY BLOCK-----
|
||||
|
|
Loading…
Reference in New Issue