mmumshad / kubernetes-the-hard-way

Bootstrap Kubernetes the hard way on Vagrant on Local Machine. No scripts.
Apache License 2.0
4.7k stars 4.54k forks source link

typo erros in below section #134

Closed saikantgajula closed 2 years ago

saikantgajula commented 4 years ago

Below command has typo's. Please correct it.

Copy the appropriate admin.kubeconfig, kube-controller-manager and kube-scheduler kubeconfig files to each controller instance:

for instance in master-1 master-2; do scp admin.kubeconfig kube-controller-manager.kubeconfig kube-scheduler.kubeconfig ${instance}:~/ done

Correct command.

for instance in master-1 master-2; do
  scp admin.kubeconfig kube-controller-manager  kube-scheduler  ${instance}:~/
done
fireflycons commented 2 years ago

Hi @saikantgajula

We have now merged a major change to bring this to v1.24. Many issues have been addressed as part of the upgrade. Please try it now and feel free to raise further issues.

Thanks.