Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for systemNamespaces (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/pkg/serviceregistry/kube/controller/controller.go

    	if c.opts.SystemNamespace != "" {
    		registerHandlers[*v1.Namespace](
    			c,
    			c.namespaces,
    			"Namespaces",
    			func(old *v1.Namespace, cur *v1.Namespace, event model.Event) error {
    				if cur.Name == c.opts.SystemNamespace {
    					return c.onSystemNamespaceEvent(old, cur, event)
    				}
    				return nil
    			},
    			nil,
    		)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. tests/integration/security/cacert_rotation/main_test.go

    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCfg := istio.DefaultConfigOrFail(t, t)
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{})
    			namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    
    			from := apps.EchoNamespace.A
    			to := apps.EchoNamespace.B
    			fromAndTo := from.Append(to)
    
    			lastUpdateTime, err := getWorkloadCertLastUpdateTime(t, from[0], istioCtl)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/server.go

    		isReady:    ready,
    		dataplane: &meshDataplane{
    			kubeClient: client.Kube(),
    			netServer:  netServer,
    		},
    	}
    	s.NotReady()
    	s.handlers = setupHandlers(s.ctx, s.kubeClient, s.dataplane, args.SystemNamespace)
    
    	cniServer := startCniPluginServer(ctx, pluginSocket, s.handlers, s.dataplane)
    	err = cniServer.Start()
    	if err != nil {
    		return nil, fmt.Errorf("error starting cni server: %w", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. tests/integration/security/ca_custom_root/secure_naming_test.go

    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCfg := istio.DefaultConfigOrFail(t, t)
    
    			testNamespace := apps.EchoNamespace.Namespace
    			namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    			// Check that the CA certificate in the configmap of each namespace is as expected, which
    			// is used for data plane to control plane TLS authentication.
    			retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/zipkin/kube.go

    	if err != nil {
    		return nil, err
    	}
    
    	if err := installZipkin(ctx, cfg.TelemetryNamespace); err != nil {
    		return nil, err
    	}
    
    	fetchFn := testKube.NewSinglePodFetch(c.cluster, cfg.SystemNamespace, fmt.Sprintf("app=%s", appName))
    	pods, err := testKube.WaitUntilPodsAreReady(fetchFn)
    	if err != nil {
    		return nil, err
    	}
    	pod := pods[0]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. tests/integration/pilot/multicluster_test.go

    			primary := t.Clusters().Primaries()[0]
    			// it doesn't matter if the other cluster is a primary/remote/etc.
    			remote := t.Clusters().Exclude(primary)[0]
    
    			var (
    				ns  = i.Settings().SystemNamespace
    				sa  = "istio-reader-no-perms"
    				pod = "istiod-bad-secrets-test"
    			)
    			t.Logf("creating service account %s/%s", ns, sa)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top