Questions tagged [kubernetes-csi]

7 questions
4
votes
1 answer

How to add readiness probe for snapshot-controller Deployment

I am trying to add livenessprobe for snapshot-controller. snapshot-controller deployment mentioned here to be specific. I tried to exec into controller pod to see what can be used for liveness probe. But not able to get into the pod. Has someone…
ambikanair
  • 4,004
  • 11
  • 43
  • 83
1
vote
1 answer

Kubernetes changing ownership of the volume parent directory

I am running a non root K8s pod, which is using a PV and the following security context # security context securityContext: runAsUser: 1000 runAsGroup: 2000 fsGroup: 2000 fsGroupChangePolicy: "OnRootMismatch" # volume …
alixander
  • 426
  • 1
  • 7
  • 18
1
vote
1 answer

azure secrets store csi driver provider throws Error: secret * not found

Below is my app definition that uses azure csi store provider. Unfortunately, this definition throws Error: secret 'my-kv-secrets' not found why is that? SecretProviderClass apiVersion: secrets-store.csi.x-k8s.io/v1alpha1 kind:…
Lukasz Dynowski
  • 11,169
  • 9
  • 81
  • 124
0
votes
0 answers

ControllerGetCapabilities can this be called as a client to get supported capabilities of a csi driver

// ControllerGetCapabilities implements the default GRPC callout. func (csiCS *CSIControllerServer) ControllerGetCapabilities(ctx context.Context, req *csi.ControllerGetCapabilitiesRequest) (*csi.ControllerGetCapabilitiesResponse, error) { Is…
ambikanair
  • 4,004
  • 11
  • 43
  • 83
0
votes
0 answers

Why doesn't "kubectl describe snapshot" show reason for failure

Using CSI driver, created volumes and took a snapshot. But Snapshot creation was failure due to some authentication issues. Retries were happening but I was expecting reason for failure in kubectl describe snapshot O/P. Even after 17 minutes the…
ambikanair
  • 4,004
  • 11
  • 43
  • 83
0
votes
1 answer

Too many GRPC calls for create snapshot

In our CSI Driver, we recently included snapshot feature support. Using v6.0.1 external-snapshotter. I see that when we do a create snapshot action, too many GRPC calls are seen in the logs for csi.v1.Controller/CreateSnapshot cat driver.log | grep…
ambikanair
  • 4,004
  • 11
  • 43
  • 83
0
votes
2 answers

Velero: Backup and Restore using CSI snapshot

Installed velero using below command velero install --provider aws --plugins velero/velero-plugin-for-aws:v1.4.0,velero/velero-plugin-for-csi:v0.3.0 --bucket pbsnap --secret-file ./cred-velero --use-volume-snapshots=true …
ambikanair
  • 4,004
  • 11
  • 43
  • 83