Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 123 for rbd (0.05 sec)

  1. pkg/api/pod/warnings_test.go

    		},
    
    		{
    			name: "rbd",
    			template: &api.PodTemplateSpec{Spec: api.PodSpec{
    				Volumes: []api.Volume{
    					{Name: "s", VolumeSource: api.VolumeSource{RBD: &api.RBDVolumeSource{}}},
    				}},
    			},
    			expected: []string{`spec.volumes[0].rbd: deprecated in v1.28, non-functional in v1.31+`},
    		},
    		{
    			name: "duplicate hostAlias",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional NFSVolumeSource nfs = 5;
    
      // rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
      // More info: https://examples.k8s.io/volumes/rbd/README.md
      // +optional
      optional RBDPersistentVolumeSource rbd = 6;
    
      // iscsi represents an ISCSI Disk resource that is attached to a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// rbd represents a Rados Block Device mount on the host that shares a pod's lifetime.
    	// More info: https://examples.k8s.io/volumes/rbd/README.md
    	// +optional
    	RBD *RBDVolumeSource `json:"rbd,omitempty" protobuf:"bytes,11,opt,name=rbd"`
    	// flexVolume represents a generic volume resource that is
    	// provisioned/attached using an exec based plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. pkg/api/pod/util.go

    				if source.Projected.Sources[j].Secret != nil {
    					if !visitor(source.Projected.Sources[j].Secret.Name) {
    						return false
    					}
    				}
    			}
    		case source.RBD != nil:
    			if source.RBD.SecretRef != nil && !visitor(source.RBD.SecretRef.Name) {
    				return false
    			}
    		case source.Secret != nil:
    			if !visitor(source.Secret.SecretName) {
    				return false
    			}
    		case source.ScaleIO != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/apps.v1.Deployment.json

                  "readOnly": true
                },
                "persistentVolumeClaim": {
                  "claimName": "claimNameValue",
                  "readOnly": true
                },
                "rbd": {
                  "monitors": [
                    "monitorsValue"
                  ],
                  "image": "imageValue",
                  "fsType": "fsTypeValue",
                  "pool": "poolValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml

            quobyte:
              group: groupValue
              readOnly: true
              registry: registryValue
              tenant: tenantValue
              user: userValue
              volume: volumeValue
            rbd:
              fsType: fsTypeValue
              image: imageValue
              keyring: keyringValue
              monitors:
              - monitorsValue
              pool: poolValue
              readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.Deployment.json

                  "readOnly": true
                },
                "persistentVolumeClaim": {
                  "claimName": "claimNameValue",
                  "readOnly": true
                },
                "rbd": {
                  "monitors": [
                    "monitorsValue"
                  ],
                  "image": "imageValue",
                  "fsType": "fsTypeValue",
                  "pool": "poolValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml

            quobyte:
              group: groupValue
              readOnly: true
              registry: registryValue
              tenant: tenantValue
              user: userValue
              volume: volumeValue
            rbd:
              fsType: fsTypeValue
              image: imageValue
              keyring: keyringValue
              monitors:
              - monitorsValue
              pool: poolValue
              readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.json

                  "readOnly": true
                },
                "persistentVolumeClaim": {
                  "claimName": "claimNameValue",
                  "readOnly": true
                },
                "rbd": {
                  "monitors": [
                    "monitorsValue"
                  ],
                  "image": "imageValue",
                  "fsType": "fsTypeValue",
                  "pool": "poolValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PodTemplate.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top