any hint on how to format helm values in python ? ...
# getting-started
d
any hint on how to format helm values in python ? specifically tuples ? ie. helm values type:
Copy code
extraVolumes:
  - type: 'secret'
    name: 'creds'
It doesn't really fit the "dict" pattern. that the examples used on the website/github is referring to
ah, pulumi prefers it this way:
Copy code
values= {
 "extraVolumes": [
  {                
    "type" : "secret",
    "name" : "creds"                    
  }
 ],
}