1
0
Fork 0
molgenis-ops-docker-helm/molgenis-jenkins/templates/molgenis-jenkins-github-sec...

16 lines
522 B
YAML
Raw Normal View History

2018-06-29 00:15:41 +02:00
apiVersion: v1
kind: Secret
metadata:
# this is the jenkins id.
name: "molgenis-jenkins-github-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" : "oauth token for the molgenis-jenkins github user"
}
type: Opaque
data:
username: {{ "molgenis-jenkins" | b64enc | quote }}
2018-06-29 12:58:45 +02:00
password: {{ .Values.PipelineSecrets.Env.GitHubToken | b64enc | quote }}