Running Containers with Kubernetes
Create an Nginx Pod to Function as a Simple Web Server
Create a Pod running a container with the
nginx
imageExpose port 80 in order to communicate with Nginx once it is running
nginx-pod.yml
Run a Redis Instance Using a Kubernetes Pod
Create a Pod running a container with the
redis
image
redis-pod.yml
Check Nginx Container Logs
View the logs from the Nginx container
Last updated