x86_64-alpine-htpcmgr/Jenkinsfile

38 lines
1021 B
Groovy

podTemplate(yaml: """
kind: Pod
spec:
containers:
- name: kaniko
image: gcr.io/kaniko-project/executor:debug
imagePullPolicy: Always
command:
- /busybox/cat
tty: true
volumeMounts:
- name: jenkins-docker-cfg
mountPath: /kaniko/.docker
volumes:
- name: jenkins-docker-cfg
projected:
sources:
- secret:
name: regcred
items:
- key: .dockerconfigjson
path: config.json
"""
) {
node(POD_LABEL) {
stage('Build with Kaniko') {
git branch: 'master', url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-htpcmgr.git', credentialsId: 'jenkins-to-git''
container('kaniko') {
sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/alpine//htpcmgr:v3.13.1'
}
}
stage('Notify gchat') {
hangoutsNotify message: "Alpine Linux 3.13.1 with HTPC Manager has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false
}
}
}