Newer
Older
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
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
annotations:
kompose.cmd: kompose --file docker-compose.yml convert
kompose.version: 1.17.0 (a74acad)
creationTimestamp: null
labels:
io.kompose.service: rocketchat
name: rocketchat
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
creationTimestamp: null
labels:
io.kompose.service: rocketchat
spec:
containers:
- env:
- name: MAIL_URL
value: smtp://smtp.email
- name: MONGO_OPLOG_URL
value: mongodb://mongo:27017/local
- name: MONGO_URL
value: mongodb://mongo:27017/rocketchat
- name: PORT
value: "3000"
- name: ROOT_URL
value: http://localhost:3000
image: rocketchat/rocket.chat:latest
name: rocketchat
ports:
- containerPort: 3000
resources: {}
volumeMounts:
- mountPath: /app/uploads
name: rocketchat-claim0
restartPolicy: Always
volumes:
- name: rocketchat-claim0
persistentVolumeClaim:
claimName: rocketchat-claim0
status: {}