Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for SeccompDefault (0.34 sec)

  1. cmd/kubelet/app/server.go

    		kubeServer.MaxContainerCount,
    		kubeServer.RegisterSchedulable,
    		kubeServer.NodeLabels,
    		kubeServer.NodeStatusMaxImages,
    		kubeServer.KubeletFlags.SeccompDefault || kubeServer.KubeletConfiguration.SeccompDefault)
    	if err != nil {
    		return nil, err
    	}
    
    	k.BirthCry()
    
    	k.StartGarbageCollection()
    
    	return k, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	minimumGCAge metav1.Duration,
    	maxPerPodContainerCount int32,
    	maxContainerCount int32,
    	registerSchedulable bool,
    	nodeLabels map[string]string,
    	nodeStatusMaxImages int32,
    	seccompDefault bool,
    ) (*Kubelet, error) {
    	ctx := context.Background()
    	logger := klog.TODO()
    
    	if rootDirectory == "" {
    		return nil, fmt.Errorf("invalid root directory %q", rootDirectory)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.25.md

        - [Moved container registry service from k8s.gcr.io to registry.k8s.io](#moved-container-registry-service-from-k8sgcrio-to-registryk8sio)
        - [Promoted SeccompDefault to Beta](#promoted-seccompdefault-to-beta)
        - [Promoted endPort in Network Policy to Stable](#promoted-endport-in-network-policy-to-stable)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.22.md

    - Added new kubelet alpha feature `SeccompDefault`. This feature enables falling back to
      the `RuntimeDefault` (former `runtime/default`) seccomp profile if nothing else is specified
      in the pod/container `SecurityContext` or the pod annotation level. To use the feature, enable
      the feature gate as well as set the kubelet configuration option `SeccompDefault`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - Removed `GA`ed feature gates `OpenAPIV3`. ([#121255](https://github.com/kubernetes/kubernetes/pull/121255), [@tukwila](https://github.com/tukwila))
    - Removed `GA`ed feature gates `SeccompDefault`. ([#121246](https://github.com/kubernetes/kubernetes/pull/121246), [@tukwila](https://github.com/tukwila))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Graduated seccomp profile defaulting to GA.
      
      Set the kubelet `--seccomp-default` flag or `seccompDefault` kubelet configuration field to `true` to make pods on that node default to using the `RuntimeDefault` seccomp profile.
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"seccompDefault": {
    						SchemaProps: spec.SchemaProps{
    							Description: "SeccompDefault enables the use of `RuntimeDefault` as the default seccomp profile for all workloads. Default: false",
    							Type:        []string{"boolean"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top