Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 184 for SeccompProfile (0.22 sec)

  1. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	// to all containers of a pod.
    	// Deprecated: set a pod security context `seccompProfile` field.
    	SeccompPodAnnotationKey string = "seccomp.security.alpha.kubernetes.io/pod"
    
    	// SeccompContainerAnnotationKeyPrefix represents the key of a seccomp profile applied
    	// to one container of a pod.
    	// Deprecated: set a container security context `seccompProfile` field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. pkg/apis/core/annotation_key_constants.go

    	// to all containers of a pod.
    	// Deprecated: set a pod security context `seccompProfile` field.
    	SeccompPodAnnotationKey string = "seccomp.security.alpha.kubernetes.io/pod"
    
    	// SeccompContainerAnnotationKeyPrefix represents the key of a seccomp profile applied
    	// to one container of a pod.
    	// Deprecated: set a container security context `seccompProfile` field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/daemonset.yaml

                  # There does not appear to be a more granular capability for this.
                  - SYS_ADMIN
    {{- if .Values.cni.seccompProfile }}
                seccompProfile:
    {{ toYaml .Values.cni.seccompProfile | trim | indent 14 }}
    {{- end }}
              command: ["install-cni"]
              args:
                {{- if .Values.global.logging.level }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

                readOnlyRootFilesystem: true
                runAsNonRoot: true
                capabilities:
                  drop:
                  - ALL
    {{- if .Values.pilot.seccompProfile }}
                seccompProfile:
    {{ toYaml .Values.pilot.seccompProfile | trim | indent 14 }}
    {{- end }}
              volumeMounts:
              - name: istio-token
                mountPath: /var/run/secrets/tokens
                readOnly: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. cluster/addons/cluster-loadbalancing/glbc/default-svc-controller.yaml

    spec:
      selector:
        matchLabels:
          k8s-app: glbc
      template:
        metadata:
          labels:
            k8s-app: glbc
            name: glbc
        spec:
          securityContext:
            seccompProfile:
              type: RuntimeDefault
          containers:
          - name: default-http-backend
            # Any image is permissible as long as:
            # 1. It serves a 404 page at /
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. cluster/gce/manifests/kube-addon-manager.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: kube-addon-manager
      namespace: kube-system
      labels:
        component: kube-addon-manager
    spec:
      securityContext:
        seccompProfile:
          type: RuntimeDefault
        runAsUser: {{runAsUser}}
        runAsGroup: {{runAsGroup}}
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      containers:
      - name: kube-addon-manager
        securityContext:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 03:09:15 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. manifests/charts/istio-operator/values.yaml

        resources:
          limits:
            cpu: 200m
            memory: 256Mi
          requests:
            cpu: 50m
            memory: 128Mi
        # Set to `type: RuntimeDefault` to use the default profile if available.
        seccompProfile: {}
    
      # Node labels for pod assignment
      nodeSelector: {}
    
      # Tolerations for pod assignment
      tolerations: []
    
      # Affinity for pod assignment
      affinity: {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. cluster/gce/manifests/konnectivity-server.yaml

    kind: Pod
    metadata:
      name: konnectivity-server
      namespace: kube-system
      component: konnectivity-server
    spec:
      securityContext:
        {{ run_as_user }}
        {{ run_as_group }}
        {{ supplemental_groups }}
        seccompProfile:
          type: RuntimeDefault
      priorityClassName: system-node-critical
      priority: 2000001000
      hostNetwork: true
      containers:
      - name: konnectivity-server-container
        {{ container_security_context }}:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. cluster/gce/manifests/cluster-autoscaler.manifest

                "component": "cluster-autoscaler"
            }
        },
        "spec": {
            "securityContext": {
                {{runAsUser}}
                {{runAsGroup}}
                {{supplementalGroups}}
                "seccompProfile": {
                    "type": "RuntimeDefault"
                }
            },
            "hostNetwork": true,
            "containers": [
                {
                    "name": "cluster-autoscaler",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:04:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/staticpod/utils_linux_test.go

    	t.Helper()
    	wantPodSecurityContext := &v1.PodSecurityContext{
    		RunAsUser:          ptr.To(wantRunAsUser),
    		RunAsGroup:         ptr.To(wantRunAsGroup),
    		SupplementalGroups: wantSupGroup,
    		SeccompProfile: &v1.SeccompProfile{
    			Type: v1.SeccompProfileTypeRuntimeDefault,
    		},
    	}
    	if !reflect.DeepEqual(wantPodSecurityContext, pod.Spec.SecurityContext) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 14:41:12 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top