Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for namedPort (0.2 sec)

  1. tests/integration/pilot/ingress_test.go

    					path:       "/test",
    					prefixPath: "/prefix",
    				},
    				{
    					// HTTPS call for bar with namedport route. CaCert matches the secret
    					name: "https-namedport",
    					call: echo.CallOptions{
    						Port: echo.Port{
    							Protocol: protocol.HTTPS,
    						},
    						HTTP: echo.HTTP{
    							Path:    "/test/namedport",
    							Headers: headers.New().WithHost("bar.example.com").Build(),
    						},
    						TLS: echo.TLS{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. pkg/proxy/endpointschangetracker_test.go

    			NodeName:  ptr.To(testHostname),
    		}}
    		eps.Ports = []discovery.EndpointPort{{
    			Name:     ptr.To("p11"),
    			Port:     ptr.To[int32](11),
    			Protocol: ptr.To(v1.ProtocolUDP),
    		}}
    	}
    	namedPort := func(eps *discovery.EndpointSlice) {
    		eps.Endpoints = []discovery.Endpoint{{
    			Addresses: []string{"1.1.1.1"},
    		}}
    		eps.Ports = []discovery.EndpointPort{{
    			Name:     ptr.To("p11"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication_test.go

    				ClientID:           "testClientID",
    				areFlagsConfigured: func() bool { return true },
    			},
    			testSA: &ServiceAccountAuthenticationOptions{
    				Issuers: []string{"http://[::1]:namedport"},
    			},
    			expectErr: "service-account-issuer \"http://[::1]:namedport\" contained a ':' but was not a valid URL",
    		},
    		{
    			name: "test when ServiceAccounts has invalid JWKSURI",
    			testOIDC: &OIDCAuthenticationOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier_test.go

    				}}
    				eps.Ports = []discovery.EndpointPort{{
    					Name:     ptr.To("p11"),
    					Port:     ptr.To[int32](11),
    					Protocol: ptr.To(v1.ProtocolUDP),
    				}}
    			}),
    	}
    	namedPort := []*discovery.EndpointSlice{
    		makeTestEndpointSlice("ns1", "ep1", 1, subset1),
    	}
    	namedPortRenamed := []*discovery.EndpointSlice{
    		makeTestEndpointSlice("ns1", "ep1", 1,
    			func(eps *discovery.EndpointSlice) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier_test.go

    				}}
    				eps.Ports = []discovery.EndpointPort{{
    					Name:     ptr.To("p11"),
    					Port:     ptr.To[int32](11),
    					Protocol: ptr.To(v1.ProtocolUDP),
    				}}
    			}),
    	}
    	namedPort := []*discovery.EndpointSlice{
    		makeTestEndpointSlice("ns1", "ep1", 1, subset1),
    	}
    	namedPortRenamed := []*discovery.EndpointSlice{
    		makeTestEndpointSlice("ns1", "ep1", 1,
    			func(eps *discovery.EndpointSlice) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  6. pkg/proxy/iptables/proxier_test.go

    				}}
    				eps.Ports = []discovery.EndpointPort{{
    					Name:     ptr.To("p11"),
    					Port:     ptr.To[int32](11),
    					Protocol: ptr.To(v1.ProtocolUDP),
    				}}
    			}),
    	}
    	namedPort := []*discovery.EndpointSlice{
    		makeTestEndpointSlice("ns1", "ep1", 1, subset1),
    	}
    	namedPortRenamed := []*discovery.EndpointSlice{
    		makeTestEndpointSlice("ns1", "ep1", 1,
    			func(eps *discovery.EndpointSlice) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    			{msg.PortNameIsNotUnderNamingConvention, "Service my-namespace1/my-service1"},
    			{msg.PortNameIsNotUnderNamingConvention, "Service my-namespace2/my-service2"},
    		},
    	},
    	{
    		name:       "namedPort",
    		inputFiles: []string{"testdata/service-port-name.yaml"},
    		analyzer:   &service.PortNameAnalyzer{},
    		expected:   []message{},
    	},
    	{
    		name:       "unnamedPortInSystemNamespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. src/net/url/url_test.go

    	}
    }
    
    func TestParseErrors(t *testing.T) {
    	tests := []struct {
    		in      string
    		wantErr bool
    	}{
    		{"http://[::1]", false},
    		{"http://[::1]:80", false},
    		{"http://[::1]:namedport", true}, // rfc3986 3.2.3
    		{"http://x:namedport", true},     // rfc3986 3.2.3
    		{"http://[::1]/", false},
    		{"http://[::1]a", true},
    		{"http://[::1]%23", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/named_port.yaml

    John Howard <******@****.***> 1597787025 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 532 bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/named_port.yaml.injected

    John Howard <******@****.***> 1709052916 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top