I\'m trying to run my first kubernetes pod locally. I\'ve run the following command (from here):
export ARCH=amd64 docker run -d \\ --volume=/:/rootfs:ro \\
You can specify also imagePullPolicy: Never in the container's spec:
imagePullPolicy: Never
containers: - name: nginx imagePullPolicy: Never image: custom-nginx ports: - containerPort: 80