Kubernetes - Pods
Given this Pod spec snippet, what will happen when the Pod starts?
initContainers: - name: wait-for-db image: busybox command: ['sh', '-c', 'until nslookup db-service; do echo waiting; sleep 2; done'] containers: - name: app image: myapp
