Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for VolumeMounts (0.25 sec)

  1. pkg/apis/core/types.go

    	// ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume
    	ClaimName string
    	// Optional: Defaults to false (read/write).  ReadOnly here
    	// will force the ReadOnly setting in VolumeMounts
    	// +optional
    	ReadOnly bool
    }
    
    const (
    	// BetaStorageClassAnnotation represents the beta/previous StorageClass annotation.
    	// It's deprecated and will be removed in a future release. (#51440)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"readOnly":  "readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
    }
    
    func (AWSElasticBlockStoreVolumeSource) SwaggerDoc() map[string]string {
    	return map_AWSElasticBlockStoreVolumeSource
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
      // +optional
      optional int32 partition = 3;
    
      // readOnly value true will force the readOnly setting in VolumeMounts.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
      // +optional
      optional bool readOnly = 4;
    }
    
    // Affinity is a group of affinity scheduling rules.
    message Affinity {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// Cannot be updated.
    	// +optional
    	// +patchMergeKey=mountPath
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=mountPath
    	VolumeMounts []VolumeMount `json:"volumeMounts,omitempty" patchStrategy:"merge" patchMergeKey:"mountPath" protobuf:"bytes,9,rep,name=volumeMounts"`
    	// volumeDevices is the list of block devices to be used by the container.
    	// +patchMergeKey=devicePath
    	// +patchStrategy=merge
    	// +listType=map
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/generated.proto

      // Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
      // +optional
      optional int32 partition = 3;
    
      // readOnly value true will force the readOnly setting in VolumeMounts.
      // More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
      // +optional
      optional bool readOnly = 4;
    }
    
    // Affinity is a group of affinity scheduling rules.
    message Affinity {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "readOnly": {
                "description": "readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
                "type": "boolean"
              },
              "volumeID": {
                "default": "",
    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. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	out.ResizePolicy = *(*[]core.ContainerResizePolicy)(unsafe.Pointer(&in.ResizePolicy))
    	out.RestartPolicy = (*core.ContainerRestartPolicy)(unsafe.Pointer(in.RestartPolicy))
    	out.VolumeMounts = *(*[]core.VolumeMount)(unsafe.Pointer(&in.VolumeMounts))
    	out.VolumeDevices = *(*[]core.VolumeDevice)(unsafe.Pointer(&in.VolumeDevices))
    	out.LivenessProbe = (*core.Probe)(unsafe.Pointer(in.LivenessProbe))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "readOnly": {
                "description": "readOnly value true will force the readOnly setting in VolumeMounts. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore",
                "type": "boolean"
              },
              "volumeID": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		for i, vm := range ec.VolumeMounts {
    			if vm.SubPath != "" {
    				allErrs = append(allErrs, field.Forbidden(idxPath.Child("volumeMounts").Index(i).Child("subPath"), "cannot be set for an Ephemeral Container"))
    			}
    			if vm.SubPathExpr != "" {
    				allErrs = append(allErrs, field.Forbidden(idxPath.Child("volumeMounts").Index(i).Child("subPathExpr"), "cannot be set for an Ephemeral Container"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. prow/config/calico.yaml

                - name: CALICO_NETWORKING_BACKEND
                  valueFrom:
                    configMapKeyRef:
                      name: calico-config
                      key: calico_backend
              volumeMounts:
                - mountPath: /var/lib/cni/networks
                  name: host-local-net-dir
                - mountPath: /host/opt/cni/bin
                  name: cni-bin-dir
              securityContext:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top