Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ArgoCD failing to template complex variable map of lists in get function - part 2 #22540

Open
igoratencompass opened this issue Apr 2, 2025 · 0 comments
Labels
bug Something isn't working

Comments

@igoratencompass
Copy link

Checklist:

  • [ x] I've searched in the docs and FAQ for my answer: https://bit.ly/argocd-faq.
  • [ x] I've included steps to reproduce the bug.
  • [ x] I've pasted the output of argocd version.

Describe the bug

On the back of the previous issue #22538, now I get null for the get function variable. I have pass by the ArgoCD template complaining about incorrect var type for:

myOptions:
  option-1:
    - mypath/some-hash-1
    - mypath/some-hash-2
  option-2:
    - mypath/some-hash-3
    - mypath/some-hash-4

like so:

{{- $options := get (toYaml .Values.myOptions | fromYaml) (toString .Values.option) }}

but now I get null value for $options rendered by ArgoCD when .Values.option=option-1 here:

  something:
    options: {{ $options }}  <===== this shows as null

even if I hard code the option like so in the code:

{{- $options := get (toYaml .Values.myOptions | fromYaml) "option-1" }}

To Reproduce

I can't reproduce this locally, helm template . --debug --set option=option-1 executes just fine with or without the toYaml/fromYaml/toString gymnastics. Any idea what might be the problem? Why would something template differently in ArgoCD from local execution of helm template?

Expected behavior

ArgoCD helm template should not fail parsing the var and not return null/nil instead of list of values.

Version

v2.13.4+102853d
@igoratencompass igoratencompass added the bug Something isn't working label Apr 2, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant