Hello, Can we have a single container with multiple image like nginx + Redis + m . . .

Laxminarayana Rajula:
Hello,
Can we have a single container with multiple image like nginx + Redis + memcached ? Is this possible? if yes, how to create it,. Any way interactive or yaml based ? please share the yaml file if possible

Shane McGovern:
in the exam just do a

k run multi-pod --image:nginx --dry-run -o yaml 

Then use vi to just add

- name: redis
  image: redis

as list items within the container

Laxminarayana Rajula:
ok, thanks !!

sandeep dosapati:
This will create multiple containers inside a pod, but the requirement is to assign multiple images to a single container