cluster-api-gcp

command
v0.0.0-...-790edac Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 17, 2018 License: Apache-2.0 Imports: 1 Imported by: 0

README

Cluster API GCP Prototype

The Cluster API GCP prototype implements the Cluster API for GCP.

Getting Started

Prerequisites

Follow the steps listed at CONTRIBUTING.md to:

  1. Build the cluster-api-gcp tool
  2. Generate base machines.yaml file configured for your GCP project
Creating a cluster
  1. Optional update machines.yaml to give your preferred GCP zone in each machine's providerConfig field.
  2. Optional: Update cluster.yaml to set a custom cluster name.
  3. Create a cluster: ./cluster-api-gcp create -c cluster.yaml -m machines.yaml

During cluster creation, you can watch the machine resources get created in Kubernetes, see the corresponding virtual machines created in GCP, and then finally see nodes join the cluster:

$ watch -n 5 "kubectl get machines"
$ watch -n 5 "gcloud compute instances list"
$ watch -n 5 "kubectl get nodes"
Interacting with your cluster

Once you have created a cluster, you can interact with the cluster and machine resources using kubectl:

$ kubectl get clusters
$ kubectl get machines
$ kubectl get machines -o yaml
Scaling your cluster

You can add individual machines to your cluster using kubectl apply or kubectl create or you can use the client-side machineset tool to add (or remove) a bunch of identical nodes to your cluster.

Upgrading your cluster

By default, your cluster will initially be running Kubernetes version 1.7.4. You can upgrade the control plane or nodes using kubectl edit or you can run the upgrader tool to upgrade your entire cluster with a single command.

Node repair

To test node repair, first pick a node, ssh into it, and "break" it by killing the kubelet process:

$ node=$(kubectl get nodes --no-headers | grep -v master | head -n 1 | awk '{print $1}')
$ gcloud compute ssh $node --zone us-central1-f
# sudo systemctl stop kubelet.service
# sudo systemctl daemon-reload

Then run the node repair tool to find the broken node (using the dry run flag) and fix it.

Deleting a cluster

To delete your cluster run ./cluster-api-gcp delete

How does the prototype work?

Right now, the Cluster and Machine objects are stored as Custom Resources (CRDs) in the cluster's apiserver. Like other resources in Kubernetes, a machine controller is run as a pod on the cluster to reconcile the actual vs. desired machine state. Bootstrapping and in-place upgrading is handled by kubeadm.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL