Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 169 for ServiceAccountName (0.39 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

                  apiVersion: v2
                  fieldPath: metadata.myPath
            - name: SERVICE_ACCOUNT
              valueFrom:
                fieldRef:
                  apiVersion: v1
                  fieldPath: spec.serviceAccountName
            - name: KUBECONFIG
              value: /var/run/secrets/remote/config
            - name: PILOT_TRACE_SAMPLING
              value: "1"
            - name: PILOT_ENABLE_ANALYSIS
              value: "false"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. cluster/gce/addons/konnectivity-agent/konnectivity-agent-ds.yaml

              livenessProbe:
                httpGet:
                  port: 8093
                  path: /healthz
                initialDelaySeconds: 15
                timeoutSeconds: 15
          serviceAccountName: konnectivity-agent
          volumes:
    __EXTRA_VOLS__
            - name: konnectivity-agent-token
              projected:
                sources:
                  - serviceAccountToken:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. manifests/charts/gateway/templates/_helpers.tpl

    */}}
    {{- define "gateway.sidecarInjectionLabels" -}}
    sidecar.istio.io/inject: "true"
    {{- with .Values.revision }}
    istio.io/rev: {{ . | quote }}
    {{- end }}
    {{- end }}
    
    {{- define "gateway.serviceAccountName" -}}
    {{- if .Values.serviceAccount.create }}
    {{- .Values.serviceAccount.name | default (include "gateway.name" .)    }}
    {{- else }}
    {{- .Values.serviceAccount.name | default "default" }}
    {{- end }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 22:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. samples/bookinfo/platform/kube/bookinfo-ratings-v2.yaml

    spec:
      replicas: 1
      selector:
        matchLabels:
          app: ratings
          version: v2
      template:
        metadata:
          labels:
            app: ratings
            version: v2
        spec:
          serviceAccountName: bookinfo-ratings-v2
          containers:
          - name: ratings
            image: docker.io/istio/examples-bookinfo-ratings-v2:1.20.1
            imagePullPolicy: IfNotPresent
            env:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

    {{- with .Values.pilot.tolerations }}
    {{- toYaml . | nindent 8 }}
    {{- end }}
    {{- with .Values.pilot.topologySpreadConstraints }}
          topologySpreadConstraints:
    {{- toYaml . | nindent 8 }}
    {{- end }}
          serviceAccountName: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    {{- if .Values.global.priorityClassName }}
          priorityClassName: "{{ .Values.global.priorityClassName }}"
    {{- end }}
          containers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. cluster/addons/node-problem-detector/npd.yaml

              path: /var/log/
          - name: kmsg
            hostPath:
              path: /dev/kmsg
          - name: localtime
            hostPath:
              path: /etc/localtime
              type: "FileOrCreate"
          serviceAccountName: node-problem-detector
          tolerations:
          - operator: "Exists"
            effect: "NoExecute"
          - operator: "Exists"
            effect: "NoSchedule"
          - key: "CriticalAddonsOnly"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top