Packet

Kubespray provides support for bare metal deployments using the Packet bare metal cloud.Deploying upon bare metal allows Kubernetes to run at locations where an existing public or private cloud might not exist suchas cell tower, edge collocated installations. The deployment mechanism used by Kubespray for Packet is similar to that used forAWS and OpenStack clouds (notably using Terraform to deploy the infrastructure). Terraform uses the Packet provider pluginto provision and configure hosts which are then used by the Kubespray Ansible playbooks. The Ansible inventory is generateddynamically from the Terraform state file.

Local Host Configuration

To perform this installation, you will need a localhost to run Terraform/Ansible (laptop, VM, etc) and an account with Packet.In this example, we’re using an m1.large CentOS 7 OpenStack VM as the localhost to kickoff the Kubernetes installation.You’ll need Ansible, Git, and PIP.

  1. sudo yum install epel-release
  2. sudo yum install ansible
  3. sudo yum install git
  4. sudo yum install python-pip

Playbook SSH Key

An SSH key is needed by Kubespray/Ansible to run the playbooks.This key is installed into the bare metal hosts during the Terraform deployment.You can generate a key new key or use an existing one.

  1. ssh-keygen -f ~/.ssh/id_rsa

Install Terraform

Terraform is required to deploy the bare metal infrastructure. The steps below are for installing on CentOS 7.More terraform installation options are available.

Grab the latest version of Terraform and install it.

  1. echo "https://releases.hashicorp.com/terraform/$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r -M '.current_version')/terraform_$(curl -s https://checkpoint-api.hashicorp.com/v1/check/terraform | jq -r -M '.current_version')_darwin_amd64.zip"
  2. sudo yum install unzip
  3. sudo unzip terraform_0.11.11_linux_amd64.zip -d /usr/local/bin/

Download Kubespray

Pull over Kubespray and setup any required libraries.

  1. git clone https://github.com/kubernetes-sigs/kubespray
  2. cd kubespray
  3. sudo pip install -r requirements.txt

Cluster Definition

In this example, a new cluster called “alpha” will be created.

  1. cp -LRp contrib/terraform/packet/sample-inventory inventory/alpha
  2. cd inventory/alpha/
  3. ln -s ../../contrib/terraform/packet/hosts

Details about the cluster, such as the name, as well as the authentication tokens and project IDfor Packet need to be defined. To find these values see Packet API Integration

  1. vi cluster.tf
  • cluster_name = alpha
  • packet_project_id = ABCDEFGHIJKLMNOPQRSTUVWXYZ123456
  • public_key_path = 12345678-90AB-CDEF-GHIJ-KLMNOPQRSTUV

Deploy Bare Metal Hosts

Initializing Terraform will pull down any necessary plugins/providers.

  1. terraform init ../../contrib/terraform/packet/

Run Terraform to deploy the hardware.

  1. terraform apply -var-file=cluster.tf ../../contrib/terraform/packet

Run Kubespray Playbooks

With the bare metal infrastructure deployed, Kubespray can now install Kubernetes and setup the cluster.

  1. ansible-playbook --become -i inventory/alpha/hosts cluster.yml