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

Compare with Current View Page History

« Previous Version 3 Next »

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

A quick-start guide can be found here: http://kubernetes.io/docs/getting-started-guides/docker/

This will set up a Kubernetes cluster running locally on your VM.

Downloading 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/${K8S_VERSION}/bin/linux/amd64/kubectl" > .
export PATH=$PATH:`pwd`
chmod +x kubectl 

Starting a Local Development Cluster

Provided in the source code for NDS Labs is a script called kube-up.sh which will launch a local kubernetes cluster on your machine.

It will also download kubectl for you, as described above, and place it into the ~/bin/ folder.

Deploying a Multi-Node Production Cluster

OpenStack (Nebula)

More information is needed on what would be involved in this process

  • No labels