Kubernetes

Create a pod called "kartos" in the namespace dev. The pod should be using the "redis" image.

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

If the namespace doesn't exist already: k create ns dev

k run kratos --image=redis -n dev