deis/k8s-claimer

Name: k8s-claimer

Owner: Deis

Description: A leasing system for a pool of Kubernetes clusters

Created: 2016-04-04 19:28:29.0

Updated: 2017-10-13 14:18:03.0

Pushed: 2017-05-22 18:36:01.0

Homepage: null

Size: 246

Language: Go

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

k8s-claimer

Build Status Go Report Card Docker Repository on Quay

CLI Downloads:

k8s-claimer is a leasing server for a pool of Kubernetes clusters. It will be used as part of our deis-workflow end-to-end test infrastructure.

Note that this repository is a work in progress. The code herein is under heavy development, provides no guarantees and should not be expected to work in any capacity.

As such, it currently does not follow the Deis contributing standards.

Design

This server is responsible for holding and managing a set of Google Container Engine (GKE) clusters. Each cluster can be in the leased or free state, and this server is responsible for responding to requests to change a cluster's state, and then safely making the change.

A client who holds the lease for a cluster has a UUID indicating their ownership as well as the guarantee that nobody else will get the lease before either their lease duration expires or someone releases the lease with their UUID. The client specifies the lease duration when they acquire it.

For implementation details, see the architecture document

Azure:

Configuration

This server is configured exclusively with environment variables. See below for a list and description of each.

| ENV Var | Description | |———|————-| | BIND_PORT | The port to bind the server to. Defaults to 8080 | | BIND_HOST | The host to bind the server to. Defaults to 0.0.0.0 | NAMESPACE | The namespace in which to store lease data (lease data is stored on annotations on a service in this namespace). Defaults to k8s-claimer | | SERVICE_NAME | The service on which to store lease data. Defaults to k8s-claimer | | AUTH_TOKEN | The authentication token that clients must use to acquire and release leases | | GOOGLE_CLOUD_ACCOUNT_FILE | Base64 encoded JWT of the Service Account for GKE | | GOOGLE_CLOUD_PROJECT_ID | The Google Cloud project ID for the project that holds the GKE clusters to lease. This is a required field | | GOOGLE_CLOUD_ZONE | The zone that clusters can be leased from. Pass - to indicate all zones. Defaults to - | | AZURE_CLIENT_ID | The Service Principal ID used to make Azure API calls | | AZURE_CLIENT_SECRET | The secret for the Service Principal | | AZURE_TENANT_ID | The tenant of the Service Principal | | AZURE_SUBSCRIPTION_ID | The subscription where the leasable clusters live |

GOOGLE_CLOUD_ACCOUNT_FILE

You can get a JWT file from the Google Cloud Platform console by following these steps:

CLI

A command line interface is provided which talks to the REST API server. You can download the binaries using the links above, or build it yourself by executing make bootstrap build-cli.

See k8s-claimer --help for full CLI documentation.

s-claimer --help
:
8s-claimer - This CLI can be used against a k8s-claimer server to acquire and release leases

E:
8s-claimer [global options] command [command options] [arguments...]

ANDS:
 lease
 help, h  Shows a list of commands or help for one command

AL OPTIONS:
-server value  The k8s-claimer server to talk to
-help, -h      show help
-version, -v   print the version
Create a Lease
s-claimer lease create --help
:
8s-claimer lease create - Creates a new lease and returns 'export' statements to set the lease values as environment variables. Set the 'env-prefix' flag to prefix the environment variable names. If you pass that flag, a '_' character will separate the prefix with the rest of the environment variable name. Below are the basic environment variable names:

 - the IP address of the Kubernetes master server
KEN - contains the lease token. Use this when you run 'k8s-claimer-cli lease delete'
USTER_NAME - contains the name of the cluster. For informational purposes only

Kubeconfig file will be written to kubeconfig-file


E:
8s-claimer lease create [command options] [arguments...]

ONS:
-duration value         The duration of the lease in seconds (default: 10)
-env-prefix value       The prefix for all environment variables that this command sets
-kubeconfig-file value  The location of the resulting Kubeconfig file (default: "./kubeconfig.yaml")
-cluster-regex value    A regular expression that will be used to match which cluster you lease
-cluster-version value  A version string that will be used to find a cluster to lease
-provider value         Which cloud provider to use when creating a cluster lease. Acceptable values are azure and google. If a value is not provided it will return an error.

Example

s-claimer --server <server-name> lease create
rt IP="1.2.3.4"
rt TOKEN="<token>"
rt CLUSTER_NAME="cattier"
Delete a Lease
s-claimer lease delete --help
:
8s-claimer lease delete - Releases a currently held lease. Pass the lease token as the first and only parameter to this command. For example:

claimer-cli lease delete $TOKEN


E:
8s-claimer lease delete [command options] [arguments...]

ONS:
-provider value  Which cloud provider to use when deleting a cluster lease. Acceptable values are azure and google. If a value is not provided it will return an error.

Example

s-claimer --server <server-name> --provider GKE lease delete <token>
ted lease <token>

API

The server exposes a REST API to acquire and release leases for clusters. The subsections herein list each endpoint.

POST /lease

Acquire a new lease.

Request Body
x_time": 30}

Note that the value of max_time is the maximum lease duration in seconds. It must be a number. After this duration expires, the lease will be automatically released.

Responses

Unless otherwise noted, all responses except for 200 OK indicate that the lease was not acquired.

In non-200 response code scenarios, a body may be returned with an explanation of the error, but the existence or contents of that body are not guaranteed.

401 Bad Request

This response code is returned with no specific body if the request body was malformed.

500 Internal Server Error

This response code is returned if any of the following occur:

409 Conflict

This response code is returned if there are no clusters available for lease.

200 OK

This response code is returned along with the below response body if a lease was successfully acquired.


ubeconfig": "RFC 4648 base64 encoded Kubernetes config file. After decoding, this value can be written to ~/.kube/config for use with kubectl",
p": "The IP address of the Kubernetes master server in GKE",
oken": "The token of the lease. This is your proof of ownership of the cluster, until the lease expires or you release it",
luster_name": "The name of the cluster. This value is purely informational, and fetched from GKE"

Delete /lease/{token}

Release an existing lease, identified by {token}.

Responses

All responses except for 200 OK indicate that no leases were changed. Since the state of the lease identified by {token} (if there was one) can change over time, there are no guarantees on the state of the lease after this API call returns in these cases.

In all cases, a body may be returned with an explanation of the response, but the existece or contents of that body are not guaranteed.

401 Bad Request

This response code is returned in the following cases:

500 Internal Server Error

This response code is returned in the following cases:

409 Conflict

This response code is returned when no lease exists with the given token.

200 OK

The lease was successfully deleted. The given token is no longer valid and should not be reused.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.