Nick Santos

Results 278 comments of Nick Santos

related to: https://github.com/tilt-dev/tilt/issues/2752 (since helm_remote just delegates to helm())

a good workaround for this for now is to use local() to call `helm template` directly, as described here: https://docs.tilt.dev/helm.html#re-implementing-the-helm-built-in

ooh interesting suggestion. were you imagining that all of your services run in a single docker container where kubefwd is managing /etc/hosts? or are you imagining that each service is...

hmmm...I'm not sure it's that simple. I think we'd also need to: - mount /etc/hosts in the kubefwd container (so that any changes to /etc/hosts are propagated to the host...

thanks for the report! 1) i think the suffix bit is purely cosmetic, so it's probably fine to remove it. 2) not sure what the escaping issue is about, let...

@erickhun i left a comment on the other issue you filed - https://github.com/tilt-dev/tilt-extensions/issues/368, thanks for reporting!

i think this might have something to do with the interop between `helm_resource` and `docker_build_with_restart`, but am not sure yet

fwiw - i'm not too worried about problem (2) at this point (the original reporter confirmed this wasn't a problem for them) slight modification on (d) - rather than applying...

From the [README](https://github.com/tilt-dev/tilt-extensions/blob/master/helm_resource/README.md): ``` flags: Additional flags to pass to helm install (e.g., ['--set', 'key=value']) ``` is that what you're looking for?

i guess we'd accept a PR to translate `helm_resource(set=...)` to the appropriate flags. i'm usually a bit skeptical of having two ways to do the same thing, but ya, this...