Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for SeccompDefault (0.25 sec)

  1. pkg/kubelet/kuberuntime/security_context.go

    		}
    	}
    	var err error
    
    	synthesized.Seccomp, err = m.getSeccompProfile(pod.Annotations, container.Name, pod.Spec.SecurityContext, container.SecurityContext, m.seccompDefault)
    	if err != nil {
    		return nil, err
    	}
    
    	// set ApparmorProfile.
    	synthesized.Apparmor, synthesized.ApparmorProfile, err = getAppArmorProfile(pod, container)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	// schedulable. Won't have any effect if register-node is false.
    	// DEPRECATED: use registerWithTaints instead
    	RegisterSchedulable bool
    	// SeccompDefault enables the use of `RuntimeDefault` as the default seccomp profile for all workloads on the node.
    	SeccompDefault bool
    }
    
    // NewKubeletFlags will create a new KubeletFlags with default values
    func NewKubeletFlags() *KubeletFlags {
    	return &KubeletFlags{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/helpers_test.go

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		logManager:             logManager,
    		runtimeClassManager:    runtimeClassManager,
    		logReduction:           logreduction.NewLogReduction(identicalErrorDelay),
    		seccompDefault:         seccompDefault,
    		memorySwapBehavior:     memorySwapBehavior,
    		getNodeAllocatable:     getNodeAllocatable,
    		memoryThrottlingFactor: memoryThrottlingFactor,
    		podLogsDirectory:       podLogsDirectory,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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