Deploying multi-container pod in Kubernetes

Newbie here, I am trying to run two containers in a pod. I need them in the "dev" namespace. Here is my YAML: kind: Deployment apiVersion: apps/v1 metadata: name: test-deployment namespace: dev spec: selector: matchLabels: deploy: example template: metadata: labels: deploy: example spec: containers: – name: nginx image: nginx:latest – name: busybox image: busybox:1.34 I… Read More Deploying multi-container pod in Kubernetes