From edc2be4353abdbc77ca59b12a34180b39f59d186 Mon Sep 17 00:00:00 2001 From: mi Date: Mon, 24 Apr 2017 10:02:05 +0800 Subject: [PATCH] fix output replication-controller and daemon-set --- docs/user-guide.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/user-guide.md b/docs/user-guide.md index 164ee789..1e378ce3 100644 --- a/docs/user-guide.md +++ b/docs/user-guide.md @@ -251,17 +251,17 @@ file "web-deployment.json" created The `*-deployment.json` files contain the Deployment objects. ```console -$ kompose convert --rc +$ kompose convert --replication-controller file "redis-svc.yaml" created file "web-svc.yaml" created -file "redis-rc.yaml" created -file "web-rc.yaml" created +file "redis-replicationcontroller.yaml" created +file "web-replicationcontroller.yaml" created ``` -The `*-rc.yaml` files contain the Replication Controller objects. If you want to specify replicas (default is 1), use `--replicas` flag: `$ kompose convert --rc --replicas 3` +The `*-replicationcontroller.yaml` files contain the Replication Controller objects. If you want to specify replicas (default is 1), use `--replicas` flag: `$ kompose convert --replication-controller --replicas 3` ```console -$ kompose convert --ds +$ kompose convert --daemon-set file "redis-svc.yaml" created file "web-svc.yaml" created file "redis-daemonset.yaml" created