Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for SELinuxMount (0.13 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/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    			pluginSupportsSELinux:   true,
    			expectedContext:         "system_u:object_r:container_file_t:s0:c3,c4",
    		},
    		{
    			name:                    "RWX with plugin with SELinux with full context in pod and SELinuxMount feature disabled",
    			accessModes:             []v1.PersistentVolumeAccessMode{v1.ReadWriteMany},
    			newContainerSELinuxOpts: fullOpts,
    			pluginSupportsSELinux:   true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"seLinuxMount":         "seLinuxMount specifies if the CSI driver supports \"-o context\" mount option.\n\nWhen \"true\", the CSI driver must ensure that all volumes provided by this CSI driver can be mounted separately with different `-o context` options. This is typical...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  4. 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)
  5. common-protos/k8s.io/api/storage/v1/generated.proto

      // to NodePublishVolume should only update the contents of the volume. New
      // mount points will not be seen by a running container.
      //
      // +optional
      optional bool requiresRepublish = 7;
    
      // seLinuxMount specifies if the CSI driver supports "-o context"
      // mount option.
      //
      // When "true", the CSI driver must ensure that all volumes provided by this CSI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    	"seLinuxMount":         "seLinuxMount specifies if the CSI driver supports \"-o context\" mount option.\n\nWhen \"true\", the CSI driver must ensure that all volumes provided by this CSI driver can be mounted separately with different `-o context` options. This is typical...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/api/storage/v1/generated.proto

      // to NodePublishVolume should only update the contents of the volume. New
      // mount points will not be seen by a running container.
      //
      // +optional
      optional bool requiresRepublish = 7;
    
      // seLinuxMount specifies if the CSI driver supports "-o context"
      // mount option.
      //
      // When "true", the CSI driver must ensure that all volumes provided by this CSI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1beta1/generated.proto

      // to NodePublishVolume should only update the contents of the volume. New
      // mount points will not be seen by a running container.
      //
      // +optional
      optional bool requiresRepublish = 7;
    
      // seLinuxMount specifies if the CSI driver supports "-o context"
      // mount option.
      //
      // When "true", the CSI driver must ensure that all volumes provided by this CSI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  10. pkg/apis/storage/types.go

    	// to NodePublishVolume should only update the contents of the volume. New
    	// mount points will not be seen by a running container.
    	//
    	// +optional
    	RequiresRepublish *bool
    
    	// SELinuxMount specifies if the CSI driver supports "-o context"
    	// mount option.
    	//
    	// When "true", the CSI driver must ensure that all volumes provided by this CSI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
Back to top