Hi,, Is there anyway to create a pod with many image like " nginx+busybox+alpine . . .

Roshan Ranasinghe:
Hi, Is there anyway to create a pod with many image like " nginx+busybox+alpine " ?

vishwanath:
Yes. You can use below format in your yaml

containers:
- name: nginx
image: nginx
- name: debian
image: debian

Mohamed Ayman:
Check the Multi Container PODs lecture in the course.

Roshan Ranasinghe:
thanks guys

Mohamed Ayman:
You’re welcome.
Also check this note in the documentation:
https://kubernetes.io/docs/tasks/access-application-cluster/communicate-containers-same-pod-shared-volume/#discussion