STATUS CrashLoopBackOff
CrashLoopBackOff and no log appears. This happens as the container has no command to run so it start up and then immediately exits.
Give your image a command.
apiVersion: v1
kind: Pod
metadata:
name: twocontainers
spec:
containers:
- name: container1
image: python:3.6-alpine
command: ['sh', '-c', 'echo cont1 > index.html && python -m http.server 8082']
- name: container2
image: python:3.6-alpine
command: ['sh', '-c', 'echo cont1 > index.html && python -m http.server 8083']