Thomas

Results 176 comments of Thomas

> Bonus point: TPM-based disk encryption I'm sure you're already aware of this, but [systemd-cryptenroll](https://man.archlinux.org/man/systemd-cryptenroll.1.en) is typically the way this is done on desktops. Not sure if it applies here,...

This happens bot h with and without the `usePrecompiled` option. The above is with, and this is without: ```sh ❯ k describe po nvidia-driver-daemonset-pmmz5 Events: Type Reason Age From Message...

I tried to set the `DRIVER_IMAGE` environment variable on the operator pod to `nvcr.io/nvidia/driver:535.129.03-ubuntu22.04` but it didn't help. https://catalog.ngc.nvidia.com/orgs/nvidia/containers/driver/tags

Hi! I'm looking to use applysets and struggling to understand how to use them at the cluster scope. The KEP seems to suggest that `--applyset=namespace/some-namespace` should be possible, though I...

So, I ended up making a custom resource specifically for the ApplySet, but actually getting it to work is tricky. - [CRD](https://github.com/uhthomas/automata/blob/a5d7c56eb012ac0332e03b055490163491a1a02b/k8s/unwind/custom_resource_definition_list.cue#L15-L32) - [Custom resource](https://github.com/uhthomas/automata/blob/a5d7c56eb012ac0332e03b055490163491a1a02b/k8s/unwind/apply_set_list.cue#L14) #### kubectl can't create the...

Also, not sure if it's relevant but there are lots of warnings of throttling. ``` I0511 00:16:48.924009 2333 request.go:696] Waited for 1.199473039s due to client-side throttling, not priority and fairness,...

This may also be worth thinking about: https://github.com/spotahome/redis-operator/issues/592. In some cases, it can lead to data loss. I'm not sure if this is any worse than the original implementation of...

@schlichtanders I believe this comment should have everything you need? Let me know if there's more I can do to help. https://github.com/kubernetes/enhancements/issues/3659#issuecomment-1542965531

@schlichtanders To be clear, there are no kubectl commands which simplify this setup. You must create a [CRD](https://github.com/uhthomas/automata/blob/a5d7c56eb012ac0332e03b055490163491a1a02b/k8s/unwind/custom_resource_definition_list.cue#L15-L32) and [custom resource](https://github.com/uhthomas/automata/blob/a5d7c56eb012ac0332e03b055490163491a1a02b/k8s/unwind/apply_set_list.cue#L14) as expalined in my other comment. You then must...

Glad you were able to get it working. I also mentioned this in my original comment, but the ID is generated [here](https://github.com/kubernetes/kubernetes/blob/4e12a5f60f9e538bf5aab6318b8cd14d28fb5aca/staging/src/k8s.io/kubectl/pkg/cmd/apply/applyset.go#L162-L168) and can be generated in-browser with [this program...