Paul "TBBle" Hampson

Results 386 comments of Paul "TBBle" Hampson

There's significant overlap between the features of CDI and the Windows-built-in C:\Windows\system32\containers\devices.def and related files. There's a discussion of devices.def at https://github.com/kubernetes/kubernetes/issues/97739#issuecomment-767238485. I'm not sure how and where that file...

Hmm, looks like we implemented the `lifecycle/frozen` label (at least partially) for this ticket, but never actually added the label here.

Yup, still missing the `lifecycle/frozen` label.

Based on having bounced off this issue a few times recently, and particularly in the context of https://github.com/googleforgames/agones/issues/1280, I'd definitely prefer an option that recreated *only* changed resources. Perhaps it...

I finally pinned down another problem I've been having, and what to surface it for this discussion. You cannot use Helm v3 `--force` (PUT) (== `kubectl replace`) for a Service...

Does k8s surface metadata about immutable fields? If so, `--force` could be taught to copy them into the output before applying (perhaps with an error if a value was found...

Jobs are an example of something that Helm can't really upgrade well through a naive upgrade, because [most of its fields are immutable](https://github.com/kubernetes/kubernetes/issues/89657#issuecomment-608224842), and the process to upgrade a Job...

That sounds like a good use-case to break out into a new feature-request, for, e.g., `post-install` and `post-upgrade` hooks to be able to annotate that they are non-blocking, disabling [the...

The fork relies on the updated helm from this PR. Unlike the helm-diff fork, I expect most updates will keep the existing `command` stanza for back-compat reasons, and _add_ a...

> I was expecting the new fields to be ignored, is this not the intended behaviour? Sadly, looks like [we use `UnmarshalStrict`](https://github.com/helm/helm/blob/0b68393d5eba3142063f4cc90298181b7a13379d/pkg/plugin/plugin.go#L231-L233) so that'll fail parsing if it sees unknown...