Kubernetes - Pods
Given this Pod spec snippet, what will be the output of the init container's command?
initContainers: - name: init-echo image: busybox command: ['sh', '-c', 'echo Hello Init']
