-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtaiga-events-rabbitmq-deployment.yaml
49 lines (49 loc) · 1.39 KB
/
taiga-events-rabbitmq-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
apiVersion: apps/v1
kind: Deployment
metadata:
annotations:
kompose.cmd: kompose convert -f docker-compose.yml
kompose.version: 1.26.1 (a9d05d509)
creationTimestamp: null
labels:
io.kompose.service: taiga-events-rabbitmq
name: taiga-events-rabbitmq
spec:
replicas: 1
selector:
matchLabels:
io.kompose.service: taiga-events-rabbitmq
strategy:
type: Recreate
template:
metadata:
annotations:
kompose.cmd: kompose convert -f docker-compose.yml
kompose.version: 1.26.1 (a9d05d509)
creationTimestamp: null
labels:
io.kompose.network/taiga: "true"
io.kompose.service: taiga-events-rabbitmq
spec:
containers:
- env:
- name: RABBITMQ_DEFAULT_PASS
value: taiga
- name: RABBITMQ_DEFAULT_USER
value: taiga
- name: RABBITMQ_DEFAULT_VHOST
value: taiga
- name: RABBITMQ_ERLANG_COOKIE
value: secret-erlang-cookie
image: rabbitmq:3.8-management-alpine
name: taiga-events-rabbitmq
resources: {}
volumeMounts:
- mountPath: /var/lib/rabbitmq
name: taiga-events-rabbitmq-data
restartPolicy: Always
volumes:
- name: taiga-events-rabbitmq-data
persistentVolumeClaim:
claimName: taiga-events-rabbitmq-data
status: {}