Cyrill Troxler
Cyrill Troxler
Reusing the base transport can have unintended side effects, for example when setting `VAULT_CACERT` requests to the IAM API break as the cert store is modified. Closes #24
With this change the vault client is cached between `Get` and `Put` calls and avoids logging into vault every time. We use this library to read a (growing) number of...
Currently when connecting to the IAM API this library [reuses the transport](https://github.com/nytimes/gcp-vault/blob/master/gcpvault.go#L253) from the already initialized HTTP client. Is there a reason for this? This breaks connecting to the IAM...
According to the [CreateVolume specs](https://github.com/container-storage-interface/spec/blob/master/spec.md#createvolume) a volume should not set `CapacityBytes` (or set it to 0) to indicate that the capacity is unknown. ``` // The capacity of the volume...
This introduces an additional deletePriority between betterDelete and mustDelete to avoid a race where multiple machines might be deleted at the same time. **What this PR does / why we...
### What problem are you facing? Right now, crossplane-runtime does not formally support namespaced managed resources. It kind of works and only breaks if certain features are used. Because we...
We are using `pkg_tar` to package helm charts into `tgz` files (helm only supports `.tgz`/`.tar.gz`). I recently upgraded my system to Fedora 40 and noticed all the chart hashes changing....
### Description Using v2.0.0-rc.3 together with user namespaces on Kubernetes v1.30, I have ran into an issue running a very basic nginx container: ```yaml apiVersion: v1 kind: Pod metadata: name:...
Clarify that a cluster-autoscaler instance can target a single RKE2 cluster. #### What type of PR is this? /kind documentation #### What this PR does / why we need it:...
I tried running [kind](https://kind.sigs.k8s.io/) with the podman runtime set to `krun` and I'm getting the following error: ``` $ KIND_EXPERIMENTAL_PROVIDER=podman kind create cluster --retain using podman due to KIND_EXPERIMENTAL_PROVIDER enabling...