Kubernetes Ingress
Access Bindplane from Outside of the Cluster
IMPORTANT
🚧 Make sure Bindplane Server is configured with a secure password before exposing it.
Basic Example
Bindplane can be exposed by Kubernetes ingress.
This example will expose Bindplane on the host bindplane.local
using the nginx
ingress class.
ingress:
enable: true
host: bindplane.local
class: nginx
TLS Example
This example will expose Bindplane on the host bindplane.mycorp.net
using 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?