mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-05-17 21:46:33 +00:00
14 lines
239 B
YAML
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
|