Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 108 for SecretRef (0.19 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.yaml

              - monitorsValue
              path: pathValue
              readOnly: true
              secretFile: secretFileValue
              secretRef:
                name: nameValue
              user: userValue
            cinder:
              fsType: fsTypeValue
              readOnly: true
              secretRef:
                name: nameValue
              volumeID: volumeIDValue
            configMap:
              defaultMode: 3
              items:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.yaml

              - monitorsValue
              path: pathValue
              readOnly: true
              secretFile: secretFileValue
              secretRef:
                name: nameValue
              user: userValue
            cinder:
              fsType: fsTypeValue
              readOnly: true
              secretRef:
                name: nameValue
              volumeID: volumeIDValue
            configMap:
              defaultMode: 3
              items:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.json

                      "keyring": "keyringValue",
                      "secretRef": {
                        "name": "nameValue"
                      },
                      "readOnly": true
                    },
                    "flexVolume": {
                      "driver": "driverValue",
                      "fsType": "fsTypeValue",
                      "secretRef": {
                        "name": "nameValue"
                      },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.yaml

              - monitorsValue
              path: pathValue
              readOnly: true
              secretFile: secretFileValue
              secretRef:
                name: nameValue
              user: userValue
            cinder:
              fsType: fsTypeValue
              readOnly: true
              secretRef:
                name: nameValue
              volumeID: volumeIDValue
            configMap:
              defaultMode: 3
              items:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  5. pkg/api/persistentvolume/util_test.go

    					PersistentVolumeSource: api.PersistentVolumeSource{
    						CephFS: &api.CephFSPersistentVolumeSource{
    							Monitors:   nil,
    							Path:       "",
    							User:       "",
    							SecretFile: "",
    							SecretRef:  nil,
    							ReadOnly:   false,
    						},
    					},
    				},
    			},
    			expected: []string{
    				`spec.cephfs: deprecated in v1.28, non-functional in v1.31+`,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. pkg/api/pod/util.go

    			}
    		case source.CephFS != nil:
    			if source.CephFS.SecretRef != nil && !visitor(source.CephFS.SecretRef.Name) {
    				return false
    			}
    		case source.Cinder != nil:
    			if source.Cinder.SecretRef != nil && !visitor(source.Cinder.SecretRef.Name) {
    				return false
    			}
    		case source.FlexVolume != nil:
    			if source.FlexVolume.SecretRef != nil && !visitor(source.FlexVolume.SecretRef.Name) {
    				return false
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.ScaleIO.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					ISCSI: &api.ISCSIVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    							Name: "Spec.Volumes[*].VolumeSource.ISCSI.SecretRef"}}}}, {
    				VolumeSource: api.VolumeSource{
    					StorageOS: &api.StorageOSVolumeSource{
    						SecretRef: &api.LocalObjectReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi.go

    		if spec.Volume.ISCSI.SecretRef != nil {
    			return spec.Volume.ISCSI.SecretRef.Name, defaultSecretNamespace, nil
    		}
    		return "", "", nil
    	} else if spec.PersistentVolume != nil &&
    		spec.PersistentVolume.Spec.ISCSI != nil {
    		secretRef := spec.PersistentVolume.Spec.ISCSI.SecretRef
    		secretNs := defaultSecretNamespace
    		if secretRef != nil {
    			if len(secretRef.Namespace) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. pkg/apis/core/zz_generated.deepcopy.go

    	*out = *in
    	if in.Monitors != nil {
    		in, out := &in.Monitors, &out.Monitors
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.SecretRef != nil {
    		in, out := &in.SecretRef, &out.SecretRef
    		*out = new(SecretReference)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CephFSPersistentVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	*out = *in
    	if in.Monitors != nil {
    		in, out := &in.Monitors, &out.Monitors
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.SecretRef != nil {
    		in, out := &in.SecretRef, &out.SecretRef
    		*out = new(SecretReference)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CephFSPersistentVolumeSource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
Back to top