Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for ClusterLocalFQDN (0.25 sec)

  1. pkg/test/framework/components/echo/kube/instance.go

    	return c.cfg.NamespaceName()
    }
    
    func (c *instance) ServiceAccountName() string {
    	return c.cfg.ServiceAccountName()
    }
    
    func (c *instance) ClusterLocalFQDN() string {
    	return c.cfg.ClusterLocalFQDN()
    }
    
    func (c *instance) ClusterSetLocalFQDN() string {
    	return c.cfg.ClusterSetLocalFQDN()
    }
    
    func (c *instance) Config() echo.Config {
    	return c.cfg
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. tests/integration/pilot/ingress_test.go

    			}
    
    			templateParams := map[string]string{
    				"imagePullSecret": t.Settings().Image.PullSecretNameOrFail(t),
    				"injectLabel":     injectLabel,
    				"host":            apps.A.Config().ClusterLocalFQDN(),
    				"imagePullPolicy": t.Settings().Image.PullPolicy,
    			}
    
    			t.NewSubTest("minimal").Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/calloptions.go

    	}
    
    	// Next, if the Address was manually specified use it as the Host.
    	if len(o.Address) > 0 {
    		return o.Address
    	}
    
    	// Finally, use the target's FQDN.
    	if o.To != nil {
    		return o.To.Config().ClusterLocalFQDN()
    	}
    
    	return ""
    }
    
    func (o CallOptions) DeepCopy() CallOptions {
    	clone := o
    	if o.TLS.Alpn != nil {
    		clone.TLS.Alpn = make([]string, len(o.TLS.Alpn))
    		copy(clone.TLS.Alpn, o.TLS.Alpn)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
  4. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	t.Helper()
    
    	var address string
    	if ht == hostTypeClusterSetLocal {
    		// Call the service using the MCS ClusterSet host.
    		address = to.Config().ClusterSetLocalFQDN()
    	} else {
    		address = to.Config().ClusterLocalFQDN()
    	}
    
    	_, err := from.Call(echo.CallOptions{
    		Address: address,
    		To:      to,
    		Port: echo.Port{
    			Name: "http",
    		},
    		Check: checker,
    		Retry: echo.Retry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/tunneling_test.go

    			}
    		})
    }
    
    func testConnectivity(from, to echo.Instance, p protocol.Instance, port echo.Port, testName string) error {
    	res, err := from.Call(echo.CallOptions{
    		Address: to.ClusterLocalFQDN(),
    		Port: echo.Port{
    			Protocol:    p,
    			ServicePort: port.ServicePort,
    		},
    		HTTP: echo.HTTP{
    			Path: "/" + testName,
    		},
    	})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/deployment.go

    	if err = ctx.ConfigKube(cfg.Cluster).
    		YAML(cfg.Namespace.Name(), deploymentYAML).
    		Apply(apply.NoCleanup); err != nil {
    		return nil, fmt.Errorf("failed deploying echo %s to cluster %s: %v",
    			cfg.ClusterLocalFQDN(), cfg.Cluster.Name(), err)
    	}
    
    	return &deployment{
    		ctx:             ctx,
    		cfg:             cfg,
    		shouldCreateWLE: cfg.DeployAsVM && !cfg.AutoRegisterVM,
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    					continue
    				}
    				t.NewSubTestf("ALLOW_ANY %v to external service", svc.Config().Service).Run(func(t framework.TestContext) {
    					svc.CallOrFail(t, echo.CallOptions{
    						Address: apps.MockExternal.ClusterLocalFQDN(),
    						Port:    echo.Port{Name: "http", ServicePort: 80},
    						Scheme:  scheme.HTTP,
    						HTTP: echo.HTTP{
    							Path: "/headers",
    						},
    						Check: check.OK(),
    					})
    				})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top