-
Notifications
You must be signed in to change notification settings - Fork 5
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
#28 | add doc how to install kubectl - helm #44
#28 | add doc how to install kubectl - helm #44
Conversation
|
||
- On Linux (Ubuntu): | ||
|
||
//TODO |
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.
$ curl https://raw.githubusercontent.com/helm/helm/master/scripts/get | bash -s -- -v 2.9.1
|
||
- On Linux (Ubuntu): | ||
|
||
//TODO |
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.
I'm not quite sure the detail steps to remove previous version because there are many way to install it so user must use the installer to remove old version. If they installed by script then here is the way to upgrade
$ curl https://raw.githubusercontent.com/helm/helm/master/scripts/get | bash -s -- -v 2.9.1
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.
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get | bash -s -- -v v2.9.1
|
||
- On Linux (Ubuntu): | ||
|
||
//TODO |
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.
I can't find document about binary to install kubectl on linux 32 bit. So this is only for linux 64 bit only. This script is both for upgrade and install
$ sudo rm /usr/local/bin/kubectl
$ curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.11.0/bin/linux/amd64/kubectl
$ chmod +x ./kubectl
$ sudo mv ./kubectl /usr/local/bin/kubectl
@phuonglm Applied your comments. Please check. |
You can switch to an installed verion, for example, version 2.9.1 | ||
|
||
``` | ||
$ brew switch kubernetes-helm 2.9.1``` |
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.
no need ```
|
||
- homebrew available on macOS | ||
- chocolatey available on Windows | ||
- Ubuntu is preferred Linux distro |
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.
Canonical introduced a new packaging system called Snap packaging in Ubuntu 16.04 LTS. It claims to be more stable and secure.
need at least ubuntu 16.04 for snap available
update in #78 |
@phuonglm Please review and finish TODO
connect #28