-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile.helm
87 lines (80 loc) · 2.61 KB
/
Jenkinsfile.helm
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
pipeline {
agent any
parameters {
choice(name: 'Action', choices: ['deploy', 'destroy'], description: ' Deploy or Destroy the Helm Chart')
}
stages {
stage('Login') {
steps {
sh '''
#!/bin/bash
set -x
az login -i
az aks get-credentials -n devops-interview-aks -g devops-interview-rg
export KUBECONFIG=/var/lib/jenkins/.kube/config-markp
kubelogin convert-kubeconfig -l msi
set +x
helm list
'''
} // steps
} // stage login
stage ('Git Clone') {
steps {
sh '''
#!/bin/bash
# ensure clean first
rm -rf helm-training || true
git clone https://github.com/maprager/helm-training.git
'''
} // steps
} // stage
stage ('Deploy') {
when {
expression {
params.Action == "deploy"
}
}
steps {
sh '''
#!/bin/bash
az login -i
az aks get-credentials -n devops-interview-aks -g devops-interview-rg
export KUBECONFIG=/var/lib/jenkins/.kube/config-markp
kubelogin convert-kubeconfig -l msi
cd helm-training/helm-chart-sources
echo "DEPLOY"
helm install simple-web helm-chart-test
'''
} // steps
} // stage
stage ('Destroy') {
when {
expression {
params.Action == "destroy"
}
}
steps {
sh '''
#!/bin/bash
az login -i
az aks get-credentials -n devops-interview-aks -g devops-interview-rg
export KUBECONFIG=/var/lib/jenkins/.kube/config-markp
kubelogin convert-kubeconfig -l msi
cd helm-training/helm-chart-sources
echo "DESTROY"
helm uninstall simple-web
'''
} //steps
} // stage
stage ('Cleanup' ) {
steps {
sh '''
#!/bin/bash
# cleanup
cd
rm -rf helm-training || true
'''
} //steps
} // stage
} // stages
} // pipeline