Stackspin Design

This article covers the basic design of Stackspin.

Application build pipeline

The following diagram explains the process to go from an application’s source code to a deployment on Stackspin.

Application build process

These are the steps in more detail:

  • Build container (this process should be maintained by application developer by providing a Dockerfile with the application)

    1. Get application package (source code, installation package, etc.)

      1. If not part of the package: get default configuration for the application

    2. Build container with application package installed

      1. Install application dependencies

      2. Install application package

      3. Setup default configuration

      4. Setup pluggable configuration override, can be:

        • Reading environment variables

        • Extra configuration file mounted into the container elsewhere

  • Helm chart

    • Deployment configuration to specify:

      • The container(s) that should be deployed.

      • The port(s) that they expose.

      • Volume mounts for configuration files and secrets.

      • Live/readyness probes

      • Persistent storage locations and methods

      • A lot of other things

    • Service configuration to specify:

      • Ports exposed to the user of the application

    • Ingress configuration to specify:

      • How to proxy to the application (which hostname or URL)

      • Some authentication plugins (http auth, for example)

    • Custom files:

      • Add file templates for mountable application configuration files

      • Files that specify integrations with other services

  • Deploy

    1. Create values.yaml file with the variables for the Helm deployment to the Kubernetes cluster

    2. “Manually” add secrets to the Kubernetes cluster.

    3. Run helm install to install the customised application.

Configuration

As can be seen in the images, applications are expected to have two different types of configuration. Containers should provide a default configuration, that at least configures things like the port the application runs on, the locations for log files, etc.

What we call the external configuration is provided by the user. This includes overrides of the default application, as well as variables like the hostname that the application will run on and listen to and the title of the web interface.

Stackspin will use Helm charts to provide the external configuration for the “Deploy” step. Helm charts can contain configuration file templates with default values that can be overridden during the installation or upgrade of a helm chart.

Application containers

For inclusion in Stackspin, it is required that the application developers provide Docker containers for their applications. There are several reasons for this:

  • If application developers do not provide a container, chances are they also do not think about how their application would update itself after a new container is deployed. This can lead to problems with things like database migrations.

  • Maintaining the containerisation for an application can, in most cases, not be fully automated.

Container updates

When an application update is available, these updates need to be rolled out to Stackspin instances. This will be done according the following steps:

  1. Application container is built with new application source and tagged for testing.

  2. Helm chart for application is updated to provide new container.

  3. Helm chart is deployed to an Stackspin test cluster following the steps in the diagram above.

  4. Application is tested with automated tests

  5. If tests succeed, new container is tagged for release.

  6. Stackspin automated update job fetches new Helm chart and upgrades current instance using Helm.

Most of these steps can be developed by configuring a CI system and configuring Kubernetes and Helm correctly. The automated update job that will run on Stackspin clusters will be developed by us.

Persistent data

Containerised applications are normally “stateless” (meaning no data is saved inside the containers). However, it is possible to mount persistent volumes to specific directories in the container, basically adding a persistent layer on top of the containerised application. To provide this in Stackspin’s simple setup, we use a local storage provisioner that automatically provides persistent data on the VPS running Stackspin to an application that requests it.

Automatic updates

Stackspin has an auto-update mechanism that performs unattended upgrades to applications. Flux 2 is the system running in the cluster that is responsible for these updates.

Flux 2 tracks all the files in the flux2 directory of the Stackspin code repository. Once changes are pushed to the branch that Flux tracks, the changes are applied to the cluster.

We use Flux 2 in “read only” mode, which means that your Stackspin cluster does not push changes to our Git repository. You can read more about Flux 2 and its components in the flux 2 documentation.

APIs

Stackspin includes several APIs that are available for some pieces of the software to talk to. Specifically the Dashboard application uses most of these APIs.

API graph

  • Ory Kratos is the user management API that we use. It comes with several handy features, like sending password reset emails and (soon) MFA.

  • Ory Hydra provides us with an OpenID Connect workflow.

  • Velero is a backup mechanism that integrates well with Kubernetes: it includes “Custom Resource Definitions” for backups and backup locations. As such, we can access it through the Kubernetes API.

  • Flux 2 is used to configure and auto-update applications. App configuration happens mostly through Kubernetes ConfigMaps and Secrets and are applied through the Flux CRDs Kustomization and HelmRelease.