Kubernetes Ingress

Access Bindplane from Outside of the Cluster

Basic Example

Bindplane can be exposed by Kubernetes ingress.

This example will expose Bindplane on the host bindplane.localusing the nginx ingress class.

ingress:
  enable: true
  host: bindplane.local
  class: nginx

NOTE

It is recommended that TLS be configured when exposing Bindplane with ingress.

TLS Example

This example will expose Bindplane on the host bindplane.mycorp.netusing the nginx ingress class. It will also set the Cert Manager Annotationcert-manager.io/cluster-issuer, which will trigger Cert Manager to retrieve a TLS certificate and store it in the secret named bindplane-nginx-tls.

ingress:
  enable: true
  host: bindplane.mycorp.net
  class: nginx
  tls:
    enable: true
    secret: bindplane-nginx-tls
  annotations:
    cert-manager.io/cluster-issuer: 'letsencrypt-prod'

Last updated

Was this helpful?