Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for proxyTest (0.27 sec)

  1. pilot/pkg/networking/grpcgen/grpcgen_test.go

    // Avoid using "istiod" as it is implicitly considered clusterLocal
    var testSvcHost = "test.istio-system.svc.cluster.local"
    
    // Local integration tests for proxyless gRPC.
    // The tests will start an in-process Istiod, using the memory store, and use
    // proxyless grpc servers and clients to validate the config generation.
    // GRPC project has more extensive tests for each language, we mainly verify that Istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:04:02 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. pkg/registry/core/service/storage/storage.go

    	ipAllocs map[api.IPFamily]ipallocator.Interface,
    	portAlloc portallocator.Interface,
    	endpoints EndpointsStorage,
    	pods PodStorage,
    	proxyTransport http.RoundTripper) (*REST, *StatusREST, *svcreg.ProxyREST, error) {
    
    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &api.Service{} },
    		NewListFunc:               func() runtime.Object { return &api.ServiceList{} },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/kubectlcmd/kubectlcmd.go

    func (r *Runner) EnvoyGet(namespace, pod, url string, dryRun bool) (string, error) {
    	if dryRun {
    		return fmt.Sprintf("Dry run: would be running client.EnvoyDo(%s, %s, %s)", pod, namespace, url), nil
    	}
    	task := fmt.Sprintf("ProxyGet %s/%s:%s", namespace, pod, url)
    	r.addRunningTask(task)
    	defer r.removeRunningTask(task)
    	out, err := r.Client.EnvoyDo(context.TODO(), pod, namespace, "GET", url)
    	return string(out), err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/deployment.go

    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/retry"
    	"istio.io/istio/pkg/test/util/tmpl"
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    const (
    	// for proxyless we add a special gRPC server that doesn't get configured with xDS for test-runner use
    	grpcMagicPort = 17171
    	// for non-Go implementations of gRPC echo, this is the port used to forward non-gRPC requests to the Go server
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/traffic.go

    				scope := t.ConfigIstio()
    				if c.globalConfig {
    					scope = t.ConfigKube()
    				}
    				return scope.YAML("", cfg).Apply()
    			}).
    			FromMatch(match.And(c.sourceMatchers...)).
    			// TODO mainly testing proxyless features as a client for now
    			ToMatch(match.And(append(c.targetMatchers, match.NotProxylessGRPC)...)).
    			WithDefaultFilters(1, c.toN).
    			ConditionallyTo(c.comboFilters...)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent.go

    	}
    
    	a.secretCache, err = a.newSecretManager()
    	if err != nil {
    		return fmt.Errorf("failed to start workload secret manager %v", err)
    	}
    
    	if a.cfg.DisableEnvoy {
    		// For proxyless we don't need an SDS server, but still need the keys and
    		// we need them refreshed periodically.
    		//
    		// This is based on the code from newSDSService, but customized to have explicit rotation.
    		go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inputs/traffic-params.yaml.7.template.gen.yaml

              - name: GRPC_GO_LOG_SEVERITY_LEVEL
                value: info
            volumeMounts:
              - mountPath: /var/lib/grpc/data/
                name: grpc-io-proxyless-bootstrap
          {{- end }}
          volumes:
            - name: grpc-io-proxyless-bootstrap
              emptyDir: {}
      grpc-agent: |
        {{- define "resources"  }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inputs/hello.yaml.14.template.gen.yaml

              - name: GRPC_GO_LOG_SEVERITY_LEVEL
                value: info
            volumeMounts:
              - mountPath: /var/lib/grpc/data/
                name: grpc-io-proxyless-bootstrap
          {{- end }}
          volumes:
            - name: grpc-io-proxyless-bootstrap
              emptyDir: {}
      grpc-agent: |
        {{- define "resources"  }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inputs/hello.yaml.3.template.gen.yaml

              - name: GRPC_GO_LOG_SEVERITY_LEVEL
                value: info
            volumeMounts:
              - mountPath: /var/lib/grpc/data/
                name: grpc-io-proxyless-bootstrap
          {{- end }}
          volumes:
            - name: grpc-io-proxyless-bootstrap
              emptyDir: {}
      grpc-agent: |
        {{- define "resources"  }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      }
    
      @AfterEach
      fun tearDown() {
        java.net.Authenticator.setDefault(null)
        System.clearProperty("proxyHost")
        System.clearProperty("proxyPort")
        System.clearProperty("http.proxyHost")
        System.clearProperty("http.proxyPort")
        System.clearProperty("https.proxyHost")
        System.clearProperty("https.proxyPort")
        if (cache != null) {
          cache!!.delete()
        }
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
Back to top