Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 507 for ServiceAccountName (0.38 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/types.go

    	// NodeSelector is a selector which must be true for the carp to fit on a node
    	// +optional
    	NodeSelector map[string]string
    
    	// ServiceAccountName is the name of the ServiceAccount to use to run this carp
    	// The carp will be allowed to use secrets referenced by the ServiceAccount
    	ServiceAccountName string
    
    	// NodeName is a request to schedule this carp onto a specific node.  If it is non-empty,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/deployment-multi-service-different-ns.yaml

      replicas: 1
      selector:
        matchLabels:
          app: conflicting-ports
          version: v1
      template:
        metadata:
          labels:
            app: conflicting-ports
            version: v1
        spec:
          serviceAccountName: bookinfo-details
          containers:
            - name: details
              image: docker.io/istio/examples-bookinfo-details-v1:1.15.0
              imagePullPolicy: IfNotPresent
              ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  3. cluster/addons/calico-policy-controller/typha-deployment.yaml

          labels:
            k8s-app: calico-typha
        spec:
          priorityClassName: system-cluster-critical
          tolerations:
          - key: CriticalAddonsOnly
            operator: Exists
          hostNetwork: true
          serviceAccountName: calico
          containers:
          - image: gcr.io/projectcalico-org/typha:v3.19.1
            name: calico-typha
            ports:
            - containerPort: 5473
              name: calico-typha
              protocol: TCP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 28 02:29:44 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/testdata/disable-automount-sa.yaml

          labels:
            app: foo
            version: bar
            test.istio.io/class: standard
          annotations:
            prometheus.io/scrape: "true"
            prometheus.io/port: "15014"
        spec:
          serviceAccountName: foo
          automountServiceAccountToken: false
          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. cluster/addons/ip-masq-agent/ip-masq-agent.yaml

    spec:
      selector:
        matchLabels:
          k8s-app: ip-masq-agent
      template:
        metadata:
          labels:
            k8s-app: ip-masq-agent
        spec:
          priorityClassName: system-node-critical
          serviceAccountName: ip-masq-agent
          hostNetwork: true
          containers:
          - name: ip-masq-agent
            image: registry.k8s.io/networking/ip-masq-agent-amd64:v2.6.1
            args:
              - --masq-chain=IP-MASQ
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/deployment/custom-class.yaml

              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: Fri May 03 19:29:42 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/deployment/kube-gateway-ambient-redirect.yaml

              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: Fri May 03 19:29:42 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/helm_values_enablement.golden.yaml

              valueFrom:
                resourceFieldRef:
                  resource: limits.cpu
            - name: SERVICE_ACCOUNT
              valueFrom:
                fieldRef:
                  fieldPath: spec.serviceAccountName
            - name: ISTIO_META_WORKLOAD_NAME
              value: istio-egressgateway
            - name: ISTIO_META_OWNER
              value: kubernetes://apis/apps/v1/namespaces/istio-system/deployments/istio-egressgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  9. samples/security/spire/sleep-spire.yaml

            spiffe.io/spire-managed-identity: "true"
          # Injects custom sidecar template
          annotations:
            inject.istio.io/templates: "sidecar,spire"
        spec:
          terminationGracePeriodSeconds: 0
          serviceAccountName: sleep
          containers:
          - name: sleep
            image: curlimages/curl
            command: ["/bin/sleep", "infinity"]
            imagePullPolicy: IfNotPresent
            volumeMounts:
            - name: tmp
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. samples/sleep/sleep.yaml

    spec:
      replicas: 1
      selector:
        matchLabels:
          app: sleep
      template:
        metadata:
          labels:
            app: sleep
        spec:
          terminationGracePeriodSeconds: 0
          serviceAccountName: sleep
          containers:
          - name: sleep
            image: curlimages/curl
            command: ["/bin/sleep", "infinity"]
            imagePullPolicy: IfNotPresent
            volumeMounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 22 13:58:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top