Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for ClusterLocalFQDN (0.24 sec)

  1. pkg/test/framework/components/echo/match/matchers_test.go

    	return f.Config().NamespaceName()
    }
    
    func (f fakeInstance) ServiceAccountName() string {
    	return f.Config().ServiceAccountName()
    }
    
    func (f fakeInstance) ClusterLocalFQDN() string {
    	return f.Config().ClusterLocalFQDN()
    }
    
    func (f fakeInstance) ClusterSetLocalFQDN() string {
    	return f.Config().ClusterSetLocalFQDN()
    }
    
    func (f fakeInstance) Address() string {
    	panic("implement me")
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/deployment/flags.go

    type configs []echo.Config
    
    var _ config.Value = &configs{}
    
    func (c *configs) String() string {
    	buf := &bytes.Buffer{}
    	for _, cc := range *c {
    		_, _ = fmt.Fprintf(buf, "FQDN:     %s\n", cc.ClusterLocalFQDN())
    		_, _ = fmt.Fprintf(buf, "Headless: %v\n", cc.Headless)
    		_, _ = fmt.Fprintf(buf, "VM:       %v\n", cc.DeployAsVM)
    		if cc.DeployAsVM {
    			_, _ = fmt.Fprintf(buf, "VMDistro: %s\n", cc.VMDistro)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. tests/integration/security/testdata/authz/ingress-gateway.yaml.tmpl

      namespace: {{ .To.NamespaceName }}
    spec:
      hosts:
      - "*.{{ .To.ServiceName }}.com"
      gateways:
      - gw-{{ .To.ServiceName }}
      http:
      - route:
        - destination:
            host: "{{ .To.ClusterLocalFQDN }}"
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. tests/integration/pilot/multicluster_test.go

    					func(t framework.TestContext) {
    						i.PatchMeshConfigOrFail(t, t, fmt.Sprintf(`
    serviceSettings: 
    - settings:
        clusterLocal: true
      hosts:
      - "%s"
    `, apps.B.Config().ClusterLocalFQDN()))
    					},
    				},
    				{
    					"subsets",
    					func(t framework.TestContext) {
    						cfg := tmpl.EvaluateOrFail(t, `
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. 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)
Back to top