cccdemon opened a new issue, #527:
URL: https://github.com/apache/pulsar-helm-chart/issues/527

   **Is your feature request related to a problem? Please describe.**
   When you want to use a valid / signed certificate for pulsar-proxy, the helm 
charts do not use the certname you entered in the values file: 
   Example:
   `  proxy:
       enabled: true
       cert_name: my-valid-certificate # use this certname
       createCert: false  # set to false if you want to use an existing 
certificate`
   
   Results in certificate name within the Proxy as "pulsar.my-valid-certificate"
   
   **Describe the solution you'd like**
   just use the cert_name i`ve entered
   
   **Describe alternatives you've considered**
   remove the option of "using the releasename as prefix" 
   
   **Additional context**
   File: proxy-statefulset.yaml
   `{{- if .Values.tls.proxy.createCert }}
   secretName: "{{ .Release.Name }}-{{ .Values.tls.proxy.cert_name }}"
   {{- end }}
   {{- if .Values.tls.proxy.createCert }}
   secretName: "{{ .Release.Name }}-{{ .Values.tls.proxy.cert_name }}"
   {{- else }}
   secretName: "{{ .Values.tls.proxy.cert_name }}"
   {{- end }}`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to