Nick Santos
Nick Santos
what version of wsl are you using? i poked around in the WSL repo and there were a bunch of complaints about it, mostly related to old WSL versions or...
oof, this is tricky. The short version is that this is currently working as designed. re: "I can't find any docs that say it should work this way" - here's...
@milas any chance you remember what the reasoning was behind the different health checks? alternatively, maybe we just skip the health checks on older versions of kubernetes... https://kubernetes.io/docs/reference/using-api/health-checks/
@MatanAmoyal1 hmmm... `/livez` should work fine in k8s 1.20, are you sure you're not hitting some other issue / blocking it some other way?
fwiw, i have been unable to reproduce this problem: ``` k3d cluster create -i rancher/k3s:v1.20.15-k3s1 kubectl get --raw='/livez?verbose' ``` seems to produce a valid healthcheck for me. is it possible...
@Richie24 the issue you pointed to is a 401 rather than the 404 reported in other comments, so it sounds like you're hitting a different problem. fwiw, tilt uses your...
Thanks for the report! We've never heard this bug before, so we'll need to figure out some repro steps Can you check: 1) are you able to reproduce the problem...
Have you considered using live_update to sync `mycool_file_or_folder` into the container? A lot of the reason we built live_update is because local volume mounts have lots of problems -- lack...
oh, yes, I agree that this is a valid feature request! I wanted to make sure I understood the problem. If there was a reason live_update wouldn't work in this...
You should be able to wire this up right now with a `local_resource` that looks something like this: ``` local_resource('restart-metrictank', cmd='./restart-metricktank.sh', deps = ['./path/to/dir'], auto_init=False ) ``` for more info,...