Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 54 of 54 for systemNamespaces (0.28 sec)

  1. tests/integration/pilot/gateway_test.go

    	framework.NewTest(t).
    		RequiresSingleCluster().
    		RequiresLocalControlPlane().
    		Run(func(t framework.TestContext) {
    			c := t.Clusters().Default()
    			podIPs, err := i.PodIPsFor(c, i.Settings().SystemNamespace, "app=istio-ingressgateway")
    			if err != nil {
    				t.Fatalf("error getting ingress gateway pod ips: %v", err)
    			}
    			for _, ip := range podIPs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. tests/integration/README.md

    | -istio.test.kube.deployEastWestGW | bool | Deploy Istio east west gateway into the target Kubernetes environment. (default true). |
    | -istio.test.kube.systemNamespace | string | The namespace where the Istio components reside in a typical deployment. (default "istio-system"). |
    | -istio.test.kube.helm.values | string | Manual overrides for Helm values file. Only valid when deploying Istio. |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/kube/deployment.go

    	if err != nil {
    		log.Warnf("VM config failed to get Istio component for %s: %v", cfg.Cluster.Name(), err)
    		return
    	}
    
    	// Generate the istiod host the same way as istioctl.
    	istioNS := ist.Settings().SystemNamespace
    	istioRevision := getIstioRevision(cfg.Namespace)
    	istioHost = istioctlcmd.IstiodHost(istioNS, istioRevision)
    
    	istioIPAddr := ist.EastWestGatewayFor(cfg.Cluster).DiscoveryAddresses()[0].Addr()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		gvr.KubernetesGateway,
    		gvr.GatewayClass,
    		gvr.WorkloadEntry,
    		gvr.ServiceEntry,
    	} {
    		clienttest.MakeCRD(t, cl, crd)
    	}
    	idx := New(Options{
    		Client:          cl,
    		SystemNamespace: systemNS,
    		DomainSuffix:    "company.com",
    		ClusterID:       clusterID,
    		XDSUpdater:      up,
    		LookupNetwork: func(endpointIP string, labels labels.Instance) network.ID {
    			return networkID
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top