-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeployment.yaml
More file actions
32 lines (32 loc) · 896 Bytes
/
deployment.yaml
File metadata and controls
32 lines (32 loc) · 896 Bytes
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
apiVersion: apps/v1
kind: Deployment
metadata:
name: caesar-server-email-consumer
spec:
replicas: 1
selector:
matchLabels:
app: caesar-server-email-consumer
template:
metadata:
labels:
app: caesar-server-email-consumer
CICD_GIT_COMMIT: ${CICD_GIT_COMMIT}
spec:
containers:
- name: caesar-server-email-consumer
image: "caesarteam/caesar-server-email-consumer:${CICD_GIT_BRANCH}"
envFrom:
- configMapRef:
name: rabbitmq-config
- configMapRef:
name: caesarapp-config
- configMapRef:
name: email-consumer-config
- secretRef:
name: email-consumer-secret
- secretRef:
name: rabbitmq-secret
imagePullSecrets:
- name: dockerhub
restartPolicy: Always