Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
iconfalse
Code Block
kubectl run -itnettools --image=jrecord/nettools nettools --restart=Never --namespace=default sleep 48000
Code Block
apiVersion: v1
kind: Pod
metadata:
  name: nettools
  namespace: default
spec:
  containers:
  - name: nettools
    image: jrecord/nettools:latest
    command:
      - sleep
      - "360048000"
    imagePullPolicy: IfNotPresent
  restartPolicy: Never

...