Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for testhost2 (0.42 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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