helm-charts
helm-charts copied to clipboard
Cloud skip tls verify
Is your feature request related to a problem? Please describe
I try to add Cloud config in my jenkins by using default jcasc-default-config.yaml in ConfigMap. I don't want to use custom JCasC config in section Values.JCasC.configScripts as it clogs up values.yaml.
But I have some trouble. In my case I need to add "Disable https certificate check". In config this is equal "skipTlsVerify: true" but when I try to find it in original chart my attempts ended in failure. I think we shoud add this in _helpers.tpl in define "jenkins.casc.defaults" section
Describe the solution you'd like
As I wrote earlier we should add something like: skipTlsVerify: "{{ .Values.agent.skipTlsVerify }}" in {{- define "jenkins.casc.defaults" -}} section in _helpers.tpl
Describe alternatives you've considered
I tried to use non default config but it create the difficulties for reading of my values
Additional context
No response