Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for SELinuxMount (0.28 sec)

  1. staging/src/k8s.io/api/storage/v1/types.go

    	//
    	// Default is "false".
    	//
    	// +featureGate=SELinuxMountReadWriteOncePod
    	// +optional
    	SELinuxMount *bool `json:"seLinuxMount,omitempty" protobuf:"varint,8,opt,name=seLinuxMount"`
    }
    
    // FSGroupPolicy specifies if a CSI Driver supports modifying
    // volume ownership and permissions of the volume to be mounted.
    // More modes may be added in the future.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	// kep: https://kep.k8s.io/1710
    	// alpha: v1.30
    	// Speed up container startup by mounting volumes with the correct SELinux label
    	// instead of changing each file on the volumes recursively.
    	SELinuxMount featuregate.Feature = "SELinuxMount"
    
    	// owner: @AkihiroSuda
    	// kep: https://kep.k8s.io/3857
    	// alpha: v1.30
    	//
    	// Allows recursive read-only mounts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_plugin.go

    		}
    		csiDriver, err := p.getCSIDriver(driver)
    		if err != nil {
    			if apierrors.IsNotFound(err) {
    				return false, nil
    			}
    			return false, err
    		}
    		if csiDriver.Spec.SELinuxMount != nil {
    			return *csiDriver.Spec.SELinuxMount, nil
    		}
    		return false, nil
    	}
    	return false, nil
    }
    
    // volume.AttachableVolumePlugin methods
    var _ volume.AttachableVolumePlugin = &csiPlugin{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_executor.go

    	// SELinux label that should be used to mount.
    	// The label is set when:
    	// * SELinuxMountReadWriteOncePod feature gate is enabled and the volume is RWOP and kubelet knows the SELinux label.
    	// * Or, SELinuxMount feature gate is enabled and kubelet knows the SELinux label.
    	SELinuxLabel string
    }
    
    // DeviceMountState represents device mount state in a global path.
    type DeviceMountState string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    - Introduced a new alpha feature gate, `SELinuxMount`, which can now be enabled to accelerate SELinux relabeling. ([#123157](https://github.com/kubernetes/kubernetes/pull/123157), [@jsafrane](https://github.com/jsafrane))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"seLinuxMount": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

              "type": "boolean"
            },
            "seLinuxMount": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top