16 lines
586 B
YAML
16 lines
586 B
YAML
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
# this is the jenkins id.
|
|
name: "molgenis-jenkins-dockerhub-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" : "(deprecated by vault) Account used in pipeline builds to push docker images to Docker Hub (hub.docker.com)"
|
|
}
|
|
type: Opaque
|
|
data:
|
|
username: {{ .Values.secret.registry.user | b64enc | quote }}
|
|
password: {{ .Values.secret.registry.password | b64enc | quote }} |