public async Task CreatePvc(V1PersistentVolumeClaim pvc)
 {
     logger.LogInformation("Creating pvc {0} in namespace {1}", pvc.Metadata.Name, ns);
     await client.CreateNamespacedPersistentVolumeClaimAsync(pvc, ns);
 }
 public async Task CreatePvc(V1PersistentVolumeClaim pvc)
 {
     await client.CreateNamespacedPersistentVolumeClaimAsync(pvc, ns);
 }