Andrei Kvapil
Andrei Kvapil
We need to build custom grafana image which will hold all the needed plugins.
this PR fixes the errors: ``` E0924 11:31:59.069472 1 reflector.go:150] pkg/mod/k8s.io/[email protected]/tools/cache/reflector.go:232: Failed to watch *v1.StorageClass: unknown (get storageclasses.storage.k8s.io) E0924 11:32:57.379956 1 reflector.go:150] pkg/mod/k8s.io/[email protected]/tools/cache/reflector.go:232: Failed to watch *v1.StorageClass: unknown (get storageclasses.storage.k8s.io)...
``` # talm upgrade -f nodes/srv1.yaml error constructing client: failed to determine endpoints ```
I create PersistentVolumeClaim with size of `1Gi`: ``` apiVersion: v1 kind: PersistentVolumeClaim metadata: name: block-pvc spec: accessModes: - ReadWriteMany volumeMode: Block resources: requests: storage: 1Gi ``` `1Gi*1024*1024*1024` = `1073741824` bytes...
It seems I'm the most active contributor lately, my contributions: - https://github.com/kubevirt/cloud-provider-kubevirt/pull/330 - https://github.com/kubevirt/cloud-provider-kubevirt/pull/331 - https://github.com/kubevirt/cloud-provider-kubevirt/pull/336 - https://github.com/kubevirt/cloud-provider-kubevirt/pull/335 - https://github.com/kubevirt/cloud-provider-kubevirt/pull/341 Signed-off-by: Andrei Kvapil
**What this PR does / why we need it**: This PR includes three fixes: - https://github.com/kubevirt/cloud-provider-kubevirt/pull/335 - bc88db413cf1b0d14309eeb3010364745d8c9865 Refactor eps-controller and fix add nil pointer check in `finalize()` function -...
This PR resolves an issue where `EndpointPort` fields in `reconcileByAddressType` pointed to the same memory address across iterations, causing duplicate values in `desiredPorts`. The fix ensures unique memory addresses are...