Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AllowPrivilegeEscalation (0.22 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.ReadOnlyRootFilesystem != nil {
    		in, out := &in.ReadOnlyRootFilesystem, &out.ReadOnlyRootFilesystem
    		*out = new(bool)
    		**out = **in
    	}
    	if in.AllowPrivilegeEscalation != nil {
    		in, out := &in.AllowPrivilegeEscalation, &out.AllowPrivilegeEscalation
    		*out = new(bool)
    		**out = **in
    	}
    	if in.ProcMount != nil {
    		in, out := &in.ProcMount, &out.ProcMount
    		*out = new(ProcMountType)
    		**out = **in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.ReadOnlyRootFilesystem != nil {
    		in, out := &in.ReadOnlyRootFilesystem, &out.ReadOnlyRootFilesystem
    		*out = new(bool)
    		**out = **in
    	}
    	if in.AllowPrivilegeEscalation != nil {
    		in, out := &in.AllowPrivilegeEscalation, &out.AllowPrivilegeEscalation
    		*out = new(bool)
    		**out = **in
    	}
    	if in.ProcMount != nil {
    		in, out := &in.ProcMount, &out.ProcMount
    		*out = new(ProcMountType)
    		**out = **in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

      if [[ -n "${ETCD_RUNASUSER:-}" && -n "${ETCD_RUNASGROUP:-}" ]]; then
        container_security_context="\"securityContext\": {\"runAsUser\": ${ETCD_RUNASUSER}, \"runAsGroup\": ${ETCD_RUNASGROUP}, \"allowPrivilegeEscalation\": false, \"capabilities\": {\"drop\": [\"all\"]}},"
      fi
      sed -i -e "s@{{security_context}}@${container_security_context}@g" "${temp_file}"
      mv "${temp_file}" /etc/kubernetes/manifests
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. samples/addons/grafana.yaml

          enableServiceLinks: true
          containers:
            - name: grafana
              image: "docker.io/grafana/grafana:11.0.0"
              imagePullPolicy: IfNotPresent
              securityContext:
                allowPrivilegeEscalation: false
                capabilities:
                  drop:
                  - ALL
                seccompProfile:
                  type: RuntimeDefault
              volumeMounts:
                - name: config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
Back to top