Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ClusterLocalFQDN (0.38 sec)

  1. pkg/test/framework/components/echo/echotest/filters_test.go

    							// TODO if the destinations would change based on which cluster then add cluster to srCkey
    							fromKey := from.Config().ClusterLocalFQDN()
    							toKey := to.Config().ClusterLocalFQDN()
    							if testTopology[fromKey] == nil {
    								testTopology[fromKey] = map[string]int{}
    							}
    							testTopology[fromKey][toKey]++
    						})
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    	NamespacedName() NamespacedName
    
    	// ServiceAccountName returns the service account string for this service.
    	ServiceAccountName() string
    
    	// ClusterLocalFQDN returns the fully qualified domain name for cluster-local host.
    	ClusterLocalFQDN() string
    
    	// ClusterSetLocalFQDN returns the fully qualified domain name for the Kubernetes
    	// Multi-Cluster Services (MCS) Cluster Set host.
    	ClusterSetLocalFQDN() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/deployment/builder.go

    			return err
    		}
    		if existing, ok := services[cfg.ClusterLocalFQDN()]; ok {
    			// we've already run the generation for another echo instance's config, make sure things are the same
    			if existing != svc {
    				return fmt.Errorf("inconsistency in %s Service definition:\n%s", cfg.Service, cmp.Diff(existing, svc))
    			}
    		}
    		services[cfg.ClusterLocalFQDN()] = svc
    	}
    
    	// Deploy the services to all clusters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. 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)
  5. 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)
Back to top