Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for ConfigKube (0.65 sec)

  1. pkg/test/framework/components/echo/deployment/builder.go

    			}
    		}
    		services[cfg.ClusterLocalFQDN()] = svc
    	}
    
    	// Deploy the services to all clusters.
    	cfg := b.ctx.ConfigKube().New()
    	for svcNs, svcYaml := range services {
    		ns := strings.Split(svcNs, ".")[1]
    		cfg.YAML(ns, svcYaml)
    	}
    
    	return cfg.Apply(apply.NoCleanup)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. pkg/test/framework/testcontext.go

    	}
    
    	return dir, err
    }
    
    func (c *testContext) SkipDumping() {
    	c.scope.skipDumping()
    }
    
    func (c *testContext) ConfigKube(clusters ...cluster.Cluster) config.Factory {
    	return newConfigFactory(c, clusters)
    }
    
    func (c *testContext) ConfigIstio() config.Factory {
    	return newConfigFactory(c, c.Clusters().Configs())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. tests/integration/security/egress_gateway_origination_test.go

        portLevelSettings:
          - port:
              number: 443
            tls:
              mode: {{.Mode}}
              credentialName: {{.CredentialName}}
              sni: {{ .to.Config.ClusterLocalFQDN }}
    `
    
    	t.ConfigKube(t.Clusters().Default()).Eval(systemNS.Name(), args, dr).
    		ApplyOrFail(t)
    }
    
    func newTLSGatewayCallOpts(to echo.Target, host string, statusCode int, useGateway bool) echo.CallOptions {
    	return echo.CallOptions{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe.go

    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/config"
    	analyzerutil "istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/host"
    	configKube "istio.io/istio/pkg/config/kube"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/inject"
    	"istio.io/istio/pkg/kube/labels"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/maps"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/kube.go

    	// Create a secret.
    	secret, err := i.CreateRemoteSecret(i.ctx, c)
    	if err != nil {
    		return fmt.Errorf("failed creating remote secret for cluster %s: %v", c.Name(), err)
    	}
    	if err := i.ctx.ConfigKube(from...).
    		YAML(i.cfg.SystemNamespace, secret).
    		Apply(apply.NoCleanup); err != nil {
    		return fmt.Errorf("failed applying remote secret to clusters: %v", err)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top