Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 385 for targetpod2 (0.15 sec)

  1. manifests/charts/gateways/istio-ingress/files/profile-demo.yaml

        - port: 15021
          targetPort: 15021
          name: status-port
        - port: 80
          targetPort: 8080
          name: http2
        - port: 443
          targetPort: 8443
          name: https
        - port: 31400
          targetPort: 31400
          name: tcp
          # This is the port where sni routing happens
        - port: 15443
          targetPort: 15443
          name: tls
        resources:
          requests:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 22:30:06 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/validation/validation_test.go

    `,
    			errors: `port 80 is invalid: targetPort is set to 0, which requires root. Set targetPort to be greater than 1024 or configure values.gateways.istio-ingressgateway.runAsRoot=true`,
    		},
    		{
    			name: "legacy values ports config explicit targetPort",
    			values: `
    values:
      gateways:
        istio-ingressgateway:
          ingressPorts:
          - name: http
            port: 80
            targetPort: 90
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 23 09:10:55 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/service-no-port-name.yaml

      ports:
        - protocol: TCP
          port: 8080
          targetPort: 8080
        - protocol: TCP
          port: 8081
          targetPort: 8081
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service2
      namespace: my-namespace2
    spec:
      selector:
        app: my-service2
      ports:
        - name: foo
          protocol: TCP
          port: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 574 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy_test.go

    	matchingEndpoints := func(svc *v1.Service) []*v1.Endpoints {
    		ports := []v1.EndpointPort{}
    		for _, p := range svc.Spec.Ports {
    			if p.TargetPort.Type != intstr.Int {
    				continue
    			}
    			ports = append(ports, v1.EndpointPort{Name: p.Name, Port: p.TargetPort.IntVal})
    		}
    
    		return []*v1.Endpoints{{
    			ObjectMeta: metav1.ObjectMeta{Namespace: svc.Namespace, Name: svc.Name},
    			Subsets: []v1.EndpointSubset{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_inbound.go

    				},
    				TargetPort: i.Port.Number, // No targetPort support in the API
    			}
    			bindtoPort := getBindToPort(i.CaptureMode, lb.node)
    			// Skip ports we cannot bind to
    			if !lb.node.CanBindToPort(bindtoPort, port.TargetPort) {
    				log.Warnf("buildInboundListeners: skipping privileged sidecar port %d for node %s as it is an unprivileged proxy",
    					port.TargetPort, lb.node.ID)
    				continue
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. samples/addons/jaeger.yaml

      labels:
        app: jaeger
    spec:
      type: ClusterIP
      ports:
        - name: http-query
          port: 80
          protocol: TCP
          targetPort: 16686
        # Note: Change port name if you add '--query.grpc.tls.enabled=true'
        - name: grpc-query
          port: 16685
          protocol: TCP
          targetPort: 16685
      selector:
        app: jaeger
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/testdata/service-port-name.yaml

        protocol: TCP
        port: 8080
        targetPort: 8080
    ---
    # internal waypoint, should not generate warning
    apiVersion: v1
    kind: Service
    metadata:
      labels:
        gateway.istio.io/managed: istio.io-mesh-controller
      name: reviews-istio-waypoint
      namespace: ambient
    spec:
      ports:
      - appProtocol: tcp
        name: status-port
        port: 15021
        protocol: TCP
        targetPort: 15021
      - appProtocol: hbone
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 21:10:07 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    						Ports: []*workloadapi.Port{
    							{
    								ServicePort: 80,
    								TargetPort:  8080,
    							},
    							{
    								ServicePort: 81,
    								TargetPort:  0,
    							},
    							{
    								ServicePort: 82,
    								TargetPort:  0,
    							},
    							{
    								ServicePort: 83,
    								TargetPort:  0,
    							},
    						},
    					},
    					PortNames: map[int32]model.ServicePortName{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/MultiEdgesConnecting.java

    abstract class MultiEdgesConnecting<E> extends AbstractSet<E> {
    
      private final Map<E, ?> outEdgeToNode;
      private final Object targetNode;
    
      MultiEdgesConnecting(Map<E, ?> outEdgeToNode, Object targetNode) {
        this.outEdgeToNode = checkNotNull(outEdgeToNode);
        this.targetNode = checkNotNull(targetNode);
      }
    
      @Override
      public UnmodifiableIterator<E> iterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/workloads.go

    					if ok {
    						// if we match one, override it. Otherwise, use the service port
    						targetPort = tv
    					} else if targetPort == 0 {
    						targetPort = port.ServicePort
    					}
    				}
    			}
    			pl.Ports = append(pl.Ports, &workloadapi.Port{
    				ServicePort: port.ServicePort,
    				TargetPort:  targetPort,
    			})
    		}
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top