Kubernetes

Create a file definition/manifest of a deployment called "dep", with 3 replicas that uses the image 'redis'

Difficulty: unrated

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

Answer

k create deploy dep -o yaml --image=redis --dry-run=client --replicas 3 > deployment.yaml