Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for SecretReference (0.13 sec)

  1. pkg/api/v1/persistentvolume/util_test.go

    				CephFS: &corev1.CephFSPersistentVolumeSource{
    					SecretRef: &corev1.SecretReference{
    						Name: "Spec.PersistentVolumeSource.CephFS.SecretRef"}}}}},
    		{Spec: corev1.PersistentVolumeSpec{
    			PersistentVolumeSource: corev1.PersistentVolumeSource{
    				Cinder: &corev1.CinderPersistentVolumeSource{
    					SecretRef: &corev1.SecretReference{
    						Name:      "Spec.PersistentVolumeSource.Cinder.SecretRef",
    						Namespace: "cinder"}}}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. pkg/volume/iscsi/iscsi_test.go

    								TargetPortal: "127.0.0.1:3260",
    								IQN:          "iqn.2014-12.server:storage.target01",
    								FSType:       "ext4",
    								Lun:          0,
    								SecretRef: &v1.SecretReference{
    									Name:      "name",
    									Namespace: "ns",
    								},
    							},
    						},
    					},
    				},
    			},
    			expectedName:  "name",
    			expectedNs:    "ns",
    			expectedError: nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 16.4K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_mounter.go

    		volAttribs         map[string]string
    		nodePublishSecrets map[string]string
    		publishContext     map[string]string
    		mountOptions       []string
    		deviceMountPath    string
    		secretRef          *api.SecretReference
    	)
    
    	switch {
    	case volSrc != nil:
    		if c.volumeLifecycleMode != storage.VolumeLifecycleEphemeral {
    			return fmt.Errorf("unexpected volume mode: %s", c.volumeLifecycleMode)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	for i := 0; i < opts.uniquePVCsPerPod; i++ {
    		pv := &corev1.PersistentVolume{}
    		pv.Name = fmt.Sprintf("pv%d-%s-%s", i, pod.Name, pod.Namespace)
    		pv.Spec.FlexVolume = &corev1.FlexPersistentVolumeSource{SecretRef: &corev1.SecretReference{Name: fmt.Sprintf("secret-%s", pv.Name)}}
    		pv.Spec.ClaimRef = &corev1.ObjectReference{Name: fmt.Sprintf("pvc%d-%s", i, pod.Name), Namespace: pod.Namespace}
    		pvs = append(pvs, pv)
    
    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