Kubernauts Kops Faststart
  • Introduction
  • Overview
    • Introduction
    • Pre-Requisites
  • Labs
    • Install Kops
    • Install Kubectl
    • Configure AWS
    • Create First Cluster
    • Deploy Dashboard
    • Create Additional Clusters
    • Advanced HA deployment
    • Deploy (existing) Apps with HelmPack
    • Wrap Up
  • Reference
    • Links
Powered by GitBook
On this page
  1. Labs

Install Kops

PreviousPre-RequisitesNextInstall Kubectl

Last updated 7 years ago

To create, configure and destroy Kubernetes clusters on AWS the kops command is used.

Install

On Mac

On Mac the easiest way is to install kops is via the package manager.

$ brew update && brew install kops

On Linux

On Linux the latest release 1.6.2 is available under:

$ wget https://github.com/kubernetes/kops/releases/download/1.6.2/kops-linux-amd64

$ chmod +x kops-linux-amd64                 # Add execution permissions
$ mv kops-linux-amd64 /usr/local/bin/kops   # Move the kops to /usr/local/bin

On Windows

On Windows install Ubuntu / CentOS with Vagrant and then use the previous Linux instructions.

Confirm the version of kops.

$ kops version
Version 1.6.2

NEXT PREVIOUS

Brew
https://github.com/kubernetes/kops/releases/tag/1.6.2
Install Kubectl
Pre-Requisites