Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for SELinuxMount (0.3 sec)

  1. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    	return m.MarshalToSizedBuffer(dAtA[:size])
    }
    
    func (m *CSIDriverSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.SELinuxMount != nil {
    		i--
    		if *m.SELinuxMount {
    			dAtA[i] = 1
    		} else {
    			dAtA[i] = 0
    		}
    		i--
    		dAtA[i] = 0x40
    	}
    	if m.RequiresRepublish != nil {
    		i--
    		if *m.RequiresRepublish {
    			dAtA[i] = 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/generated.pb.go

    	return m.MarshalToSizedBuffer(dAtA[:size])
    }
    
    func (m *CSIDriverSpec) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.SELinuxMount != nil {
    		i--
    		if *m.SELinuxMount {
    			dAtA[i] = 1
    		} else {
    			dAtA[i] = 0
    		}
    		i--
    		dAtA[i] = 0x40
    	}
    	if m.RequiresRepublish != nil {
    		i--
    		if *m.RequiresRepublish {
    			dAtA[i] = 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.8K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter.go

    	if utilfeature.DefaultFeatureGate.Enabled(features.SELinuxMountReadWriteOncePod) {
    		support, err := c.plugin.SupportsSELinuxContextMount(c.spec)
    		if err != nil {
    			return errors.New(log("failed to query for SELinuxMount support: %s", err))
    		}
    		if support && mounterArgs.SELinuxLabel != "" {
    			mountOptions = util.AddSELinuxMountOption(mountOptions, mounterArgs.SELinuxLabel)
    			selinuxLabelMount = true
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (1)
  5. pkg/volume/csi/csi_attacher.go

    	if utilfeature.DefaultFeatureGate.Enabled(features.SELinuxMountReadWriteOncePod) {
    		support, err := c.plugin.SupportsSELinuxContextMount(spec)
    		if err != nil {
    			return errors.New(log("failed to query for SELinuxMount support: %s", err))
    		}
    		if support && deviceMounterArgs.SELinuxLabel != "" {
    			mountOptions = util.AddSELinuxMountOption(mountOptions, deviceMounterArgs.SELinuxLabel)
    			seLinuxSupported = true
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 07:38:14 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "boolean"
              },
              "seLinuxMount": {
    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/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)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

              "type": "boolean"
            },
            "seLinuxMount": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top