-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeis-builder-rc.yaml
More file actions
57 lines (57 loc) · 1.71 KB
/
deis-builder-rc.yaml
File metadata and controls
57 lines (57 loc) · 1.71 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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-beta
ports:
- containerPort: 2223
- containerPort: 3000
env:
- name: BUILDER_FETCHER_PORT
value: "3000"
- name: BUILDER_SSH_HOST_IP
value: "0.0.0.0"
- name: BUILDER_SSH_HOST_PORT
value: "2223"
- name: "EXTERNAL_PORT"
value: "2223"
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
volumeMounts:
- name: minio-user
mountPath: /var/run/secrets/object/store
readOnly: true
- name: builder-key-auth
mountPath: /var/run/secrets/api/auth
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
- name: builder-key-auth
secret:
secretName: builder-key-auth
# 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