-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmutation.glue.yaml
110 lines (109 loc) · 3.48 KB
/
mutation.glue.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
apiVersion: io.javaoperatorsdk.operator.glue/v1beta1
kind: Glue
metadata:
name: mutation-webhook-deployment
spec:
childResources:
- name: service
resource:
apiVersion: v1
kind: Service
metadata:
name: pod-mutating-hook
spec:
ports:
- name: https
port: 443
protocol: TCP
targetPort: 443
selector:
app.kubernetes.io/name: pod-mutating-hook
app.kubernetes.io/version: 0.1.0
type: NodePort
- name: deployment
readyPostCondition:
type: ReadyCondition
resource:
apiVersion: apps/v1
kind: Deployment
metadata:
name: pod-mutating-hook
spec:
replicas: 1
selector:
matchLabels:
app.kubernetes.io/name: pod-mutating-hook
app.kubernetes.io/version: 0.1.0
template:
metadata:
labels:
app.kubernetes.io/name: pod-mutating-hook
app.kubernetes.io/version: 0.1.0
namespace: default
spec:
containers:
- env:
- name: KUBERNETES_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: QUARKUS_HTTP_SSL_CERTIFICATE_KEY_STORE_FILE
value: /etc/certs/keystore.p12
- name: QUARKUS_HTTP_SSL_CERTIFICATE_KEY_STORE_FILE_TYPE
value: PKCS12
- name: QUARKUS_HTTP_SSL_CERTIFICATE_KEY_STORE_PASSWORD
valueFrom:
secretKeyRef:
key: password
name: pkcs12-pass
image: ghcr.io/csviri/sample-pod-mutating-webhook:0.1.0
imagePullPolicy: IfNotPresent
name: pod-mutating-hook
ports:
- containerPort: 443
name: https
protocol: TCP
volumeMounts:
- mountPath: /etc/certs
name: sample-pod-mutating-webhook
readOnly: true
serviceAccountName: pod-mutating-hook
volumes:
- name: sample-pod-mutating-webhook
secret:
optional: false
secretName: tls-secret
- name: mutation_hook_config
clusterScoped: true
dependsOn:
- deployment
- service
resource:
apiVersion: admissionregistration.k8s.io/v1
kind: MutatingWebhookConfiguration
metadata:
annotations:
cert-manager.io/inject-ca-from: default/sample-pod-mutating-webhook
name: pod-mutating-webhook
webhooks:
- admissionReviewVersions:
- v1
clientConfig:
service:
name: pod-mutating-hook
namespace: default
path: /mutate
failurePolicy: Fail
name: sample.mutating.webhook
rules:
- apiGroups:
- ""
apiVersions:
- v1
operations:
- UPDATE
- CREATE
resources:
- pods
sideEffects: None
timeoutSeconds: 5