-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
80 lines (71 loc) · 2.55 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
pipeline {
agent any
environment {
DOCKER_HUB_USER = "hfmartinez"
DOCKER_IMAGE = "fastapi-app"
KUBE_DEPLOYMENT = "fastapi-deployment"
SERVICE_NAME = "fastapi-service"
}
stages {
stage('Code checkout') {
steps {
git 'https://github.com/hfmartinez/FastAPI_app.git'
}
}
stage('Build and publish docker image') {
steps {
script {
def IMAGE_TAG = "$DOCKER_HUB_USER/$DOCKER_IMAGE:latest"
docker.withRegistry('https://index.docker.io/v1/', 'dockerhub') {
sh "docker build -t $IMAGE_TAG ."
sh "docker push $IMAGE_TAG"
}
}
}
}
stage('Blue-Green Deployment') {
steps {
script {
def currentVersion = sh(
script: "kubectl get svc $SERVICE_NAME -o=jsonpath='{.spec.selector.version}'",
returnStdout: true
).trim()
def newVersion = (currentVersion == "blue") ? "green" : "blue"
def IMAGE_TAG = "$DOCKER_HUB_USER/$DOCKER_IMAGE:latest"
sh """
kubectl apply -f - <<EOF
apiVersion: apps/v1
kind: Deployment
metadata:
name: $KUBE_DEPLOYMENT-$newVersion
spec:
replicas: 2
selector:
matchLabels:
app: fastapi
version: $newVersion
template:
metadata:
labels:
app: fastapi
version: $newVersion
spec:
containers:
- name: fastapi
image: $IMAGE_TAG
ports:
- containerPort: 8000
EOF
"""
sh "kubectl patch svc $SERVICE_NAME -p '{\"spec\":{\"selector\":{\"app\":\"fastapi\", \"version\":\"$newVersion\"}}}'"
}
}
}
stage('Validate deployment') {
steps {
sh "kubectl get pods -o wide"
sh "kubectl get svc $SERVICE_NAME"
}
}
}
}