Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for SELinux (0.14 sec)

  1. staging/src/k8s.io/api/core/v1/generated.proto

    message SELinuxOptions {
      // User is a SELinux user label that applies to the container.
      // +optional
      optional string user = 1;
    
      // Role is a SELinux role label that applies to the container.
      // +optional
      optional string role = 2;
    
      // Type is a SELinux type label that applies to the container.
      // +optional
      optional string type = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/storage/v1/generated.proto

      // option when mounting a ReadWriteOncePod volume used in Pod that has
      // explicitly set SELinux context. In the future, it may be expanded to other
      // volume AccessModes. In any case, Kubernetes will ensure that the volume is
      // mounted only with a single SELinux context.
      //
      // When "false", Kubernetes won't pass any special SELinux mount options to the driver.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // hostIPC determines if the policy allows the use of HostIPC in the pod spec.
      // +optional
      optional bool hostIPC = 9;
    
      // seLinux is the strategy that will dictate the allowable labels that may be set.
      optional SELinuxStrategyOptions seLinux = 10;
    
      // runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.
      optional RunAsUserStrategyOptions runAsUser = 11;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_plugin_test.go

    			originSpec: volume.NewSpecFromPersistentVolume(makeTestPV("spec2", 20, testDriver, "handle2"), true),
    			podUID:     types.UID(fmt.Sprintf("%08X", rand.Uint64())),
    		},
    		{
    			name:                      "construct SELinux context from original persistent spec when the feature is enabled",
    			seLinuxMountEnabled:       true,
    			specVolID:                 "spec3",
    			volHandle:                 "handle3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// option when mounting a ReadWriteOncePod volume used in Pod that has
    	// explicitly set SELinux context. In the future, it may be expanded to other
    	// volume AccessModes. In any case, Kubernetes will ensure that the volume is
    	// mounted only with a single SELinux context.
    	//
    	// When "false", Kubernetes won't pass any special SELinux mount options to the driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_mounter_test.go

    		{
    			name:                     "should not include selinux mount options, if feature gate is enabled but driver does not support it",
    			driver:                   "no_selinux",
    			seLinuxLabel:             "s0,c0",
    			volumeContext:            nil,
    			enableSELinuxFeatureGate: true,
    			expectedVolumeContext:    nil,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. pkg/apis/storage/types.go

    	// option when mounting a ReadWriteOncePod volume used in Pod that has
    	// explicitly set SELinux context. In the future, it may be expanded to other
    	// volume AccessModes. In any case, Kubernetes will ensure that the volume is
    	// mounted only with a single SELinux context.
    	//
    	// When "false", Kubernetes won't pass any special SELinux mount options to the driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1/types.go

    	// option when mounting a ReadWriteOncePod volume used in Pod that has
    	// explicitly set SELinux context. In the future, it may be expanded to other
    	// volume AccessModes. In any case, Kubernetes will ensure that the volume is
    	// mounted only with a single SELinux context.
    	//
    	// When "false", Kubernetes won't pass any special SELinux mount options to the driver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	"net/url"
    	"os"
    	"path/filepath"
    	"regexp"
    	goruntime "runtime"
    	"sort"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	crierror "k8s.io/cri-api/pkg/errors"
    
    	"github.com/opencontainers/selinux/go-selinux"
    	grpcstatus "google.golang.org/grpc/status"
    
    	"github.com/armon/circbuf"
    	"k8s.io/klog/v2"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	kubetypes "k8s.io/apimachinery/pkg/types"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    // a volume mounted with a different SELinux label than expected.
    type seLinuxMountMismatchError struct {
    	volumeName v1.UniqueVolumeName
    }
    
    func (err seLinuxMountMismatchError) Error() string {
    	return fmt.Sprintf(
    		"waiting for unmount of volume %q, because it is already mounted to a different pod with a different SELinux label",
    		err.volumeName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
Back to top