/charts

Helm charts for Airplane

Primary LanguageMustacheMIT LicenseMIT

Airplane Helm Charts

This repository stores helm charts (currently just airplane-agent) and also serves as as a helm repo.

Here's an example values.yaml for configuring your Airplane agents:

airplane:
  apiToken: YOUR_API_TOKEN
  teamID: YOUR_TEAM_ID

  # Change this to run pods in a different namespace
  runNamespace: default

  # Optional: Attach labels to agents for constraints
  agentLabels:
    orchestration: kubernetes

  # Optional: If set, only allows agents to execute runs from environment
  # with the provided slug
  envSlug: ""

For more details on using the helm chart, see the docs on self-hosted Airplane agents in Kubernetes.

Installing the chart

Add the Airplane chart repo:

helm repo add airplane https://airplanedev.github.io/charts

Update your chart repos:

helm repo update

Install the helm chart:

helm install -f values.yaml airplane airplane/airplane-agent