Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 718 for port1 (0.05 sec)

  1. tests/integration/pilot/headers_test.go

    			instance.CallOrFail(t, echo.CallOptions{
    				To: apps.Naked,
    				Port: echo.Port{
    					Name: ports.HTTP.Name,
    				},
    				Check: check.And(check.OK(), checkNoProxyHeaders),
    			})
    			apps.Naked[0].CallOrFail(t, echo.CallOptions{
    				To: instance,
    				Port: echo.Port{
    					Name: ports.HTTP.Name,
    				},
    				Check: check.And(check.OK(), checkNoProxyHeaders),
    			})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/types.go

    	// ports provides information about the ports exposed by this LoadBalancer.
    	// +listType=atomic
    	// +optional
    	Ports []IngressPortStatus `json:"ports,omitempty" protobuf:"bytes,4,rep,name=ports"`
    }
    
    // IngressPortStatus represents the error condition of a service port
    type IngressPortStatus struct {
    	// port is the port number of the ingress port.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    			return err
    		}
    	}
    
    	// Make a copy of the ports array. This avoids potential corruption if multiple Echo
    	// Instances share the same underlying ports array.
    	c.Ports = append([]Port{}, c.Ports...)
    
    	// Mark all user-defined ports as used, so the port generator won't assign them.
    	portGen := newPortGenerators()
    	for _, p := range c.Ports {
    		if p.ServicePort > 0 {
    			if portGen.Service.IsUsed(p.ServicePort) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inject/hello-probes-localhost.yaml

              ports:
                - name: http
                  containerPort: 80
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                httpGet:
                  port: 3333
            - name: world
              image: "fake.docker.io/google-samples/hello-go-gke:1.0"
              ports:
                - name: http
                  containerPort: 90
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 26 16:51:17 UTC 2024
    - 956 bytes
    - Viewed (0)
  5. samples/bookinfo/platform/kube/bookinfo-dualstack.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: details
      labels:
        app: details
        service: details
    spec:
      ipFamilyPolicy: RequireDualStack
      ipFamilies: [IPv6, IPv4]
      ports:
      - port: 9080
        name: http
      selector:
        app: details
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: bookinfo-details
      labels:
        account: details
    ---
    apiVersion: apps/v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/store_test.go

    	}
    
    	expectedServices := []*model.Service{
    		makeService("*.istio.io", "httpDNSRR", constants.UnspecifiedIP, map[string]int{"http-port": 80, "http-alt-port": 8080}, true, model.DNSRoundRobinLB),
    		makeService("*.istio.io", "httpDNSRR", constants.UnspecifiedIP, map[string]int{"http-port": 80, "http-alt-port": 8080}, true, model.DNSLB),
    	}
    
    	store.updateServices(httpDNSRR.NamespacedName(), expectedServices)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar.go

    	return service
    }
    
    // serviceMatchingListenerPort constructs service with listener port.
    func serviceMatchingListenerPort(service *Service, ilw *IstioEgressListenerWrapper) *Service {
    	for _, port := range service.Ports {
    		if port.Port == int(ilw.IstioListener.Port.GetNumber()) {
    			sc := service.DeepCopy()
    			sc.Ports = []*Port{port}
    			return sc
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  8. pkg/proxy/config/config_test.go

    		Spec:       v1.ServiceSpec{Ports: []v1.ServicePort{{Protocol: "TCP", Port: 10}}},
    	}
    	fakeWatch.Add(service1)
    	handler.ValidateServices(t, []*v1.Service{service1})
    
    	service2 := &v1.Service{
    		ObjectMeta: metav1.ObjectMeta{Namespace: "testnamespace", Name: "bar"},
    		Spec:       v1.ServiceSpec{Ports: []v1.ServicePort{{Protocol: "TCP", Port: 20}}},
    	}
    	fakeWatch.Add(service2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. samples/addons/extras/zipkin.yaml

                httpGet:
                  path: /health
                  port: 9411
                initialDelaySeconds: 5
                periodSeconds: 5
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: tracing
      namespace: istio-system
      labels:
        app: zipkin
    spec:
      type: ClusterIP
      ports:
        - name: http-query
          port: 80
          protocol: TCP
          targetPort: 9411
      selector:
        app: zipkin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	})
    }
    
    func sortPorts(ports []*model.Port) {
    	sort.Slice(ports, func(i, j int) bool {
    		if ports[i].Port == ports[j].Port {
    			if ports[i].Name == ports[j].Name {
    				return ports[i].Protocol < ports[j].Protocol
    			}
    			return ports[i].Name < ports[j].Name
    		}
    		return ports[i].Port < ports[j].Port
    	})
    }
    
    func Test_autoAllocateIP_conditions(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top