Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for systemNamespaces (0.24 sec)

  1. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    	}
    	istioCfg := istio.DefaultConfigOrFail(t, t)
    	systemNamespace := namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    	args := map[string]string{
    		"AppNamespace": serviceNamespace.Name(),
    		"Mode":         destinationRuleMode, "RootCertPath": rootCertPathToUse,
    	}
    	t.ConfigIstio().Eval(systemNamespace.Name(), args, destinationRuleToParse).ApplyOrFail(t)
    }
    
    const (
    	Gateway = `
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. tests/integration/ambient/cacert_rotation_test.go

    			namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    			newX509 := getX509FromFile(t, "ca-cert-alt-2.pem")
    
    			sa := apps.Captured[0].ServiceAccountName()
    
    			// we do not know which ztunnel instance is located on the node as the workload, so we need to check all of them initially
    			ztunnelPods, err := kubetest.NewPodFetch(t.AllClusters()[0], istioCfg.SystemNamespace, "app=ztunnel")()
    			assert.NoError(t, err)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/servicecontroller.go

    	args.RegistryOptions.KubeOptions.MeshNetworksWatcher = s.environment.NetworksWatcher
    	args.RegistryOptions.KubeOptions.MeshWatcher = s.environment.Watcher
    	args.RegistryOptions.KubeOptions.SystemNamespace = args.Namespace
    	args.RegistryOptions.KubeOptions.MeshServiceController = s.ServiceController()
    	// pass namespace to k8s service registry
    	kubecontroller.NewMulticluster(args.PodName,
    		s.kubeClient.Kube(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, echo.VM)
    			s.DisableDefaultExternalServiceConnectivity = true
    
    			cfg.Values["global.istioNamespace"] = userGroup1NS.Name()
    			cfg.SystemNamespace = userGroup1NS.Name()
    			cfg.ControlPlaneValues = fmt.Sprintf(`
    namespace: %s
    revision: usergroup-1
    meshConfig:
      # REGISTRY_ONLY on one control plane is used to verify custom resources scoping
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/setup_test.go

    		Setup(istio.Setup(&ist, setupConfig)).
    		Setup(func(ctx resource.Context) error {
    			i, err := istio.Get(ctx)
    			if err != nil {
    				return err
    			}
    			return ctx.ConfigIstio().YAML(i.Settings().SystemNamespace, `
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
    spec:
      metrics:
      - providers:
        - name: prometheus
    `).Apply()
    		}).
    		Setup(testRegistrySetup).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. cni/pkg/cmd/root.go

    			log.Info("Starting ambient node agent with inpod redirect mode")
    			ambientAgent, err := nodeagent.NewServer(ctx, watchServerReady, cfg.InstallConfig.CNIEventAddress,
    				nodeagent.AmbientArgs{
    					SystemNamespace: nodeagent.SystemNamespace,
    					Revision:        nodeagent.Revision,
    					ServerSocket:    cfg.InstallConfig.ZtunnelUDSAddress,
    					DNSCapture:      cfg.InstallConfig.AmbientDNSCapture,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/util.go

            weight: 25
    `
    
    func waitForValidationWebhook(ctx resource.Context, cluster cluster.Cluster, cfg Config) error {
    	dummyValidationVirtualService := fmt.Sprintf(dummyValidationVirtualServiceTemplate, cfg.SystemNamespace)
    	defer func() {
    		e := ctx.ConfigKube(cluster).YAML("", dummyValidationVirtualService).Delete()
    		if e != nil {
    			scopes.Framework.Warnf("error deleting dummy virtual service for waiting the validation webhook: %v", e)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. tests/integration/security/sds_ingress/util/util.go

    ) {
    	t.Helper()
    
    	// Get namespace for ingress gateway pod.
    	istioCfg := istio.DefaultConfigOrFail(t, t)
    	systemNS := namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    	CreateIngressKubeSecretInNamespace(t, credName, ingressType, ingressCred, isCompoundAndNotGeneric, systemNS.Name(), clusters...)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. tests/integration/pilot/multi_version_revision_test.go

    		fmt.Sprintf("%s-install.yaml.tar", version)))
    	if err != nil {
    		t.Fatalf("could not read installation config: %v", err)
    	}
    	configs[version] = config
    	if err := t.ConfigIstio().YAML(i.Settings().SystemNamespace, config).Apply(apply.NoCleanup); err != nil {
    		t.Fatal(err)
    	}
    }
    
    // skipIfK8sVersionUnsupported skips the test if we're running on a k8s version that is not expected to work
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/stats_test.go

    	expectedBuckets := DefaultBucketCount
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			// Enable strict mTLS. This is needed for mock secured prometheus scraping test.
    			t.ConfigIstio().YAML(ist.Settings().SystemNamespace, PeerAuthenticationConfig).ApplyOrFail(t)
    			g, _ := errgroup.WithContext(context.Background())
    			for _, cltInstance := range GetClientInstances() {
    				cltInstance := cltInstance
    				g.Go(func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.3K bytes
    - Viewed (0)
Back to top