Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for VolumeMountStatus (0.47 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	if err := s.AddGeneratedConversionFunc((*v1.VolumeMountStatus)(nil), (*core.VolumeMountStatus)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_VolumeMountStatus_To_core_VolumeMountStatus(a.(*v1.VolumeMountStatus), b.(*core.VolumeMountStatus), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    func (in *VolumeMountStatus) DeepCopyInto(out *VolumeMountStatus) {
    	*out = *in
    	if in.RecursiveReadOnly != nil {
    		in, out := &in.RecursiveReadOnly, &out.RecursiveReadOnly
    		*out = new(RecursiveReadOnlyMode)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeMountStatus.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *VolumeMountStatus) DeepCopyInto(out *VolumeMountStatus) {
    	*out = *in
    	if in.RecursiveReadOnly != nil {
    		in, out := &in.RecursiveReadOnly, &out.RecursiveReadOnly
    		*out = new(RecursiveReadOnlyMode)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new VolumeMountStatus.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.pb.go

    func (m *VolumeMountStatus) Reset()      { *m = VolumeMountStatus{} }
    func (*VolumeMountStatus) ProtoMessage() {}
    func (*VolumeMountStatus) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{219}
    }
    func (m *VolumeMountStatus) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *VolumeMountStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// Requested pod resize is not feasible and will not be re-evaluated.
    	PodResizeStatusInfeasible PodResizeStatus = "Infeasible"
    )
    
    // 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    		// because the CRI API is unaware of the volume names.
    		if utilfeature.DefaultFeatureGate.Enabled(features.RecursiveReadOnlyMounts) {
    			for _, vol := range container.VolumeMounts {
    				volStatus := v1.VolumeMountStatus{
    					Name:      vol.Name,
    					MountPath: vol.MountPath,
    					ReadOnly:  vol.ReadOnly,
    				}
    				if vol.ReadOnly {
    					rroMode := v1.RecursiveReadOnlyDisabled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/generated.proto

      // Defaults to "" (volume's root).
      // SubPathExpr and SubPath are mutually exclusive.
      // +optional
      optional string subPathExpr = 6;
    }
    
    // VolumeMountStatus shows status of volume mounts.
    message VolumeMountStatus {
      // Name corresponds to the name of the original VolumeMount.
      optional string name = 1;
    
      // MountPath corresponds to the original VolumeMount.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (VolumeMount) SwaggerDoc() map[string]string {
    	return map_VolumeMount
    }
    
    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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// Requested pod resize is not feasible and will not be re-evaluated.
    	PodResizeStatusInfeasible PodResizeStatus = "Infeasible"
    )
    
    // VolumeMountStatus shows status of volume mounts.
    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.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/api__v1_openapi.json

              }
            },
            "required": [
              "name",
              "mountPath"
            ],
            "type": "object"
          },
          "io.k8s.api.core.v1.VolumeMountStatus": {
            "description": "VolumeMountStatus shows status of volume mounts.",
            "properties": {
              "mountPath": {
                "default": "",
                "description": "MountPath corresponds to the original VolumeMount.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
Back to top