https://pulumi.com logo
#getting-started
Title
# getting-started
d

dry-salesmen-32588

03/25/2022, 1:26 PM
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"                    
  }
 ],
}
4 Views