Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for volumeID (0.17 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "partition": {
              "description": "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  2. pkg/api/pod/util_test.go

    		"Spec.Volumes[*].VolumeSource.AzureFile.SecretName",
    		"Spec.Volumes[*].VolumeSource.CephFS.SecretRef",
    		"Spec.Volumes[*].VolumeSource.Cinder.SecretRef",
    		"Spec.Volumes[*].VolumeSource.FlexVolume.SecretRef",
    		"Spec.Volumes[*].VolumeSource.Projected.Sources[*].Secret",
    		"Spec.Volumes[*].VolumeSource.RBD.SecretRef",
    		"Spec.Volumes[*].VolumeSource.Secret",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pkg/volume/util/operationexecutor/operation_generator.go

    	// volumesPerPlugin maps from a volume plugin to a list of volume specs which belong
    	// to this type of plugin
    	volumesPerPlugin := make(map[string][]*volume.Spec)
    	// volumeSpecMap maps from a volume spec to its unique volumeName which will be used
    	// when calling MarkVolumeAsDetached
    	volumeSpecMap := make(map[*volume.Spec]v1.UniqueVolumeName)
    
    	// Iterate each volume spec and put them into a map index by the pluginName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	utilkernel "k8s.io/kubernetes/pkg/util/kernel"
    	utilpod "k8s.io/kubernetes/pkg/util/pod"
    	volumeutil "k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    	"k8s.io/kubernetes/pkg/volume/util/volumepathhandler"
    	volumevalidation "k8s.io/kubernetes/pkg/volume/validation"
    	"k8s.io/kubernetes/third_party/forked/golang/expansion"
    	utilnet "k8s.io/utils/net"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers_test.go

    	}
    }
    
    func newVolume(name string, volumeSource v1.VolumeSource) v1.Volume {
    	return v1.Volume{
    		Name:         name,
    		VolumeSource: volumeSource,
    	}
    }
    
    // newPod uses the name as the uid.  Make names unique for testing.
    func newPod(name string, priority int32, containers []v1.Container, volumes []v1.Volume) *v1.Pod {
    	return &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    	"k8s.io/kubernetes/pkg/util/oom"
    	"k8s.io/kubernetes/pkg/volume"
    	_ "k8s.io/kubernetes/pkg/volume/hostpath"
    	volumesecret "k8s.io/kubernetes/pkg/volume/secret"
    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    	"k8s.io/utils/clock"
    	testingclock "k8s.io/utils/clock/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    - **Storage**
      - [beta] Persistent Volume provisioning now supports multiple provisioners using StorageClass configuration. ([docs](http://kubernetes.io/docs/user-guide/persistent-volumes/)) ([kubernetes/features#36](https://github.com/kubernetes/enhancements/issues/36))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    wittrock))
    
    * The strategicmerge patchMergeKey for VolumeMounts was changed from "name" to "mountPath".  This was necessary because the name field refers to the name of the Volume, and is not a unique key for the VolumeMount.  Multiple VolumeMounts will have the same Volume name if mounting the same volume more than once.  The "mountPath" is verified to be unique and can act as the mergekey.  ([#35071](https://github.com/kubernetes/kubernetes/pull/35071), [@pwittrock](https://github.com/pwittrock))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  9. cmd/storage-datatypes_gen.go

    		case "id":
    			z.DiskID, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "DiskID")
    				return
    			}
    		case "v":
    			z.Volume, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "Volume")
    				return
    			}
    		case "fp":
    			z.FilePath, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "FilePath")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                - name: "{{  $index }}"
                  {{ toYaml $value | indent 6 }}
                  {{ end }}
                  {{- end }}
              volumes:
              - emptyDir:
                name: workload-socket
              - emptyDir:
                name: credential-socket
              {{- if eq .Values.global.caName "GkeWorkloadCertificate" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
Back to top