diff --git a/home/manifests/alpine-playground/kustomization.yaml b/home/manifests/alpine-playground/kustomization.yaml new file mode 100644 index 0000000..f5b0a34 --- /dev/null +++ b/home/manifests/alpine-playground/kustomization.yaml @@ -0,0 +1,5 @@ +--- +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +resources: + - pod.yaml diff --git a/home/manifests/alpine-playground/pod.yaml b/home/manifests/alpine-playground/pod.yaml new file mode 100644 index 0000000..e9e8492 --- /dev/null +++ b/home/manifests/alpine-playground/pod.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +kind: Pod +metadata: + name: alpine-playground + namespace: default + labels: + app: alpine-playground +spec: + containers: + - image: alpine + imagePullPolicy: IfNotPresent + name: alpine-playground + command: ["sh", "-c", "sleep 3600 && exit 1"] + restartPolicy: OnFailure