Create a file definition/manifest of a deployment called "dep", with 3 replicas that uses the image 'redis'
Answer
k create deploy dep -o yaml --image=redis --dry-run=client --replicas 3 > deployment.yaml
k create deploy dep -o yaml --image=redis --dry-run=client --replicas 3 > deployment.yaml