Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 217 for subkeys (0.12 sec)

  1. pilot/pkg/model/push_context_test.go

    			Host: testhost,
    			Subsets: []*networking.Subset{
    				{
    					Name: "subset1",
    				},
    				{
    					Name: "subset2",
    				},
    			},
    		},
    	}
    	destinationRuleNamespace2 := config.Config{
    		Meta: config.Meta{
    			Name:      "rule2",
    			Namespace: "test",
    		},
    		Spec: &networking.DestinationRule{
    			Host: testhost,
    			Subsets: []*networking.Subset{
    				{
    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. src/crypto/ed25519/ed25519_test.go

    			t.Errorf("recreating key pair gave different private key on line %d: %x vs %x", lineNo, priv[:], priv2)
    		}
    
    		if pubKey2 := priv2.Public().(PublicKey); !bytes.Equal(pubKey, pubKey2) {
    			t.Errorf("recreating key pair gave different public key on line %d: %x vs %x", lineNo, pubKey, pubKey2)
    		}
    
    		if seed := priv2.Seed(); !bytes.Equal(priv[:32], seed) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. tests/integration/pilot/tcp_probe_test.go

    	name string, rewrite bool, wantSuccess bool, openPort bool,
    ) {
    	ctx.Helper()
    
    	var tcpProbe echo.Instance
    	cfg := echo.Config{
    		Namespace:        ns,
    		Service:          name,
    		ReadinessTCPPort: "1234",
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    
    	if openPort {
    		cfg.Ports = []echo.Port{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/grpc_probe_test.go

    ) {
    	ctx.Helper()
    
    	var grpcProbe echo.Instance
    	cfg := echo.Config{
    		Namespace:         ns,
    		Service:           name,
    		ReadinessGRPCPort: "1234",
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    
    	if openPort {
    		cfg.Ports = []echo.Port{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/common/deployment/external.go

    			// Override hostname to match the SAN in the cert we are using
    			// TODO(nmittler): We should probably make this the same as ExternalHostname
    			Hostname: "server.default.svc",
    		},
    		Subsets: []echo.SubsetConfig{
    			{
    				Version:     "v1",
    				Annotations: map[string]string{annotation.SidecarInject.Name: "false"},
    			},
    		},
    	}
    	if t.Settings().EnableDualStack {
    		config.IPFamilies = "IPv6, IPv4"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. tests/integration/security/mtls_healthcheck_test.go

    	cfg := echo.Config{
    		Namespace: ns,
    		Service:   name,
    		Ports: []echo.Port{{
    			Name:         "http-8080",
    			Protocol:     protocol.HTTP,
    			ServicePort:  8080,
    			WorkloadPort: 8080,
    		}},
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/echotest/run.go

    		ctx.NewSubTestf("to %s", strings.Join(toNames, " ")).Run(func(ctx framework.TestContext) {
    			testFn(ctx, svc)
    		})
    	}
    }
    
    // nDestinations splits the given deployments into subsets of size n. A deployment may be present in multiple subsets to
    // ensure every deployment is included.
    func nDestinations(ctx framework.TestContext, n int, deployments echo.Services) (out []echo.Services) {
    	nDests := len(deployments)
    	if nDests < n {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. samples/helloworld/gateway-api/README.md

    ## Configure weight-based routing
    
    Declare the helloworld versions (Gateway API requires backend service definitions, unlike the Istio API which uses DestinationRule subsets for this):
    
    ```bash
    kubectl apply -f ./helloworld-versions.yaml
    ```
    
    Apply the following route rule to distribute the helloworld traffic 90% to v1, 10% to v2:
    
    ```bash
    kubectl apply -f ./helloworld-route.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 22:24:09 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/cross_revision_test.go

    			for _, ns := range namespaces {
    				builder = builder.WithConfig(echo.Config{
    					Service:   ns.revision,
    					Namespace: ns.namespace,
    					Ports:     ports.All(),
    					Subsets:   []echo.SubsetConfig{{}},
    				})
    			}
    			instances := builder.BuildOrFail(t)
    			// Add our existing revision to the instances list
    			instances = append(instances, apps.A...)
    			testAllEchoCalls(t, instances)
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/filters.go

    func reachableNakedDestinations(from echo.Instance) match.Matcher {
    	srcNw := from.Config().Cluster.NetworkName()
    	excluded := match.And(
    		// Only exclude naked if all subsets are naked. If an echo instance contains a mix of
    		// subsets with and without sidecars, we'll leave it up to the test to determine what
    		// is reachable.
    		match.AllNaked,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top