I am trying to extract all strings between ( and ) from values.yaml in _helper.tpl.
In my _helper.tpl
{{- define "firstchart.extraction" -}}
{{- regexFindAll "(?<=\()(.*?)(?=\))" .Values.monitor.url -1 -}}
{{- end -}}
my values.yaml file
monitor:
url: "(zone-base-url)/google.com/(some-random-text)"
so i want to extract zone-base-url and some-random-text. How to do this?