Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for testhost2 (0.25 sec)

  1. pkg/proxy/winkernel/proxier_test.go

    			eps.AddressType = discovery.AddressTypeIPv4
    			eps.Endpoints = []discovery.Endpoint{{
    				Addresses: []string{epIpAddressRemote},
    				NodeName:  ptr.To("testhost2"), // This will make this endpoint as a remote endpoint
    			}}
    			eps.Ports = []discovery.EndpointPort{{
    				Name:     ptr.To(svcPortName.Port),
    				Port:     ptr.To(int32(svcPort)),
    				Protocol: ptr.To(v1.ProtocolTCP),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    			serviceNs:   "test1",
    			host:        testhost,
    			wantSubsets: []string{"subset1", "subset2"},
    		},
    		{
    			proxyNs:     "test1",
    			serviceNs:   "test2",
    			host:        testhost,
    			wantSubsets: []string{"subset1", "subset2"},
    		},
    		{
    			proxyNs:     "test2",
    			serviceNs:   "test1",
    			host:        testhost,
    			wantSubsets: []string{"subset3", "subset4"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    	th := NewTestableTimingRatioHistogram(clk.Now,
    		&TimingRatioHistogramOpts{
    			compbasemetrics.TimingHistogramOpts{
    				Namespace: "testns",
    				Subsystem: "testsubsys",
    				Name:      "testhist",
    				Help:      "Me",
    				Buckets:   []float64{1, 2, 4, 8, 16, 32},
    			},
    			1})
    	registry := compbasemetrics.NewKubeRegistry()
    	registry.MustRegister(th)
    	var x int
    	b.StartTimer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    		},
    	}
    
    	for _, tc := range testCases {
    		for _, op := range tc.ops {
    			t.Run(ipv4+op, func(t *testing.T) {
    				testCost(t, ipv4+op, tc.expectEsimatedCost(ipv4BaseEstimatedCost), tc.expectRuntimeCost(ipv4BaseRuntimeCost))
    			})
    
    			t.Run(ipv6+op, func(t *testing.T) {
    				testCost(t, ipv6+op, tc.expectEsimatedCost(ipv6BaseEstimatedCost), tc.expectRuntimeCost(ipv6BaseRuntimeCost))
    			})
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/tracing_test.go

    )
    
    func TestConfigureTracingExhaustiveness(t *testing.T) {
    	model.AssertProvidersHandled(configureFromProviderConfigHandled)
    }
    
    func TestConfigureTracing(t *testing.T) {
    	clusterName := "testcluster"
    	authority := "testhost"
    
    	clusterLookupFn = func(push *model.PushContext, service string, port int) (hostname string, cluster string, err error) {
    		return authority, clusterName, nil
    	}
    	defer func() {
    		clusterLookupFn = model.LookupCluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  6. pkg/config/analysis/msg/messages.gen.go

    func NewVirtualServiceDestinationPortSelectorRequired(r *resource.Instance, destHost string, destPorts []int) diag.Message {
    	return diag.NewMessage(
    		VirtualServiceDestinationPortSelectorRequired,
    		r,
    		destHost,
    		destPorts,
    	)
    }
    
    // NewDeploymentAssociatedToMultipleServices returns a new diag.Message based on DeploymentAssociatedToMultipleServices.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_test.go

    			Exec: &v1.ExecAction{
    				Command: []string{"PostStartCMD"},
    			},
    		},
    	}
    
    	httpLifeCycle := &v1.Lifecycle{
    		PreStop: &v1.LifecycleHandler{
    			HTTPGet: &v1.HTTPGetAction{
    				Host: "testHost.com",
    				Path: "/GracefulExit",
    			},
    		},
    	}
    
    	cmdLifeCycle := &v1.Lifecycle{
    		PreStop: &v1.LifecycleHandler{
    			Exec: &v1.ExecAction{
    				Command: []string{"PreStopCMD"},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/messages.yaml

        template: "This VirtualService routes to a service %q that exposes multiple ports %v. Specifying a port in the destination is required to disambiguate."
        args:
          - name: destHost
            type: string
          - name: destPorts
            type: "[]int"
    
      # IST0113 RETIRED
      # IST0114 RETIRED
      # IST0115 RETIRED
    
      - name: "DeploymentAssociatedToMultipleServices"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    ---
    `
    
    func tcpVirtualService(gateway, host, destHost string, sourcePort, targetPort int) string {
    	return tmpl.MustEvaluate(tcpVirtualServiceTmpl, struct {
    		Gateway            string
    		VirtualServiceHost string
    		DestinationHost    string
    		SourcePort         int
    		TargetPort         int
    	}{gateway, host, destHost, sourcePort, targetPort})
    }
    
    const gatewayTmpl = `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

        params+=("--agent-service-account=")
        params+=("--authentication-audience=")
        # Need to fix ANP code to allow kubeconfig to be set with mtls.
        params+=("--kubeconfig=")
        params+=("--proxy-strategies=destHost,default")
      else
        echo "KONNECTIVITY_SERVICE_PROXY_PROTOCOL_MODE must be set to either grpc or http-connect"
        exit 1
      fi
    
      params+=("--agent-port=$1")
      params+=("--health-port=$2")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top