This is a bit misleading as [...] character classes are not comma-delimited, so the example matches any of the character class [2456,] (including any comma characters, which I'm sure is not intended here).
Best to delete the commas and not to propagate this anti-pattern to future generations. 😉
The code example for
regexFindAll
at https://helm.sh/docs/chart_template_guide/function_list/#regexfindall-mustregexfindallreads:
This is a bit misleading as
[...]
character classes are not comma-delimited, so the example matches any of the character class[2456,]
(including any comma characters, which I'm sure is not intended here).Best to delete the commas and not to propagate this anti-pattern to future generations. 😉