Does anyone have examples dir ne regarding multiple Images in a Container and si . . .

Samir:
Does anyone have examples dir ne regarding multiple Images in a Container and side car Container ? I am not sure how to create that

Fernando Jimenez:
Hi @Samir There is nothing special about it, just add another image under containers.

apiVersion: v1
kind: Pod
metadata:
  name: sidecar-container-demo
spec:
  containers:
  - image: busybox
    name: sidecar-container
    command:
    - sleep
    - "4800"
  - image: nginx
    name: main-container

Samir:
But that are two container of