forked from sonata-nfv/tng-sp-ia-wtapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
127 lines (127 loc) · 3.8 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
pipeline {
agent any
stages {
stage('Container Build') {
parallel {
stage('Container Build') {
steps {
echo 'Building...'
}
}
stage('Building tng-sp-ia-wtapi') {
steps {
sh 'docker build -t registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi .'
}
}
}
}
stage('Unit Test') {
parallel {
stage('Unit Tests') {
steps {
echo 'Performing Unit Tests'
}
}
stage('Running Unit Tests') {
steps {
echo 'TODO'
}
}
}
}
stage('Containers Publication') {
parallel {
stage('Containers Publication') {
steps {
echo 'Publication of containers in local registry....'
}
}
stage('Publishing tng-sp-ia-wtapi') {
steps {
sh 'docker push registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi'
}
}
}
}
stage('Deployment in Integration') {
parallel {
stage('Deployment in Integration') {
steps {
echo 'Deploying in integration...'
}
}
stage('Deploying') {
steps {
sh 'rm -rf tng-devops || true'
sh 'git clone https://github.com/sonata-nfv/tng-devops.git'
dir(path: 'tng-devops') {
sh 'ansible-playbook roles/sp.yml -i environments -e "target=pre-int-sp component=infrastructure-abstraction"'
}
}
}
}
}
stage('Promoting containers to integration env') {
when {
branch 'master'
}
parallel {
stage('Publishing containers to int') {
steps {
echo 'Promoting containers to integration'
}
}
stage('tng-sp-ia-wtapi') {
steps {
sh 'docker tag registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi:latest registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi:int'
sh 'docker push registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi:int'
}
}
stage('Promoting to integration') {
when {
branch 'master'
}
steps {
sh 'docker tag registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi:latest registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi:int'
sh 'docker push registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi:int'
sh 'rm -rf tng-devops || true'
sh 'git clone https://github.com/sonata-nfv/tng-devops.git'
dir(path: 'tng-devops') {
sh 'ansible-playbook roles/sp.yml -i environments -e "target=int-sp component=infrastructure-abstraction"'
}
}
}
}
}
stage('Promoting release v5.0') {
when {
branch 'v5.0'
}
stages {
stage('Generating release') {
steps {
sh 'docker tag registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi:latest registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi:v5.0'
sh 'docker tag registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi:latest sonatanfv/tng-sp-ia-wtapi:v5.0'
sh 'docker push registry.sonata-nfv.eu:5000/tng-sp-ia-wtapi:v5.0'
sh 'docker push sonatanfv/tng-sp-ia-wtapi:v5.0'
}
}
stage('Deploying in v5.0 servers') {
steps {
sh 'rm -rf tng-devops || true'
sh 'git clone https://github.com/sonata-nfv/tng-devops.git'
dir(path: 'tng-devops') {
sh 'ansible-playbook roles/sp.yml -i environments -e "target=sta-sp-v5-0 component=infrastructure-abstraction"'
sh 'ansible-playbook roles/vnv.yml -i environments -e "target=sta-vnv-v5-0 component=infrastructure-abstraction"'
}
}
}
}
}
}
post {
always {
echo 'TODO'
}
}
}