-
Notifications
You must be signed in to change notification settings - Fork 15k
Automated way of cluster setup added #73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
With the purpose of easier deployment of libvirt-coreos Kubernetes cluster with the default settings, the way of installing using the automated script from https://get.k8s.io/ has been added.
|
||
To start and setup your local CoreOS-Kubernetes cluster the following command might be easily runned: | ||
|
||
`export KUBERNETES_PROVIDER=libvirt-coreos; wget -q -O - https://get.k8s.io | bash` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Replace with:
125 ```shell
126 export KUBERNETES_PROVIDER=libvirt-coreos; wget -q -O - https://get.k8s.io | bash
127 ```
@johndmulhausen - should I create a new PR with the described fixes or I have possibility to fix in an existing one? Thank you. |
Hi @idvoretskyi, apologies I missed your question. You can reuse this PR! When you created this PR, it also created a fork of our repo, which is your copy to play with. Just address any issues and make any changes in this copy and this PR will be automatically updated. :) |
Followed the recommendations in #73
@johndmulhausen thank you for your recommendations, I've updated the PR. |
I tried the commands myself and was successful so I'm calling that a good tech review. :) |
* Add new blog Signed-off-by: AsterNighT <klxjt99@outlook.com> * Update headers Signed-off-by: AsterNighT <klxjt99@outlook.com> * Address comments Signed-off-by: AsterNighT <klxjt99@outlook.com> * Address comments Signed-off-by: AsterNighT <klxjt99@outlook.com>
Better wording + fix typo in FAQs
With the purpose of easier deployment of libvirt-coreos Kubernetes cluster with the default settings, the way of installing using the automated script from https://get.k8s.io/ has been added.