From bc9bb3e9296a227a86b8c83c18ea4c364e963aef Mon Sep 17 00:00:00 2001 From: XsWack Date: Sat, 26 Aug 2017 03:57:11 +0800 Subject: [PATCH] Update clc.md (#5107) Fix leading spaces in kubectl commands and unified format.This is causing bash/zsh shells to not to record the executed command in the history. --- docs/getting-started-guides/clc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting-started-guides/clc.md b/docs/getting-started-guides/clc.md index 1a9beb0090..a83c37d4da 100644 --- a/docs/getting-started-guides/clc.md +++ b/docs/getting-started-guides/clc.md @@ -186,19 +186,19 @@ Kubernetes Cluster. We hope to add a scripted option to do this soon. Create a cluster with name of k8s_1, 1 master node and 3 worker minions (on physical machines), in VA1 ```shell - bash kube-up.sh --clc_cluster_name=k8s_1 --minion_type=bareMetal --minion_count=3 --datacenter=VA1 +bash kube-up.sh --clc_cluster_name=k8s_1 --minion_type=bareMetal --minion_count=3 --datacenter=VA1 ``` Create a cluster with name of k8s_2, an ha etcd cluster on 3 VMs and 6 worker minions (on VMs), in VA1 ```shell - bash kube-up.sh --clc_cluster_name=k8s_2 --minion_type=standard --minion_count=6 --datacenter=VA1 --etcd_separate_cluster=yes +bash kube-up.sh --clc_cluster_name=k8s_2 --minion_type=standard --minion_count=6 --datacenter=VA1 --etcd_separate_cluster=yes ``` Create a cluster with name of k8s_3, 1 master node, and 10 worker minions (on VMs) with higher mem/cpu, in UC1: ```shell - bash kube-up.sh --clc_cluster_name=k8s_3 --minion_type=standard --minion_count=10 --datacenter=VA1 -mem=6 -cpu=4 +bash kube-up.sh --clc_cluster_name=k8s_3 --minion_type=standard --minion_count=10 --datacenter=VA1 -mem=6 -cpu=4 ```