Skip to main content
Version Next

Ingress — OpenMetadata

The tdp-openmetadata chart exposes the Ingress via values. By default, it is disabled.

Prerequisites

  • Ingress Controller installed in the cluster (e.g., NGINX).

Enable Ingress

openmetadata:
ingress:
enabled: true
className: nginx
annotations: {}
hosts:
- host: openmetadata.<your-domain>
paths:
- path: /
pathType: ImplementationSpecific
tls: []

Enable TLS

openmetadata:
ingress:
enabled: true
className: nginx
annotations:
nginx.ingress.kubernetes.io/ssl-redirect: "true"
hosts:
- host: openmetadata.<your-domain>
paths:
- path: /
pathType: ImplementationSpecific
tls:
- hosts:
- openmetadata.<your-domain>
secretName: openmetadata-tls-secret

Access after configuration

http://openmetadata.<your-domain>

Troubleshooting

IssueCauseSolution
Ingress not createdopenmetadata.ingress.enabled: falseSet to true
502 Bad GatewayOpenMetadata did not startCheck kubectl get pods -n <namespace>