From 60a16cfedd8ff69e8746186691da2f09be053cc4 Mon Sep 17 00:00:00 2001 From: Luke Marsden Date: Fri, 8 Sep 2017 09:22:07 +0100 Subject: [PATCH] Replace 'misc' with more specific at-mentions bugs and feature-requests. Replace ReplicaSets with Deployments as example, because ReplicaSets are dated. Generalize join example. --- cmd/kubeadm/app/cmd/cmd.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cmd/kubeadm/app/cmd/cmd.go b/cmd/kubeadm/app/cmd/cmd.go index 5663bbbffc4..a9aa925f9f5 100644 --- a/cmd/kubeadm/app/cmd/cmd.go +++ b/cmd/kubeadm/app/cmd/cmd.go @@ -39,13 +39,14 @@ func NewKubeadmCommand(_ io.Reader, out, err io.Writer) *cobra.Command { │ │ │ But, please try it out! Give us feedback at: │ │ https://github.com/kubernetes/kubeadm/issues │ - │ and at-mention @kubernetes/sig-cluster-lifecycle-misc │ + │ and at-mention @kubernetes/sig-cluster-lifecycle-bugs │ + │ or @kubernetes/sig-cluster-lifecycle-feature-requests │ └──────────────────────────────────────────────────────────┘ Example usage: Create a two-machine cluster with one master (which controls the cluster), - and one node (where your workloads, like Pods and ReplicaSets run). + and one node (where your workloads, like Pods and Deployments run). ┌──────────────────────────────────────────────────────────┐ │ On the first machine │ @@ -56,7 +57,7 @@ func NewKubeadmCommand(_ io.Reader, out, err io.Writer) *cobra.Command { ┌──────────────────────────────────────────────────────────┐ │ On the second machine │ ├──────────────────────────────────────────────────────────┤ - │ node# kubeadm join --token= : │ + │ node# kubeadm join │ └──────────────────────────────────────────────────────────┘ You can then repeat the second step on as many other machines as you like.