Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for WithClusters (0.2 sec)

  1. tests/integration/pilot/mcs/common/common.go

    			Prefix: nsPrefix,
    			Inject: true,
    		})
    		if err != nil {
    			return err
    		}
    		d.Namespace = ns
    
    		// Create echo instances in each cluster.
    		d.Instances, err = deployment.New(t).
    			WithClusters(t.Clusters()...).
    			WithConfig(echo.Config{
    				Service:   ServiceA,
    				Namespace: ns,
    				Ports:     ports.All(),
    			}).
    			WithConfig(echo.Config{
    				Service:   ServiceB,
    				Namespace: ns,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/cross_revision_test.go

      - hosts:
        - "*/*"`).ApplyOrFail(t)
    			// create an echo instance in each revisioned namespace, all these echo
    			// instances will be injected with proxies from their respective versions
    			builder := deployment.New(t).WithClusters(t.Clusters()...)
    			for _, ns := range namespaces {
    				builder = builder.WithConfig(echo.Config{
    					Service:   ns.revision,
    					Namespace: ns.namespace,
    					Ports:     ports.All(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tests/integration/pilot/revisions/revisions_test.go

    				Revision: "stable",
    			})
    			canary := namespace.NewOrFail(t, t, namespace.Config{
    				Prefix:   "canary",
    				Inject:   true,
    				Revision: "canary",
    			})
    
    			echos := deployment.New(t).
    				WithClusters(t.Clusters()...).
    				WithConfig(echo.Config{
    					Service:   "client",
    					Namespace: stable,
    					Ports:     []echo.Port{},
    				}).
    				WithConfig(echo.Config{
    					Service:   "server",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 27 15:52:38 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. tests/integration/ambient/cnirepair/main_test.go

    		Prefix: "echo",
    		Inject: false,
    		Labels: map[string]string{
    			constants.DataplaneModeLabel: "ambient",
    		},
    	})
    	if err != nil {
    		return err
    	}
    
    	builder := deployment.New(t).
    		WithClusters(t.Clusters()...).
    		WithConfig(echo.Config{
    			Service:        Captured,
    			Namespace:      apps.Namespace,
    			Ports:          ports.All(),
    			ServiceAccount: true,
    			Subsets: []echo.SubsetConfig{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top