-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenidc.yaml
40 lines (40 loc) · 1000 Bytes
/
openidc.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
---
apiVersion: "v1"
kind: "ReplicationController"
metadata:
namespace: kube-system
name: openidc
labels:
name: openidc
spec:
replicas: 1
template:
metadata:
name: "openidc"
labels:
name: openidc
pool: openidcpool
spec:
containers:
-
name: "openidc"
image: mward29/openidc
securityContext:
privileged: true
imagePullPolicy: Always
ports:
- containerPort: 443
volumeMounts:
- mountPath: /etc/kubernetes/ssl
name: ssl-certs-kubernetes
readOnly: true
- mountPath: /etc/ssl/certs
name: ssl-certs-host
readOnly: true
volumes:
- hostPath:
path: /etc/kubernetes/ssl
name: ssl-certs-kubernetes
- hostPath:
path: /usr/share/ca-certificates
name: ssl-certs-host