forked from k-mitevski/kubernetes-validating-webhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebhook-deploy.yaml
42 lines (42 loc) · 927 Bytes
/
webhook-deploy.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
apiVersion: apps/v1
kind: Deployment
metadata:
name: validation-webhook
labels:
app: validate
spec:
replicas: 1
selector:
matchLabels:
app: validate
template:
metadata:
labels:
app: validate
spec:
containers:
- name: webhook
image: ugurozturk99/custodes:${CI_PIPELINE_ID}
ports:
- containerPort: 443
env:
- name: cpu
value: "2"
volumeMounts:
- mountPath: "/app/properties.yaml"
name: config
subPath: "properties.yaml"
- name: certs-volume
readOnly: true
mountPath: "/certs"
imagePullPolicy: Always
volumes:
- name: config
configMap:
name: webhook-cm
items:
- key: "properties.yaml"
path: "properties.yaml"
- name: certs-volume
secret:
secretName: admission-tls