Control Plane Helm Chart Configuration

To install the Helix Control Plane using Helm, use the following configuration:

# values.yaml
controlplane:
  image:
    repository: helixml/controlplane
    tag: "latest"
  
  service:
    type: ClusterIP
    port: 8080
  
  ingress:
    enabled: true
    hosts:
      - helix.yourdomain.com
    tls:
      - hosts:
          - helix.yourdomain.com
        secretName: helix-tls
  
  postgresql:
    enabled: true
    auth:
      postgresPassword: "securePassword"
      password: "securePassword"
  
  redis:
    enabled: true

Install with:

helm repo add helix https://charts.helixml.tech
helm install controlplane helix/controlplane -f values.yaml