-
Notifications
You must be signed in to change notification settings - Fork 2
/
JenkinsFile
71 lines (60 loc) · 2.24 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
pipeline{
agent any
options {
buildDiscarder(logRotator(numToKeepStr: '5'))
}
stages{
stage('Checkout source'){
steps{
git branch: 'a3-release',
url: 'https://github.com/airavata-courses/orion'
}
}
stage('Deploy kubernetes'){
steps{
sshagent(credentials:['kubernetes']){
sh '''
sudo apt-get install sshpass
ssh -i ubuntu@149.165.155.203 << EOF
cd orion/orion/
whoami
./dockerHubPush.sh
kubectl delete -f rabbitmq.yaml
cd ui-service/
kubectl delete -f ui.yaml
cd ..
cd weather-data-ingestor-microservice/
kubectl delete -f ingestor.yaml
cd ..
cd gateway-service/
kubectl delete -f gateway.yaml
cd ..
cd plot-weather-microservice/
kubectl delete -f plot.yaml
cd ..
cd merra-plot-microservice/
kubectl delete -f plot.yaml
cd ..
kubectl apply -f rabbitmq.yaml
cd ui-service/
kubectl apply -f ui.yaml
cd ..
cd weather-data-ingestor-microservice/
kubectl apply -f ingestor.yaml
cd ..
cd gateway-service/
kubectl apply -f gateway.yaml
cd ..
cd plot-weather-microservice/
kubectl apply -f plot.yaml
cd ..
cd merra-plot-microservice/
kubectl apply -f plot.yaml
exit
EOF'''
}
echo "success deploy"
}
}
}
}