Kubernetes Training Excercises

From UVOO Tech Wiki
Revision as of 21:25, 14 May 2021 by Busk (talk | contribs) (Created page with "busk-ubuntu.yml ``` apiVersion: v1 kind: Pod metadata: name: busk-ubuntu labels: app: busk-ubuntu spec: containers: - name: ubuntu image: ubuntu:latest com...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

busk-ubuntu.yml

apiVersion: v1
kind: Pod
metadata:
  name: busk-ubuntu
  labels:
    app: busk-ubuntu
spec:
  containers:
  - name: ubuntu
    image: ubuntu:latest
    command: ["/bin/sleep", "365d"]
    imagePullPolicy: IfNotPresent
  restartPolicy: Always
kubectl apply -f busk-ubuntu.yml
kubectl exec --stdin --tty busk-ubuntu -- /bin/bash

Try setting 365d to 5m do something and then see it get wiped