Single Instance

Deploy Bindplane Server to Kubernetes

Architecture

When Bindplane is deployed as a StatefulSet, it has the following architecture.

  • Bindplane as a Single pod.

    • Deployed as a StatefulSet.

    • BBolt storage backend using a persistent volume claim.

  • Prometheus time series database

    • Deployed as a StatefulSet.

    • Persistent storage using a persistent volume claim.

    • Prometheus is deployed and managed by the chart using observIQ's Prometheus image.

  • Single transform agent pod, for live preview.

NOTE

Bindplane uses Prometheus as a storage backend for collector throughput metrics. It is unnecessary to manage Prometheus outside of the Helm chart.

Prerequisites

System Requirements

  • Storage class which supports persistent volume claims (When running as a StatefulSet).

Installation

Add the Bindplane Helm chart to your workstation.

Create a values.yaml file, which will be used to configure your Helm deployment.

Add the initial options. Make sure to set the following:

  • config.username: Your basic auth username for the Administrator project.

  • config.password: Your basic auth password for the Administrator project.

  • config.sessions_secret: A random uuid. You can use uuidgen to create one.

NOTE

Follow the the instance sizing guidelines when modifying the resource requests and limits.

Deploy Bindplane to the bindplane namespace using Helm and your previously created values.yaml configuration file.

After a few moments, check the namespace by running kubectl -n bindplane get pod. You will see three pods:

Frequently Asked Questions

Q: Why is the StatefulSet limited to one pod?

A: Bindplane is limited to a single instance when configured with local storage. See the Bindplane Deployment Installation documentation for details on how to deploy Bindplane using a scalable architecture.

Last updated

Was this helpful?