-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeis-builder-rc.yaml
More file actions
41 lines (41 loc) · 1.1 KB
/
deis-builder-rc.yaml
File metadata and controls
41 lines (41 loc) · 1.1 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
apiVersion: v1
kind: ReplicationController
metadata:
name: deis-builder
labels:
heritage: deis
spec:
replicas: 1
selector:
app: deis-builder
template:
metadata:
labels:
app: deis-builder
spec:
containers:
- name: deis-builder
imagePullPolicy: Always
image: quay.io/deisci/builder:v2-alpha
ports:
- containerPort: 2223
- containerPort: 3000
env:
- name: "EXTERNAL_PORT"
value: "2223"
volumeMounts:
- name: minio-user
mountPath: /var/run/secrets/object/store
readOnly: true
# not currently running minio with SSL support. see https://github.com/deis/minio/pull/22 for more detail
# - name: minio-ssl
# mountPath: /var/run/secrets/object/ssl
# readOnly: true
volumes:
- name: minio-user
secret:
secretName: minio-user
# not currently running minio with SSL support. see https://github.com/deis/minio/pull/22 for more detail
# - name: minio-ssl
# secret:
# secretName: minio-ssl