Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for MountPath (0.56 sec)

  1. prow/config/calico.yaml

                - mountPath: /host/etc/cni/net.d
                  name: cni-net-dir
                  readOnly: false
                - mountPath: /lib/modules
                  name: lib-modules
                  readOnly: true
                - mountPath: /run/xtables.lock
                  name: xtables-lock
                  readOnly: false
                - mountPath: /var/run/calico
                  name: var-run-calico
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    		}
    		if len(mnt.MountPath) == 0 {
    			allErrs = append(allErrs, field.Required(idxPath.Child("mountPath"), ""))
    		}
    		if mountpoints.Has(mnt.MountPath) {
    			allErrs = append(allErrs, field.Invalid(idxPath.Child("mountPath"), mnt.MountPath, "must be unique"))
    		}
    		mountpoints.Insert(mnt.MountPath)
    
    		// check for overlap with VolumeDevice
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    type VolumeMountStatus struct {
    	// Name corresponds to the name of the original VolumeMount.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    	// MountPath corresponds to the original VolumeMount.
    	MountPath string `json:"mountPath" protobuf:"bytes,2,opt,name=mountPath"`
    	// ReadOnly corresponds to the original VolumeMount.
    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,3,opt,name=readOnly"`
    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. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string restartPolicy = 24;
    
      // Pod volumes to mount into the container's filesystem.
      // Cannot be updated.
      // +optional
      // +patchMergeKey=mountPath
      // +patchStrategy=merge
      // +listType=map
      // +listMapKey=mountPath
      repeated VolumeMount volumeMounts = 9;
    
      // volumeDevices is the list of block devices to be used by the container.
      // +patchMergeKey=devicePath
      // +patchStrategy=merge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    	out.Name = in.Name
    	out.ReadOnly = in.ReadOnly
    	out.RecursiveReadOnly = (*core.RecursiveReadOnlyMode)(unsafe.Pointer(in.RecursiveReadOnly))
    	out.MountPath = in.MountPath
    	out.SubPath = in.SubPath
    	out.MountPropagation = (*core.MountPropagationMode)(unsafe.Pointer(in.MountPropagation))
    	out.SubPathExpr = in.SubPathExpr
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  ],
                  "default": {}
                },
                "type": "array",
                "x-kubernetes-list-map-keys": [
                  "mountPath"
                ],
                "x-kubernetes-list-type": "map",
                "x-kubernetes-patch-merge-key": "mountPath",
                "x-kubernetes-patch-strategy": "merge"
              },
              "workingDir": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    type SecretVolume struct {
    	state         protoimpl.MessageState
    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	MountPath  string `protobuf:"bytes,1,opt,name=mountPath,proto3" json:"mountPath,omitempty"`
    	Name       string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
    	SecretName string `protobuf:"bytes,3,opt,name=secretName,proto3" json:"secretName,omitempty"`
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated ContainerResizePolicy resizePolicy = 23;
    
      // Pod volumes to mount into the container's filesystem.
      // Cannot be updated.
      // +optional
      // +patchMergeKey=mountPath
      // +patchStrategy=merge
      repeated VolumeMount volumeMounts = 9;
    
      // volumeDevices is the list of block devices to be used by the container.
      // +patchMergeKey=devicePath
      // +patchStrategy=merge
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    )
    
    // VolumeMountStatus shows status of volume mounts.
    type VolumeMountStatus struct {
    	// Name corresponds to the name of the original VolumeMount.
    	Name string
    	// MountPath corresponds to the original VolumeMount.
    	MountPath string
    	// ReadOnly corresponds to the original VolumeMount.
    	// +optional
    	ReadOnly bool
    	// RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    var map_VolumeMountStatus = map[string]string{
    	"":                  "VolumeMountStatus shows status of volume mounts.",
    	"name":              "Name corresponds to the name of the original VolumeMount.",
    	"mountPath":         "MountPath corresponds to the original VolumeMount.",
    	"readOnly":          "ReadOnly corresponds to the original VolumeMount.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top