-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeployment.yaml
86 lines (86 loc) · 1.99 KB
/
deployment.yaml
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
kind: Service
apiVersion: v1
metadata:
name: user
namespace: srv
spec:
selector:
app: user
type: ClusterIP
ports:
- protocol: TCP
port: 8080
name: micro
targetPort: 8080
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: user
namespace: srv
labels:
app: user
spec:
replicas: 1
selector:
matchLabels:
app: user
template:
metadata:
labels:
app: user
spec:
serviceAccountName: micro-services
imagePullSecrets:
- name: pipeline-docker-registry
containers:
- name: user
image: ${CICD_IMAGE}:${CICD_EXECUTION_SEQUENCE}
imagePullPolicy: Always
command: [
"service",
"--selector=static",
"--server_address=:8080",
]
env:
- name: ADMIN_PASSWORD
valueFrom:
secretKeyRef:
key: admin-password
name: user
- name: APP_KEY
valueFrom:
secretKeyRef:
key: app-key
name: user
- name: TOKEN_VALIDITY_PERIOD
value: "15"
- name: DB_HOST
value: "user-mariadb"
- name: DB_USER
value: "user"
- name: DB_NAME
value: "user"
- name: DB_PASSWORD
valueFrom:
secretKeyRef:
key: mariadb-password
name: user-mariadb
ports:
- containerPort: 8080
name: micro
protocol: TCP
- name: health
image: microhq/health:kubernetes
command: [
"/health",
"--health_address=0.0.0.0:8081",
"--server_name=user",
"--server_address=0.0.0.0:8080"
]
livenessProbe:
httpGet:
path: /health
port: 8081
initialDelaySeconds: 3
periodSeconds: 3