Files
kubernetes-course/mutatingwebhook/pod.yaml
Edward Viaene 7598823bf9 mutatingwebhook (#23)
* mutatingwebhook
2021-01-20 13:47:42 +01:00

14 lines
239 B
YAML

apiVersion: v1
kind: Pod
metadata:
namespace: testmutatingwebhook
name: ubuntu
labels:
app: ubuntu
spec:
containers:
- name: ubuntu
image: ubuntu:latest
command: ["/bin/sleep", "1d"]
imagePullPolicy: IfNotPresent