Joe Julian

Results 365 comments of Joe Julian
trafficstars

Yeah, not married to the switch name, it was just an example.

> How about if we add an option to helm dependency update to set the name of a specific dependency to update? That sounds quite useful and much easier to...

When you run `helm template` with your umbrella chart, it generates all the resources that will be part of the release. When you perform an action, every resource that has...

iirc, the rollback runs the upgrade hook, but I haven't checked the code to verify that.

You can do that now, you'd just have to include the `--values` flag once for each file.

That's not something helm can solve. Kubernetes resources are meant to be declarative and there's no way to hook one sts to another. Off the top of my head, I...

No, sorry, dependencies just allow you to include other charts. In the end, it's effectively the same as running `helm template ... | kubectl apply -f -`.

I always use kubebuilder to frame up a controller using controller-runtime. It's, in my opinion, the fastest way to get started writing a controller from scratch. If there's one already...