Joe Julian
Joe Julian
I agree that's hard to read. The first paragraph is establishing a behavior that the author expects the reader to be familiar with (go-templates). Then goes on to say, "There...
All the bits are there to do this. It should be a fairly easy task. See https://github.com/helm/helm/pull/8608/files#diff-ff8663c8d26f14679a0274ccb7dab29b04bd17084581c573ca06d8fb82d1d154R63-R65 where I call the upstream deprecation library.
Sorry, I totally missed that there's a PR open already.
This has been answered.
One of the core maintainers. I added it to a milestone so it'll either get reviewed or they'll bump it to the next milestone depending on their availability.
This says that at your url, the `index.yaml` file could not be unmarshalled into a [IndexFile struct](https://github.com/helm/helm/blob/d83dd95cae27ef95792ebfa0f4dc5ca6d9fda538/pkg/repo/index.go#L81-L93). This suggests that the url might be returning something other than what's expected....
Your error was because you used the whole string as the name of the binary. It looked for the command, spaces and all, as the name of the command. You...
``` Error: invalid argument "/bin/bash -c envsubst/envsubst.sh" for "--post-renderer" flag: unable to find binary at /bin/bash -c envsubst/envsubst.sh: exec: "/bin/bash -c envsubst/envsubst.sh": stat /bin/bash -c envsubst/envsubst.sh: no such file or...
Does envsubst.sh have a [shebang](https://en.wikipedia.org/wiki/Shebang_(Unix)) to inform the library function what program to execute the script with? Clearly without it windows is trying to interpret text as a binary.
Well I'm stumped. Someone with a similar question asked [here](https://github.com/helm/helm/issues/11441#issuecomment-1279537991) and it worked for them. Maybe there's a nugget there that I'm just missing.