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
| Issue | Cause | Solution |
|---|---|---|
| Ingress not created | openmetadata.ingress.enabled: false | Set to true |
| 502 Bad Gateway | OpenMetadata did not start | Check kubectl get pods -n <namespace> |