Declarative State Management for Kubernetes

olitheolix, updated 🕥 2023-03-17 03:19:37

Square is to Kubernetes what Terraform is to Cloud: match the cluster state to what the local manifests dictate.

Square is completely stateless. Unlike other tools it does not create resources like ConfigMaps or inject special annotations to track state - the local manifests are all there is.

Installation

Grab a binary release or install it into a Python 3.10+ environment with pip install kubernetes-square --upgrade. console [email protected]:~$ square version 1.2.0

You may also use a pre-built Docker image: console [email protected]:~$ docker run -ti --rm olitheolix/square:v1.2.0 version 1.2.0

Usage

A sensible first step is to create the .square.yaml file with square config and edit it. The only two really important fields are kubeconfig and folder, which denote the location of kubeconfig and where to store the manifests. You may also want to update selectors.kinds, selectors.labels and selectors.namespaces to target specific resource types with specific labels in specific namespaces. All other options have sensible defaults.

The .square.yaml file is optional. All options in that file, except filters, can be passed via command line arguments.

After that, the typical workflow to manage the resources specified in .square.yaml is:

```console

Import resources from cluster (if you want to).

square get

Show the deployment plan.

square plan

Show the deployment plan and apply it.

square apply ```

Supported Clusters And Versions

Square supports Minikube, Kubernetes in Docker (KinD), EKS and GKE. Any cluster version v1.11+ should work.

Examples

These example assume that you have no .square.yaml.

Square will use the KUBECONFIG environment variable to locate the Kubernetes credentials. Alternatively, you can specify the credentials with the --kubeconfig and --context arguments.

Get Current Cluster State

Download all Namespace- and Deployment manifests from the cluster and save them to ./manifests:

console [email protected]:~$ kubectl apply -f integration-test-cluster/test-resources.yaml ... [email protected]:~$ square get ns deployment --groupby ns kind --folder manifests/ [email protected]:~$ tree manifests manifests/ ├── default │   └── namespace.yaml ├── _global_ │   └── clusterrole.yaml ├── kube-public │   └── namespace.yaml ├── kube-system │   ├── deployment.yaml │   └── namespace.yaml └── square-tests ├── deployment.yaml └── namespace.yaml

These are the YAML files from the integration test cluster (a Minikube). The --groupby argument determine the layout of manifests/. In this case, each namespace becomes a folder and the manifests are grouped by resource type. The only folder that does not correspond to a Kubernetes namespace is _global_ because it harbours all non-namespaced resources like ClusterRole or ClusterRoleBinding.

The file names, as well as the manifest order inside those files are irrelevant. Square will always compile them into a flat list internally. As such, you are free to rename the files, or move manifests across to different files. You can still use square get ... afterwards and Square will update the right resources in the right files. If it finds a resource on the server that is not yet defined in any of the files it will create the corresponding file.

Group By Label

Square can also use one resource label and make it part of the manifests folder hierarchy. Here is the integration test cluster:

console [email protected]:~$ kubectl apply -f integration-test-cluster/test-resources.yaml ... [email protected]:~$ square get --groupby ns label=app kind --folder manifests/ [email protected]:~$ tree manifests manifests/ ├── default │   └── _other │   ├── namespace.yaml │   ├── secret.yaml │   ├── serviceaccount.yaml │   └── service.yaml ├── _global_ │   ├── demoapp │   │   ├── clusterrolebinding.yaml │   │   └── clusterrole.yaml │   └── _other │   ├── clusterrolebinding.yaml │   └── clusterrole.yaml ├── kube-public │   └── _other │   ├── configmap.yaml │   ├── namespace.yaml │   ├── rolebinding.yaml │   ├── role.yaml │   └── serviceaccount.yaml ├── kube-system │   ├── kube-proxy │   │   └── configmap.yaml │   └── _other │   ├── configmap.yaml │   ├── daemonset.yaml │   ├── deployment.yaml │   ├── namespace.yaml │   ├── rolebinding.yaml │   ├── role.yaml │   ├── secret.yaml │   ├── serviceaccount.yaml │   └── service.yaml └── square-tests ├── demoapp │   ├── configmap.yaml │   ├── cronjob.yaml │   ├── daemonset.yaml │   ├── deployment.yaml │   ├── horizontalpodautoscaler.yaml │   ├── ingress.yaml │   ├── namespace.yaml │   ├── persistentvolumeclaim.yaml │   ├── rolebinding.yaml │   ├── role.yaml │   ├── secret.yaml │   ├── serviceaccount.yaml │   ├── service.yaml │   └── statefulset.yaml └── _other ├── secret.yaml └── serviceaccount.yaml

As you can see, Square co-located all resources that are in the same namespace and have the same app label. Resources without an app label it put into the catch-all folder _other and non-namespaced resources into the _global_ folder.

Create A Plan

Following on with the example, the local files and the cluster state are now in sync:

```console [email protected]:~$ square plan ns


Plan: 0 to add, 0 to change, 0 to destroy. ```

To make this more interesting, add a label to the Namespace manifest in square-tests/demoapp/namespace.yaml. It should look something like this: yaml apiVersion: v1 kind: Namespace metadata: name: default labels: foo: bar spec: finalizers: - kubernetes

Save the file and create a plan: ```console [email protected]:~$ square plan ns Patch NAMESPACE default/default --- +++ @@ -1,6 +1,8 @@ apiVersion: v1 kind: Namespace metadata: + labels: + foo: bar name: default spec: finalizers:


Plan: 0 to add, 1 to change, 0 to destroy. ```

This will show the difference in standard diff format. In words: Square would patch the default namespace to bring the K8s cluster into the state prescribed by the local manifests. Let's apply the plan to do just that:

```console [email protected]:~$ square apply ns Patch NAMESPACE default/default --- +++ @@ -1,6 +1,8 @@ apiVersion: v1 kind: Namespace metadata: + labels: + foo: bar name: default spec: finalizers:

Compiled 1 patches. Patch(url='https://192.168.0.177:8443/api/v1/namespaces/default', ops=[{'op': 'add', 'path': '/metadata/labels', 'value': {'foo': 'bar'}}])

[email protected]:~$ square plan ns

Plan: 0 to add, 0 to change, 0 to destroy. ```

Square will first print the diff we saw earlier already, followed by the JSON patch it sent to K8s to update the Namespace.

Use kubectl to ensure the patch worked and the Namespace now has a foo:bar label.

```console [email protected]:~$ kubectl describe ns default Name: default Labels: foo=bar Annotations: Status: Active

No resource quota.

No resource limits.

```

Apply The Plan To Create and Destroy Resources

The apply operation we just saw will also create and delete resources as necessary. To add a new resource, simply add its manifest to manifests/. It does not matter if it is in a new file or added to an existing one.

For instance, to deploy the latest Square image from Dockerhub, download the example manifests into the manifests/ folder and use Square to deploy it:

```console [email protected]:~$ wget https://github.com/olitheolix/square/raw/master/examples/square.yaml -O manifests/square.yaml [email protected]:~$ square apply all Create NAMESPACE square/square apiVersion: v1 kind: Namespace metadata: name: square

Create SERVICEACCOUNT square/square apiVersion: v1 kind: ServiceAccount metadata: name: square namespace: square

Create CLUSTERROLE None/square apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: square rules: - apiGroups: - '' - apps - rbac.authorization.k8s.io - extensions resources: - clusterrolebindings - clusterroles - configmaps - daemonsets - deployments - ingresses - namespaces - persistentvolumeclaims - rolebindings - roles - secrets - services - statefulsets verbs: - get - list - update - patch

Create CLUSTERROLEBINDING None/square apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRoleBinding metadata: name: square roleRef: apiGroup: rbac.authorization.k8s.io kind: ClusterRole name: square subjects: - kind: ServiceAccount name: square namespace: square

Create DEPLOYMENT square/square apiVersion: extensions/v1beta1 kind: Deployment metadata: name: square namespace: square spec: replicas: 1 selector: matchLabels: app: square template: metadata: labels: app: square spec: containers: - command: - sleep - 10000d image: olitheolix/square:latest imagePullPolicy: Always name: square serviceAccountName: square terminationGracePeriodSeconds: 1

Creating NAMESPACE square/square Creating SERVICEACCOUNT square/square Creating CLUSTERROLE None/square Creating CLUSTERROLEBINDING None/square Creating DEPLOYMENT square/square Compiled 0 patches.

[email protected]:~$ kubectl -n square get po NAME READY STATUS RESTARTS AGE square-b6bc65f6d-2xmzm 1/1 Running 0 37s ```

Deploy On A Cluster

Square does not require anything installed on your cluster to work. However, it will require the appropriate RBACs if you want to run it in a Pod. The examples folder contains an example of how to deploy the official Docker image.

This can be useful for automation tasks. For instance, you may want to track the configuration drift in your cluster over time.

Use It As A Library

You can also use Square as a library in your own projects. See here for an example.

Automated Tests

Square ships with a comprehensive set of unit tests:

pipenv run pytest

To also pick up the integration tests you need to first download the KinD binary for your platform and put it in your path. Then start the integration test cluster with:

cd integration-test-cluster
./start_cluster.sh

Releases

v1.1.8 2022-02-18 10:41:56

v1.1.7 2021-08-16 11:15:15

v1.1.6 2021-08-16 10:56:50

v1.1.4 2021-02-23 21:17:03

v1.1.2 2021-02-11 16:34:31

v1.1.1 2021-02-11 10:36:53

kubernetes kubernetes-deployment python