1
0
Fork 0

added jenkins secret

This commit is contained in:
sido 2018-06-29 23:02:57 +02:00
parent 805b248a19
commit 22a53eca6d
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
apiVersion: v1
kind: Secret
metadata:
# this is the jenkins id.
name: "molgenis-nexus-secret"
labels:
# so we know what type it is.
"jenkins.io/credentials-type": "usernamePassword"
annotations: {
# description - can not be a label as spaces are not allowed
"jenkins.io/credentials-description" : "user to authenticate against NEXUS"
}
type: Opaque
data:
username: {{ "admin" | b64enc | quote }}
password: {{ .Values.PipelineSecrets.Env.NexusPassword | b64enc | quote }}

View File

@ -166,6 +166,8 @@ PipelineSecrets:
GitHubToken: xxxx
# Token for sonarcloud.io
SonarToken: xxxx
# Password Local NEXUS
NexusPassword: xxxx
File:
# Set to false to keep existing secret
Replace: true