Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for systemNamespaces (0.21 sec)

  1. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	test.SetForTest(t, &features.EnableAmbient, true)
    	testNS := "test"
    	systemNS := "istio-system"
    
    	s, fx := NewFakeControllerWithOptions(t, FakeControllerOptions{
    		SystemNamespace: systemNS,
    		NetworksWatcher: mesh.NewFixedNetworksWatcher(nil),
    	})
    
    	tracker := assert.NewTracker[string](t)
    
    	s.namespaces.AddEventHandler(controllers.ObjectHandler(func(o controllers.Object) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/deployment/builder.go

    	ns := "istio-system"
    	i, err := istio.Get(b.ctx)
    	if err != nil {
    		scopes.Framework.Infof("defaulting to istio-system namespace for injection template discovery: %v", err)
    	} else {
    		ns = i.Settings().SystemNamespace
    	}
    
    	out := map[string]sets.String{}
    	for _, c := range b.ctx.Clusters() {
    		out[c.Name()] = sets.New[string]()
    		// TODO find a place to read revision(s) and avoid listing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. tests/integration/security/egress_gateway_origination_test.go

    		"Mode":           destinationRuleMode,
    		"CredentialName": credentialName,
    	}
    
    	// Get namespace for gateway pod.
    	istioCfg := istio.DefaultConfigOrFail(t, t)
    	systemNS := namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    
    	dr := `
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: originate-tls-for-server-sds-{{.CredentialName}}
    spec:
      host: "{{ .to.Config.ClusterLocalFQDN }}"
    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. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    	}
    	details := Details{
    		From: from.Config().Cluster.Name(),
    		To:   address,
    	}
    
    	destName := to.Config().Service
    	destNS := to.Config().Namespace.Name()
    	istioNS := istio.GetOrFail(t, t).Settings().SystemNamespace
    
    	for _, c := range t.Clusters() {
    		info := IPs{
    			Cluster: c.StableName(),
    		}
    
    		// Get pod IPs for service B.
    		pods, err := c.PodsForSelector(context.TODO(), destNS, "app="+destName)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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