Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 390 for ServiceAccountName (0.22 sec)

  1. cluster/addons/metrics-server/metrics-server-deployment.yaml

            k8s-app: metrics-server
            version: v0.7.1
        spec:
          securityContext:
            seccompProfile:
              type: RuntimeDefault
          priorityClassName: system-cluster-critical
          serviceAccountName: metrics-server
          nodeSelector:
            kubernetes.io/os: linux
          containers:
          - name: metrics-server
            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
            command:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. samples/extauthz/local-ext-authz.yaml

    spec:
      replicas: 1
      selector:
        matchLabels:
          app: httpbin
          version: v1
      template:
        metadata:
          labels:
            app: httpbin
            version: v1
        spec:
          serviceAccountName: httpbin
          containers:
          - image: docker.io/kong/httpbin
            imagePullPolicy: IfNotPresent
            name: httpbin
            # Same as found in Dockerfile's CMD but using an unprivileged port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 03:54:58 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. samples/ratelimit/rate-limit-service.yaml

          containers:
          - image: redis:alpine
            imagePullPolicy: IfNotPresent
            name: redis
            ports:
            - name: redis
              containerPort: 6379
          restartPolicy: Always
          serviceAccountName: ""
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: ratelimit
      labels:
        app: ratelimit
    spec:
      ports:
      - name: http-port
        port: 8080
        targetPort: 8080
        protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. pkg/kube/krt/bench_test.go

    				Name:      fmt.Sprintf("pod-%d", i),
    				Namespace: fmt.Sprintf("ns-%d", i%2),
    				Labels: map[string]string{
    					"app": fmt.Sprintf("app-%d", i%25),
    				},
    			},
    			Spec: v1.PodSpec{
    				ServiceAccountName: "fake-sa",
    			},
    			Status: v1.PodStatus{
    				Phase: v1.PodRunning,
    				PodIP: GetIP(),
    			},
    		})
    	}
    	initialServices := []*v1.Service{}
    	for i := 0; i < 50; i++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

          securityContext:
    {{- if not (eq .Values.global.platform "openshift") }}
            runAsUser: 1337
            runAsGroup: 1337
    {{- end }}
            runAsNonRoot: true
    {{- end }}
          serviceAccountName: {{ $gateway.name }}-service-account
    {{- if .Values.global.priorityClassName }}
          priorityClassName: "{{ .Values.global.priorityClassName }}"
    {{- end }}
    {{- if .Values.global.proxy.enableCoreDump }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/templates/deployment.yaml

          securityContext:
    {{- if not (eq .Values.global.platform "openshift") }}
            runAsUser: 1337
            runAsGroup: 1337
    {{- end }}
            runAsNonRoot: true
    {{- end }}
          serviceAccountName: {{ $gateway.name }}-service-account
    {{- if .Values.global.priorityClassName }}
          priorityClassName: "{{ .Values.global.priorityClassName }}"
    {{- end }}
    {{- if .Values.global.proxy.enableCoreDump }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. security/pkg/server/ca/node_auth_test.go

    				pods = append(pods, &v1.Pod{
    					ObjectMeta: metav1.ObjectMeta{
    						Name:      p.name,
    						Namespace: p.namespace,
    						UID:       types.UID(p.uid),
    					},
    					Spec: v1.PodSpec{
    						ServiceAccountName: p.account,
    						NodeName:           p.node,
    					},
    				})
    			}
    			c := kube.NewFakeClient(pods...)
    			na := NewClusterNodeAuthorizer(c, tt.trustedAccounts)
    			c.RunAndWait(test.NewStop(t))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/config.go

    	NamespaceName() string
    
    	// NamespacedName returns the namespaced name for this service.
    	// Short form for Config().NamespacedName().
    	NamespacedName() NamespacedName
    
    	// ServiceAccountName returns the service account string for this service.
    	ServiceAccountName() string
    
    	// ClusterLocalFQDN returns the fully qualified domain name for cluster-local host.
    	ClusterLocalFQDN() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/list.yaml.injected

                valueFrom:
                  fieldRef:
                    fieldPath: status.podIP
              - name: SERVICE_ACCOUNT
                valueFrom:
                  fieldRef:
                    fieldPath: spec.serviceAccountName
              - name: HOST_IP
                valueFrom:
                  fieldRef:
                    fieldPath: status.hostIP
              - name: ISTIO_CPU_LIMIT
                valueFrom:
                  resourceFieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

            {{- toYaml .Values.gateways.securityContext | nindent 8 }}
          {{- else }}
            sysctls:
            - name: net.ipv4.ip_unprivileged_port_start
              value: "0"
          {{- end }}
          serviceAccountName: {{.ServiceAccount | quote}}
          containers:
          - name: istio-proxy
          {{- if contains "/" (annotation .ObjectMeta `sidecar.istio.io/proxyImage` .Values.global.proxy.image) }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top