Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ServiceAccountName (0.25 sec)

  1. samples/addons/kiali.yaml

            checksum/config: fdc10e3d65cc632fb11052879e5f6248587adb147b86b1ae61144bc641ba0062
            prometheus.io/scrape: "true"
            prometheus.io/port: "9090"
            kiali.io/dashboards: go,kiali
        spec:
          serviceAccountName: kiali
          containers:
          - image: "quay.io/kiali/kiali:v1.85"
            imagePullPolicy: IfNotPresent
            name: kiali
            command:
            - "/opt/kiali/kiali"
            - "-config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. samples/addons/prometheus.yaml

            app.kubernetes.io/managed-by: Helm
            app.kubernetes.io/part-of: prometheus
            
            sidecar.istio.io/inject: "false"
        spec:
          enableServiceLinks: true
          serviceAccountName: prometheus
          containers:
            - name: prometheus-server-configmap-reload
              image: "ghcr.io/prometheus-operator/prometheus-config-reloader:v0.73.2"
              imagePullPolicy: "IfNotPresent"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    			constants.GatewayNameLabel: gateway.Name,
    		}), krt.FilterIndex(podsByNamespace, gateway.Namespace))
    
    		serviceAccounts := slices.Map(instances, func(p *v1.Pod) string {
    			return p.Spec.ServiceAccountName
    		})
    
    		// default traffic type if neither GatewayClass nor Gateway specify a type
    		trafficType := constants.ServiceTraffic
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    			Namespace:             p.Namespace,
    			Network:               network,
    			ClusterId:             string(a.ClusterID),
    			Addresses:             [][]byte{podIP.AsSlice()},
    			ServiceAccount:        p.Spec.ServiceAccountName,
    			Waypoint:              a.getWaypointAddress(targetWaypoint),
    			Node:                  p.Spec.NodeName,
    			ApplicationTunnel:     appTunnel,
    			Services:              constructServices(p, services),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    				TerminationGracePeriodSeconds: &terminationGracePeriodSeconds,
    				ActiveDeadlineSeconds:         &activeDeadlineSeconds,
    				NodeSelector:                  map[string]string{},
    				ServiceAccountName:            "demo-sa",
    			},
    		}
    		pod.Name = fmt.Sprintf("object-%d", index)
    		data := make([]byte, 1024*2, 1024*2) // 2k labels
    		rand.Read(data)
    		pod.Spec.NodeSelector["key"] = string(data)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top