How can I replicate this command? ```helm install ...
# kubernetes
d
How can I replicate this command?
Copy code
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
@dazzling-sundown-39670 did you get it sorted?
d
@broad-dog-22463 yes, thanks, I just put the url like this:
Copy code
{
  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
ah glad to see you got it!