如何使用 --dry-运行=client 创建多容器 pods?

How to create mult-container pods using --dry-run=client?

我正在练习 CKAD 考试,运行 遇到一个有趣的多容器容器问题,我似乎找不到答案。假设我 运行 这个命令式命令创建一个 pod.yaml:

kubectl run busybox --image=busybox --dry-run=client -o yaml -- /bin/sh -c 'some commands' > pod.yaml

然后我编辑该 yaml 定义以添加一个只有名称和图像的 sidecar nginx 容器。当我用

创建这个 pod 时
kubectl create -f pod.yaml
kubectl get pods

我得到了一个只有一个 nginx 容器的 pod,尽管 busybox 容器仍然在 pod spec yaml 中定义。我怀疑这是由于 --dry-run=client and/or 运行 命令与 dry 运行 相结合造成的,但我似乎找不到好的答案。提前致谢。

编辑: pod.yaml

apiVersion: v1
kind: Pod
metadata:
  creationTimestamp: null
  labels:
    run: busybox
  name: busybox
spec:
  containers:
  - args:
    - /bin/sh
    - -c
    - while true; do echo ‘Hi I am from Main container’ >> /var/log/index.html; sleep
      5; done
    image: busybox
    name: busybox
    volumeMounts:
    - mountPath: /var/log
      name: log-vol
    image: nginx
    name: nginx
    volumeMounts:
    - mountPath: /usr/share/nginx/html
      name: log-vol
    ports:
    - containerPort: 80
  volumes:
  - name: log-vol
    emptyDir: {}
  dnsPolicy: ClusterFirst
  restartPolicy: Always
status: {}

扩展我的评论:

YAML 中的列表是一系列标有前导 - 的项目,例如 这个字符串列表:

- one
- two
- three

或者这个词典列表:

containers:
  - image: busybox
    name: busybox
  - image: nginx
    name: nginx

甚至这个列表列表:

outerlist:
  -
    - item 1.1
    - item 1.2
    - item 1.3
  -
    - item 2.1
    - item 2.2
    - item 2.3

您的 pod.yaml 在您的 containers 中只有一项 列表。您需要标记第二项:

apiVersion: v1
kind: Pod
metadata:
  creationTimestamp: null
  labels:
    run: busybox
  name: busybox
spec:
  containers:

  - args:
    - /bin/sh
    - -c
    - while true; do echo ‘Hi I am from Main container’ >> /var/log/index.html; sleep
      5; done
    image: busybox
    name: busybox
    volumeMounts:
    - mountPath: /var/log
      name: log-vol

  - image: nginx
    name: nginx
    volumeMounts:
    - mountPath: /usr/share/nginx/html
      name: log-vol
    ports:
    - containerPort: 80
  volumes:
  - name: log-vol
    emptyDir: {}
  dnsPolicy: ClusterFirst
  restartPolicy: Always