-
Notifications
You must be signed in to change notification settings - Fork 0
/
deployment.yaml
56 lines (56 loc) · 1.39 KB
/
deployment.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
apiVersion: apps/v1
kind: Deployment
metadata:
name: kubeseal-caddy
labels:
app: kubeseal-caddy
spec:
selector:
matchLabels:
app: kubeseal-caddy
template:
metadata:
labels:
app: kubeseal-caddy
spec:
initContainers:
- name: kubesesal-init-export
image: ilirbekteshi/kubeseal
command: ["/bin/sh"]
args:
- -c
- /usr/local/bin/kubeseal --fetch-cert > /www/cert.pem
volumeMounts:
- name: www
mountPath: /www
containers:
- name: caddy
image: caddy/caddy:alpine
ports:
- name: http
containerPort: 80
protocol: TCP
volumeMounts:
- name: www
mountPath: /www
readOnly: true
- name: config
mountPath: /etc/caddy
livenessProbe:
httpGet:
path: /
port: http
resources:
requests:
memory: "64Mi"
cpu: "100m"
limits:
memory: "128Mi"
cpu: "200m"
volumes:
- name: www
persistentVolumeClaim:
claimName: kubeseal-certs
- name: "config"
configMap:
name: "caddy-configmap"