Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for seccompProfile (0.17 sec)

  1. pkg/kubelet/kuberuntime/helpers_linux_test.go

    			podSc:         &v1.PodSecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeLocalhost}},
    			expectedError: "localhostProfile must be set if seccompProfile type is Localhost.",
    		},
    		{
    			description:   "container seccomp profile set to SeccompProfileTypeLocalhost with empty LocalhostProfile returns error",
    			containerSc:   &v1.SecurityContext{SeccompProfile: &v1.SeccompProfile{Type: v1.SeccompProfileTypeLocalhost}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/helpers.go

    	if containerSecContext != nil && containerSecContext.SeccompProfile != nil {
    		return fieldSeccompProfile(containerSecContext.SeccompProfile, m.seccompProfileRoot, fallbackToRuntimeDefault)
    	}
    
    	// when container seccomp is not defined, try to apply from pod field
    	if podSecContext != nil && podSecContext.SeccompProfile != nil {
    		return fieldSeccompProfile(podSecContext.SeccompProfile, m.seccompProfileRoot, fallbackToRuntimeDefault)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_sandbox_test.go

    	pod := newTestPod()
    	if podFieldProfile != nil {
    		pod.Spec.SecurityContext = &v1.PodSecurityContext{
    			SeccompProfile: podFieldProfile,
    		}
    	}
    	if containerFieldProfile != nil {
    		pod.Spec.Containers[0].SecurityContext = &v1.SecurityContext{
    			SeccompProfile: containerFieldProfile,
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/apps.v1.ReplicaSet.yaml

              runAsNonRoot: true
              runAsUser: 4
              seLinuxOptions:
                level: levelValue
                role: roleValue
                type: typeValue
                user: userValue
              seccompProfile:
                localhostProfile: localhostProfileValue
                type: typeValue
              windowsOptions:
                gmsaCredentialSpec: gmsaCredentialSpecValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/apps.v1.DaemonSet.yaml

              runAsNonRoot: true
              runAsUser: 4
              seLinuxOptions:
                level: levelValue
                role: roleValue
                type: typeValue
                user: userValue
              seccompProfile:
                localhostProfile: localhostProfileValue
                type: typeValue
              windowsOptions:
                gmsaCredentialSpec: gmsaCredentialSpecValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.DaemonSet.yaml

              runAsNonRoot: true
              runAsUser: 4
              seLinuxOptions:
                level: levelValue
                role: roleValue
                type: typeValue
                user: userValue
              seccompProfile:
                localhostProfile: localhostProfileValue
                type: typeValue
              windowsOptions:
                gmsaCredentialSpec: gmsaCredentialSpecValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml

                  runAsUser: 4
                  seLinuxOptions:
                    level: levelValue
                    role: roleValue
                    type: typeValue
                    user: userValue
                  seccompProfile:
                    localhostProfile: localhostProfileValue
                    type: typeValue
                  windowsOptions:
                    gmsaCredentialSpec: gmsaCredentialSpecValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.yaml

              runAsNonRoot: true
              runAsUser: 4
              seLinuxOptions:
                level: levelValue
                role: roleValue
                type: typeValue
                user: userValue
              seccompProfile:
                localhostProfile: localhostProfileValue
                type: typeValue
              windowsOptions:
                gmsaCredentialSpec: gmsaCredentialSpecValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/extensions.v1beta1.Deployment.yaml

              runAsNonRoot: true
              runAsUser: 4
              seLinuxOptions:
                level: levelValue
                role: roleValue
                type: typeValue
                user: userValue
              seccompProfile:
                localhostProfile: localhostProfileValue
                type: typeValue
              windowsOptions:
                gmsaCredentialSpec: gmsaCredentialSpecValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/extensions.v1beta1.DaemonSet.yaml

              runAsNonRoot: true
              runAsUser: 4
              seLinuxOptions:
                level: levelValue
                role: roleValue
                type: typeValue
                user: userValue
              seccompProfile:
                localhostProfile: localhostProfileValue
                type: typeValue
              windowsOptions:
                gmsaCredentialSpec: gmsaCredentialSpecValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top