K8S busybox yaml

1. busybox pod yaml

apiVersion: v1
kind: Pod
metadata:
  name: busybox
  namespace: default
spec:
  containers:
  - image: busybox
    command:
      - sleep
      - "3600"
    imagePullPolicy: IfNotPresent
    name: busybox
  restartPolicy: Always

  

posted @ 2021-06-16 09:14  一个门外汉  阅读(1519)  评论(0编辑  收藏  举报