Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 283 for claimNames (0.59 sec)

  1. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    		pvcSource = &v1.PersistentVolumeClaimVolumeSource{
    			ClaimName: ephemeral.VolumeClaimName(pod, &podVolume),
    		}
    	}
    	if pvcSource != nil {
    		klog.V(5).InfoS("Found PVC", "PVC", klog.KRef(pod.Namespace, pvcSource.ClaimName))
    		// If podVolume is a PVC, fetch the real PV behind the claim
    		pvc, err := dswp.getPVCExtractPV(
    			pod.Namespace, pvcSource.ClaimName)
    		if err != nil {
    			return nil, nil, "", fmt.Errorf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. internal/config/identity/openid/openid.go

    	xnet "github.com/minio/pkg/v3/net"
    	"github.com/minio/pkg/v3/policy"
    )
    
    // OpenID keys and envs.
    const (
    	ClientID      = "client_id"
    	ClientSecret  = "client_secret"
    	ConfigURL     = "config_url"
    	ClaimName     = "claim_name"
    	ClaimUserinfo = "claim_userinfo"
    	RolePolicy    = "role_policy"
    	DisplayName   = "display_name"
    
    	Scopes             = "scopes"
    	RedirectURI        = "redirect_uri"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/util/util_test.go

    				Spec: v1.PodSpec{
    					Volumes: []v1.Volume{
    						{
    							Name: nonMigratedVolume,
    							VolumeSource: v1.VolumeSource{
    								PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
    									ClaimName: "non-migrated-pvc",
    									ReadOnly:  false,
    								},
    							},
    						},
    					},
    				},
    			},
    			wantPersistentVolume: &v1.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 05:42:38 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/user-volume.yaml.injected

            sidecar.istio.io/userVolume: '{"user-volume-1":{"persistentVolumeClaim":{"claimName":"pvc-claim"}},"user-volume-2":{"configMap":{"name":"configmap-volume","items":[{"key":"some-key","path":"/some-path"}]}}}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/types_test.go

    					v1.ResourceCPU: resource.MustParse("500m"),
    				},
    				Volumes: []v1.Volume{
    					{
    						VolumeSource: v1.VolumeSource{
    							PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{
    								ClaimName: "pvc-1",
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: "node_info_cache_test",
    				Name:      "test-2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  6. helm/minio/templates/deployment.yaml

                {{- else }}
                  value: {{ .Values.oidc.clientSecret }}
                {{- end }}
                - name: MINIO_IDENTITY_OPENID_CLAIM_NAME
                  value: {{ .Values.oidc.claimName }}
                - name: MINIO_IDENTITY_OPENID_CLAIM_PREFIX
                  value: {{ .Values.oidc.claimPrefix }}
                - name: MINIO_IDENTITY_OPENID_SCOPES
                  value: {{ .Values.oidc.scopes }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 03 17:50:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/volume_manager_test.go

    		case <-stopCh:
    			return
    		}
    	}
    }
    
    func delayClaimBecomesBound(
    	kubeClient clientset.Interface,
    	namespace, claimName string,
    ) {
    	time.Sleep(500 * time.Millisecond)
    	volumeClaim, _ :=
    		kubeClient.CoreV1().PersistentVolumeClaims(namespace).Get(context.TODO(), claimName, metav1.GetOptions{})
    	volumeClaim.Status = v1.PersistentVolumeClaimStatus{
    		Phase: v1.ClaimBound,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. pkg/controller/volume/persistentvolume/recycle_test.go

    							ClaimName: "runningClaim",
    						},
    					},
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			Phase: v1.PodRunning,
    		},
    	}
    
    	pendingPod := runningPod.DeepCopy()
    	pendingPod.Name = "pendingPod"
    	pendingPod.Status.Phase = v1.PodPending
    	pendingPod.Spec.Volumes[0].PersistentVolumeClaim.ClaimName = "pendingClaim"
    
    	completedPod := runningPod.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 00:37:30 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. pkg/kubelet/server/stats/volume_stat_calculator_test.go

    			Name: vol1,
    			VolumeSource: k8sv1.VolumeSource{
    				PersistentVolumeClaim: &k8sv1.PersistentVolumeClaimVolumeSource{
    					ClaimName: pvcClaimName0,
    				},
    			},
    		},
    		{
    			Name: vol2,
    			VolumeSource: k8sv1.VolumeSource{
    				PersistentVolumeClaim: &k8sv1.PersistentVolumeClaimVolumeSource{
    					ClaimName: pvcClaimName1,
    				},
    			},
    		},
    		{
    			Name: vol3,
    			VolumeSource: k8sv1.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    		}})
    	}
    	for i := 0; i < opts.uniqueResourceClaimsPerPod; i++ {
    		claimName := fmt.Sprintf("claim%d-%s-%s", i, pod.Name, pod.Namespace)
    		pod.Spec.ResourceClaims = append(pod.Spec.ResourceClaims, corev1.PodResourceClaim{
    			Name: fmt.Sprintf("claim%d", i),
    			Source: corev1.ClaimSource{
    				ResourceClaimName: &claimName,
    			},
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
Back to top