Hi all,
I know that these kind of questions have been asking a lot, but I'm really stuck and can't help it
I'm using Helm to deploy elasticsearch, I use letsencrypt to generate cert, so I have fullchain.pem which is for certificate and privkey.pem for private key.
I copied all of them into 1 file call all.pem and mounted it into a Pod. I can see it in Pod. This is the current config
secretMounts:
- name: certall
secretName: certall
path: /usr/share/elasticsearch/config/certs
esConfig:
elasticsearch.yml: |
xpack.security.enabled: true
xpack.security.transport.ssl.enabled: true
xpack.security.transport.ssl.key: /usr/share/elasticsearch/config/certs/all.pem
xpack.security.transport.ssl.certificate: /usr/share/elasticsearch/config/certs/all.pem
The exact error I got is the CertificateParsingException
I dont know what is wrong when it comes to certification exception, please help.
Thanks!