Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for runAsGroup (0.26 sec)

  1. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

      {{- if .Values.global.proxy.lifecycle }}
        lifecycle:
          {{ toYaml .Values.global.proxy.lifecycle | indent 6 }}
      {{- end }}
        securityContext:
          runAsUser: {{ .ProxyUID | default "1337" }}
          runAsGroup: {{ .ProxyGID | default "1337" }}
        env:
        - name: PILOT_CERT_PROVIDER
          value: {{ .Values.global.pilotCertProvider }}
        - name: CA_ADDR
        {{- if .Values.global.caAddress }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/daemonset.yaml

                httpGet:
                  path: /readyz
                  port: 8000
              securityContext:
                privileged: true # always requires privilege to be useful (install node plugin, etc)
                runAsGroup: 0
                runAsUser: 0
                runAsNonRoot: false
                # Both ambient and sidecar repair mode require elevated node privileges to function.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

            securityContext:
              capabilities:
                add:
                - NET_ADMIN
                - SYS_RESOURCE # Required for core dumps
              runAsUser: 1338
              runAsGroup: 1338
            command:
            - bash
            - -c
            - |-
              # Sudo and ulimits is problematic. There must be a better way to do this, but for now we can hack it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/upgrade/health.go

    			Template: v1.PodTemplateSpec{
    				Spec: v1.PodSpec{
    					RestartPolicy: v1.RestartPolicyNever,
    					SecurityContext: &v1.PodSecurityContext{
    						RunAsUser:    ptr.To[int64](999),
    						RunAsGroup:   ptr.To[int64](999),
    						RunAsNonRoot: ptr.To(true),
    					},
    					Tolerations: []v1.Toleration{
    						{
    							Key:    constants.LabelNodeRoleControlPlane,
    							Effect: v1.TaintEffectNoSchedule,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top