-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeis-workflow-rc.yml
More file actions
43 lines (43 loc) · 1.03 KB
/
deis-workflow-rc.yml
File metadata and controls
43 lines (43 loc) · 1.03 KB
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
apiVersion: v1
kind: ReplicationController
metadata:
name: deis-workflow
namespace: deis
labels:
heritage: deis
spec:
replicas: 1
selector:
name: deis-workflow
template:
metadata:
labels:
name: deis-workflow
spec:
containers:
- name: deis-workflow
image: quay.io/deisci/workflow:v2-alpha
livenessProbe:
httpGet:
path: /health-check
port: 8000
initialDelaySeconds: 30
timeoutSeconds: 1
imagePullPolicy: Always
env:
- name: DEBUG
value: "true"
- name: DEIS_DATABASE_USER
value: deis
- name: DEIS_DATABASE_PASSWORD
value: changeme123
ports:
- containerPort: 8000
name: http
volumeMounts:
- mountPath: /var/run/docker.sock
name: docker-socket
volumes:
- name: docker-socket
hostPath:
path: /var/run/docker.sock