Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for seccompProfile (0.18 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.StatefulSet.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
    - 37.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/core.v1.Pod.yaml

          runAsGroup: 8
          runAsNonRoot: true
          runAsUser: 4
          seLinuxOptions:
            level: levelValue
            role: roleValue
            type: typeValue
            user: userValue
          seccompProfile:
            localhostProfile: localhostProfileValue
            type: typeValue
          windowsOptions:
            gmsaCredentialSpec: gmsaCredentialSpecValue
            gmsaCredentialSpecName: gmsaCredentialSpecNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.Pod.yaml

          runAsGroup: 8
          runAsNonRoot: true
          runAsUser: 4
          seLinuxOptions:
            level: levelValue
            role: roleValue
            type: typeValue
            user: userValue
          seccompProfile:
            localhostProfile: localhostProfileValue
            type: typeValue
          windowsOptions:
            gmsaCredentialSpec: gmsaCredentialSpecValue
            gmsaCredentialSpecName: gmsaCredentialSpecNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 32.3K bytes
    - Viewed (0)
  4. pkg/api/pod/warnings_test.go

    				}},
    				Spec: api.PodSpec{
    					SecurityContext: &api.PodSecurityContext{
    						SeccompProfile: &api.SeccompProfile{Type: api.SeccompProfileTypeRuntimeDefault},
    					},
    					Containers: []api.Container{{
    						Name: "foo",
    						SecurityContext: &api.SecurityContext{
    							SeccompProfile: &api.SeccompProfile{Type: api.SeccompProfileTypeRuntimeDefault},
    						},
    					}},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/staticpod/utils.go

    			Priority:          &priority,
    			PriorityClassName: "system-node-critical",
    			HostNetwork:       true,
    			Volumes:           VolumeMapToSlice(volumes),
    			SecurityContext: &v1.PodSecurityContext{
    				SeccompProfile: &v1.SeccompProfile{
    					Type: v1.SeccompProfileTypeRuntimeDefault,
    				},
    			},
    		},
    	}
    }
    
    // ComponentResources returns the v1.ResourceRequirements object needed for allocating a specified amount of the CPU
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/staticpod/utils_test.go

    					Namespace: "kube-system",
    					Labels:    map[string]string{"component": "foo", "tier": "control-plane"},
    				},
    				Spec: v1.PodSpec{
    					SecurityContext: &v1.PodSecurityContext{
    						SeccompProfile: &v1.SeccompProfile{
    							Type: v1.SeccompProfileTypeRuntimeDefault,
    						},
    					},
    					Containers: []v1.Container{
    						{
    							Name: "foo",
    						},
    					},
    					Priority:          &priority,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 12 15:44:44 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  7. plugin/pkg/admission/security/podsecurity/testdata/pod_restricted.yaml

      priority: 2000000000
      priorityClassName: system-cluster-critical
      restartPolicy: Always
      schedulerName: default-scheduler
      securityContext:
        fsGroup: 65534
        seccompProfile:
          type: RuntimeDefault
        supplementalGroups:
        - 65534
      serviceAccount: kube-dns
      serviceAccountName: kube-dns
      terminationGracePeriodSeconds: 30
      tolerations:
      - key: CriticalAddonsOnly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.3K bytes
    - Viewed (0)
  8. plugin/pkg/admission/security/podsecurity/testdata/pod_baseline.yaml

      priority: 2000000000
      priorityClassName: system-cluster-critical
      restartPolicy: Always
      schedulerName: default-scheduler
      securityContext:
        fsGroup: 65534
        seccompProfile:
          type: RuntimeDefault
        supplementalGroups:
        - 65534
      serviceAccount: kube-dns
      serviceAccountName: kube-dns
      terminationGracePeriodSeconds: 30
      tolerations:
      - key: CriticalAddonsOnly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 04 16:26:30 UTC 2021
    - 18.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/etcd/local_test.go

        - mountPath: %s/etcd
          name: etcd-data
        - mountPath: /etcd
          name: etcd-certs
      hostNetwork: true
      priority: 2000001000
      priorityClassName: system-node-critical
      securityContext:
        seccompProfile:
          type: RuntimeDefault
      volumes:
      - hostPath:
          path: /etcd
          type: DirectoryOrCreate
        name: etcd-certs
      - hostPath:
          path: %s/etcd
          type: DirectoryOrCreate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/values.yaml

        # Resources for a small pilot install
        resources:
          requests:
            cpu: 500m
            memory: 2048Mi
        # Set to `type: RuntimeDefault` to use the default profile if available.
        seccompProfile: {}
        # Whether to use an existing CNI installation
        cni:
          enabled: false
          provider: default
        # Additional container arguments
        extraContainerArgs: []
        env: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
Back to top