first commit
This commit is contained in:
56
admissioncontrollers/introduction/deployment.yaml
Normal file
56
admissioncontrollers/introduction/deployment.yaml
Normal file
@@ -0,0 +1,56 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: example-webhook
|
||||
namespace: default
|
||||
spec:
|
||||
selector:
|
||||
app: example-webhook
|
||||
ports:
|
||||
- port: 443
|
||||
targetPort: tls
|
||||
name: application
|
||||
- port: 80
|
||||
targetPort: metrics
|
||||
name: metrics
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: example-webhook
|
||||
namespace: default
|
||||
labels:
|
||||
app: example-webhook
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: example-webhook
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: example-webhook
|
||||
spec:
|
||||
nodeSelector:
|
||||
kubernetes.io/os: linux
|
||||
serviceAccountName: example-webhook
|
||||
securityContext:
|
||||
runAsNonRoot: true
|
||||
runAsUser: 1234
|
||||
containers:
|
||||
- name: server
|
||||
image: aimvector/example-webhook:v1
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- containerPort: 8443
|
||||
name: tls
|
||||
- containerPort: 80
|
||||
name: metrics
|
||||
volumeMounts:
|
||||
- name: webhook-tls-certs
|
||||
mountPath: /etc/webhook/certs/
|
||||
readOnly: true
|
||||
volumes:
|
||||
- name: webhook-tls-certs
|
||||
secret:
|
||||
secretName: example-webhook-tls
|
||||
Reference in New Issue
Block a user