-
Notifications
You must be signed in to change notification settings - Fork 2
/
Jenkinsfile
49 lines (46 loc) · 1.07 KB
/
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
48
49
#!/usr/bin/env groovy
pipeline {
environment {
registry = "docker pull soumyarout80/task_adjust"
registryCredential = '******'
}
agent { label 'master' }
stages {
stage ('Checkout') {
steps{
git clone "https://github.com/soumyarout80/k8s_deployment.git"
}
}
stage ('Docker Build and Docker Push') {
steps{
script {
sh "docker log -u soumyarout80 -p *******"
}
}
steps{
sh "pwd"
sh "ansible-playbook ansible/docker_build.yml"
}
}
stage ('Test latest build') {
steps{
script {
sh "echo 'Testing newly build image'"
}
}
}
stage ('Docker tag as latest') {
steps{
script {
sh "echo 'If it is a stable build the tag as latest and push'"
sh "ansible-playbook ansible/docker_latest_tag.yml"
}
}
}
stage ('Kubernetes Deploy') {
steps{
sh "ansible-playbook ansible/main.yml"
}
}
}
}