opensearch-project / helm-charts

:wheel_of_dharma: A community repository for Helm Charts of OpenSearch Project.
https://opensearch.org/docs/latest/opensearch/install/helm/
Apache License 2.0
170 stars 228 forks source link

Successful TLS certificate configuration by helm charts #396

Open LSangdarui opened 1 year ago

LSangdarui commented 1 year ago

Describe the bug I want to configure the TLS certificate and deploy opensearch2.5.0 through help chart. The reference is https://opensearch.org/docs/2.5/install-and-configure/install-opensearch/helm/ . Now opensearch 2.5.0 is running, but if I want to configure the TLS certificate and access the opensearch cluster through the domain name, what about the configuration. Is there a ready-made reference configuration instead of the parameter description on the official website Expected behavior

Host/Environment (please complete the following information):

prudhvigodithi commented 1 year ago

[Triage] Hey @LSangdarui, thanks for raising an issue, if I'm not wrong you want to access the cluster with custom cert and domain name like https://example.com? if so then you can leverage running nginx and connect to existing OpenSearch, with the current chart ingress is already created, you just need to deploy nginx helm chart and point to OpenSearch ingress. Nginx has a way to use your custom TLS cert passing as secret and front end the https URL. Ref: https://github.com/kubernetes/ingress-nginx @bbarani @rishabh6788 Thank you