Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 385 for targetpod2 (0.16 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller.go

    	// by default, use the numbered targetPort
    	istioEndpoint.EndpointPort = uint32(targetPort.num)
    
    	if targetPort.name != "" {
    		// This is a named port, find the corresponding port in the port map
    		matchedPort := wi.PortMap[targetPort.name]
    		if matchedPort != 0 {
    			istioEndpoint.EndpointPort = matchedPort
    		} else if targetPort.explicitName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/testdata/multiversion.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: multiversion
      labels:
        app: multiversion
    spec:
      ports:
      - name: http
        port: 8090
        targetPort: 8090
      - name: tcp
        port: 9000
        targetPort: 9000
      - name: grpc
        port: 9090
        targetPort: 9090
      selector:
        app: multiversion
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: multiversion-v-istio
    spec:
      replicas: 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. manifests/charts/gateway/values.yaml

        type: LoadBalancer
        ports:
        - name: status-port
          port: 15021
          protocol: TCP
          targetPort: 15021
        - name: http2
          port: 80
          protocol: TCP
          targetPort: 80
        - name: https
          port: 443
          protocol: TCP
          targetPort: 443
        annotations: {}
        loadBalancerIP: ""
        loadBalancerSourceRanges: []
        externalTrafficPolicy: ""
        externalIPs: []
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 16:51:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    sionPorts":[{"name":"tcp-pilot-grpc-tls","port":15011,"targetPort":15011},{"name":"tcp-citadel-grpc-tls","port":8060,"targetPort":8060},{"name":"tcp-dns-tls","port":853,"targetPort":853}],"namespace":"istio-system","ports":[{"name":"status-port","port":15020,"targetPort":15020},{"name":"http2","port":80,"targetPort":80},{"name":"https","port":443},{"name":"kiali","port":15029,"targetPort":15029},{"name":"prometheus","port":15030,"targetPort":15030},{"name":"grafana","port":15031,"targetPort":150...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. samples/grpc-echo/grpc-echo.yaml

        app: echo
      name: echo
      namespace: echo-grpc
    spec:
      selector:
        app: echo
      type: ClusterIP
      ports:
      - name: http
        port: 80
        targetPort: 18080
      - name: grpc
        port: 7070
        targetPort: 17070
      - name: tcp
        port: 9090
        targetPort: 19090
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: echo-v1
      namespace: echo-grpc
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    	_, modifiedPod, err := util.As[*v1.Pod](oldObj, newObj)
    	if err != nil {
    		return framework.Queue, err
    	}
    
    	if modifiedPod.UID != pod.UID {
    		// If the update event is not for targetPod, it wouldn't make targetPod schedulable.
    		return framework.QueueSkip, nil
    	}
    
    	if len(modifiedPod.Spec.SchedulingGates) == 0 {
    		return framework.Queue, nil
    	}
    	return framework.QueueSkip, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. samples/extauthz/ext-authz.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: ext-authz
      labels:
        app: ext-authz
    spec:
      ports:
      - name: http
        port: 8000
        targetPort: 8000
      - name: grpc
        port: 9000
        targetPort: 9000
      selector:
        app: ext-authz
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: ext-authz
    spec:
      replicas: 1
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 20 22:01:52 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/hello-service.yaml

    kind: Service
    apiVersion: v1
    metadata:
      name: hello
    spec:
      selector:
        app: hello
        tier: backend
      ports:
        - protocol: TCP
          port: 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 171 bytes
    - Viewed (0)
  9. hack/testdata/kubernetes-service.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: kubernetes
      namespace: default
    spec:
      clusterIP: 10.0.0.1
      ports:
      - name: https
        port: 443
        protocol: TCP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 04 19:17:05 UTC 2017
    - 184 bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/services.go

    		return nil
    	}
    	ports := make([]*workloadapi.Port, 0, len(svc.Spec.Ports))
    	for _, p := range svc.Spec.Ports {
    		target := p.TargetPort
    		if target == 0 {
    			target = p.Number
    		}
    		ports = append(ports, &workloadapi.Port{
    			ServicePort: p.Number,
    			TargetPort:  target,
    		})
    	}
    
    	// handle svc waypoint scenario
    	var waypointAddress *workloadapi.GatewayAddress
    	if w != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top