Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 278 for 8090 (0.04 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full.yaml

            length: 16
          sourceIps:
          - address: AQIDBA==
            length: 32
          - address: BQYAAA==
            length: 16
    - rules:
      - matches:
        - destinationPorts:
          - 80
          - 90
          notDestinationPorts:
          - 800
          - 900
    - rules:
      - matches:
        - notSourceIps:
          - address: WgoKCg==
            length: 32
          - address: WqgKAA==
            length: 24
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/README.md

    We used DefaultVMImage in the example.
    
    For example,
    
    ```go
    ports := []echo.Port{
       {
           Name:     "http",
           Protocol: protocol.HTTP,
           InstancePort: 8090,
           ServicePort:  8090,
       },
    }
    echo.Config{
       Service:    "vm",
       Namespace:  "virtual-machine",
       Ports:      ports,
       Pilot:      p,
       DeployAsVM: true,
       VMImage:    vm.DefaultVMImage
    }
    ```
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 21:28:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. tests/util/sanitycheck/sanity_check.go

    		}).
    		With(&server, echo.Config{
    			Service:   "server",
    			Namespace: testNs,
    			Ports: []echo.Port{
    				{
    					Name:         "http",
    					Protocol:     protocol.HTTP,
    					WorkloadPort: 8090,
    				},
    			},
    		}).
    		BuildOrFail(t)
    
    	return testNs, client, server
    }
    
    func RunTrafficTestClientServer(t framework.TestContext, client, server echo.Instance) {
    	_ = client.CallOrFail(t, echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 26 21:20:56 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full-in.yaml

      - to:
        - operation:
            hosts: ["exact.com", "*.suffix.com", "prefix.*", "*"]
            notHosts: ["not-exact.com", "*.not-suffix.com", "not-prefix.*", "*"]
      - to:
        - operation:
            ports: ["80", "90"]
            notPorts: ["800", "900"]
      - to:
        - operation:
            paths: ["/exact", "/prefix/*", "*/suffix", "*"]
            notPaths: ["/not-exact", "/not-prefix/*", "*/not-suffix", "*"]
      - when:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

          to:
            - operation:
                methods: ["method", "method-prefix-*", "*-suffix-method", "*"]
                hosts: ["exact.com", "*.suffix.com", "prefix.*", "*"]
                ports: ["80", "90"]
                paths: ["/exact", "/prefix/*", "*/suffix", "*", "/path/template/{*}", "/{**}/path/template"]
                notMethods: ["not-method", "not-method-prefix-*", "*-not-suffix-method", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. tests/integration/security/ca_custom_root/main_test.go

    				Protocol:     protocol.HTTP,
    				ServicePort:  8090,
    				WorkloadPort: 8090,
    			},
    			{
    				Name:         httpMTLS,
    				Protocol:     protocol.HTTP,
    				ServicePort:  8091,
    				WorkloadPort: 8091,
    			},
    			{
    				Name:         tcpPlaintext,
    				Protocol:     protocol.TCP,
    				ServicePort:  8092,
    				WorkloadPort: 8092,
    			},
    			{
    				Name:         tcpMTLS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tests/integration/pilot/revisions/revisions_test.go

    				}).
    				WithConfig(echo.Config{
    					Service:   "server",
    					Namespace: canary,
    					Ports: []echo.Port{
    						{
    							Name:         "http",
    							Protocol:     protocol.HTTP,
    							WorkloadPort: 8090,
    						},
    					},
    				}).
    				WithConfig(echo.Config{
    					Service:    "vm",
    					Namespace:  canary,
    					DeployAsVM: true,
    					Ports:      []echo.Port{},
    				}).
    				BuildOrFail(t)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 27 15:52:38 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  8. tests/integration/security/filebased_tls_origination/main_test.go

    			{
    				Name:         "grpc",
    				Protocol:     protocol.GRPC,
    				WorkloadPort: 8090,
    				TLS:          true,
    			},
    			{
    				Name:         "http",
    				Protocol:     protocol.HTTP,
    				WorkloadPort: 8091,
    				TLS:          true,
    			},
    			{
    				Name:         "tcp",
    				Protocol:     protocol.TCP,
    				WorkloadPort: 8092,
    				TLS:          true,
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/controller_test.go

    		t.Errorf("received unecpected config %v/%v", vs.Namespace, vs.Name)
    	}
    
    	// We change service port number.
    	serviceConfig.Spec.Ports[0].Port = 8090
    	service.Update(&serviceConfig)
    	vs = wait()
    	if vs.Name != ingressConfig.Name+"-"+"virtualservice" || vs.Namespace != ingressConfig.Namespace {
    		t.Errorf("received unecpected config %v/%v", vs.Namespace, vs.Name)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 18:34:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/ipset/ipset_test.go

    				SetType:  HashIPPort,
    				IP:       "1-2-3-4",
    				Protocol: ProtocolTCP,
    				Port:     8900,
    			},
    			set: &IPSet{
    				Name: "bad-ip",
    			},
    			valid: false,
    		},
    		{ // case[10]
    			entry: &Entry{
    				SetType:  HashIPPort,
    				IP:       "10.20.30.40",
    				Protocol: "",
    				Port:     8090,
    			},
    			set: &IPSet{
    				Name: "empty-protocol",
    			},
    			valid: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
Back to top