https://pulumi.com logo
Title
d

dazzling-sundown-39670

06/30/2020, 11:17 AM
How can I replicate this command?
helm install --name fission --namespace fission \ <https://github.com/fission/fission/releases/download/1.10.0/fission-all-1.10.0.tgz>
I figured fetchOpts.repo but I'm not sure what to put in it
Ah okay, I can just put the url in
chart
🤦‍♂️
b

broad-dog-22463

06/30/2020, 12:12 PM
@dazzling-sundown-39670 did you get it sorted?
d

dazzling-sundown-39670

06/30/2020, 12:13 PM
@broad-dog-22463 yes, thanks, I just put the url like this:
{
  chart:
    '<https://github.com/fission/fission/releases/download/1.10.0/fission-all-1.10.0.tgz>',
  namespace: fissionNamespace.metadata.name,
  values: {
    analytics: false,
    createNamespace: false,
    nats: {
      external: true,
      hostaddress: 'nats:4222',
    },
  },
},
b

broad-dog-22463

06/30/2020, 12:13 PM
ah glad to see you got it!