-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
47 lines (46 loc) · 1011 Bytes
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
pipeline {
agent {
kubernetes {
yaml """
apiVersion: v1
kind: Pod
metadata:
labels:
jenkins: worker
spec:
containers:
- name: kaniko
image: gcr.io/kaniko-project/executor:debug
command: ["/busybox/cat"]
tty: true
volumeMounts:
- name: kaniko-secret
mountPath: /kaniko/.docker/
volumes:
- name: kaniko-secret
secret:
secretName: regcred-dockerhub
items:
- key: .dockerconfigjson
path: config.json
"""
}
}
stages {
stage('Stage 1: Build with Kaniko') {
steps {
container('kaniko') {
sh '/kaniko/executor --context=https://github.com/marcxm/docker_rainloop.git \
--context `pwd`/ \
--destination=marcxms/rainloop:1.16.0 \
--cleanup \
--insecure \
--skip-tls-verify \
--force \
-v=debug && \
echo `pwd`/ '
}
}
}
}
}