You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

This page is a placeholder for information and processes surrounding Kubernetes (K8).

A quick-start guide can be found here: https://github.com/kubernetes/kubernetes/blob/release-1.1/docs/getting-started-guides/docker.md/

Installing kubectl

The following set of commands can be used to install kubectl on your machine. You may need to change the version number below:

mkdir /home/core/kubectl
cd /home/core/kubectl
curl -L "https://storage.googleapis.com/kubernetes-release/release/v1.1.3/bin/linux/amd64/kubectl" > .
export PATH=$PATH:`pwd`
chmod +x kubectl 
  • No labels