Nick Santos

Results 399 comments of Nick Santos

thanks! related issue - https://github.com/tilt-dev/tilt/issues/6287

i just tried this and it worked like i expected? 1. Checkout https://github.com/tilt-dev/tilt-example-docker-compose 2. Run `tilt up redis` 3. Observe: redis starts, app does not What am i missing? Here...

i think you can do this with something like: ``` dc_resource('app', new_name='unused') k8s_yaml('app.yaml') config.set_enabled_resources(['redis', 'app']) ```

i guess you could also use docker-compose overrides to accomplish this: Tiltfile: ``` docker_compose([ 'docker-compose.yaml', 'docker-compose.override.yaml', ]) ``` docker-compose.override.yaml ``` services: app: !reset null ```

sorry to hear you're having trouble. i was not able to reproduce this problem. here are the repro steps i tried: - i checked out this project - https://github.com/tilt-dev/tilt-example-go/tree/master/3-recommended -...

I wonder if we should use something like https://github.com/getlantern/systray to do OS statusbar notifications. That's pretty typical for Docker and other tools in this space.

you might be able to do this with an extension! you'd need a UIButton (https://github.com/tilt-dev/tilt-extensions/tree/master/uibutton) that runs the command: ``` tilt delete kubernetesapplys --all ``` and then kill the tilt...

hmmm...i was not able to reproduce this problem. here are the steps i tried: 1. cd into tilt-extensions/restart_process/test 2. Run `tilt up -f custom_deploy.Tiltfile` 3. Clicked `test_update` a bunch of...

ya, i poked around at how Cluster API is doing it, and i think they just leave the `kubebuilder` validation off entirely? https://github.com/kubernetes-sigs/cluster-api/blob/781d1e4c39286d3d1e93c71557b5d02c2e78961b/api/v1beta1/machinehealthcheck_types.go#L101 and it will do the right thing...