Kubernetes - Pods
Given this Pod spec snippet, what will happen when it is deployed?
apiVersion: v1
kind: Pod
metadata:
name: testpod
spec:
containers:
- name: app
image: busybox
command: ['sleep', '3600']
- name: sidecar
image: busybox
command: ['sleep', '3600']