Create a pod called "kartos" in the namespace dev. The pod should be using the "redis" image.
Answer
If the namespace doesn't exist already: k create ns dev
k run kratos --image=redis -n dev
If the namespace doesn't exist already: k create ns dev
k run kratos --image=redis -n dev