Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 241 for SecretRef (0.1 sec)

  1. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta1.StatefulSet.json

                  "user": "userValue",
                  "keyring": "keyringValue",
                  "secretRef": {
                    "name": "nameValue"
                  },
                  "readOnly": true
                },
                "flexVolume": {
                  "driver": "driverValue",
                  "fsType": "fsTypeValue",
                  "secretRef": {
                    "name": "nameValue"
                  },
                  "readOnly": true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

        cephfs:
          monitors:
          - 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:
          - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.yaml

                  path: pathValue
                  readOnly: true
                  secretFile: secretFileValue
                  secretRef:
                    name: nameValue
                  user: userValue
                cinder:
                  fsType: fsTypeValue
                  readOnly: true
                  secretRef:
                    name: nameValue
                  volumeID: volumeIDValue
                configMap:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

                  path: pathValue
                  readOnly: true
                  secretFile: secretFileValue
                  secretRef:
                    name: nameValue
                  user: userValue
                cinder:
                  fsType: fsTypeValue
                  readOnly: true
                  secretRef:
                    name: nameValue
                  volumeID: volumeIDValue
                configMap:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.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)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.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)
  7. 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)
  8. pkg/volume/csi/csi_util.go

    func getCredentialsFromSecret(k8s kubernetes.Interface, secretRef *api.SecretReference) (map[string]string, error) {
    	credentials := map[string]string{}
    	secret, err := k8s.CoreV1().Secrets(secretRef.Namespace).Get(context.TODO(), secretRef.Name, meta.GetOptions{})
    	if err != nil {
    		return credentials, errors.New(log("failed to find the secret %s in the namespace %s with error: %v", secretRef.Name, secretRef.Namespace, err))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 17:14:00 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top