Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for systemNamespaces (0.22 sec)

  1. pkg/test/framework/components/istio/cleanup.go

    		if e := c.Kube().CoreV1().Secrets(i.cfg.SystemNamespace).DeleteCollection(
    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    			err = multierror.Append(err, e)
    		}
    		if e := c.Kube().CoreV1().ConfigMaps(i.cfg.SystemNamespace).DeleteCollection(
    			context.Background(), metav1.DeleteOptions{}, metav1.ListOptions{}); e != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. tests/integration/pilot/cni_race_test.go

    			waitForRepairOrFail(t, c, ns)
    		})
    }
    
    func getCNIDaemonSet(ctx framework.TestContext, c cluster.Cluster) *appsv1.DaemonSet {
    	cniDaemonSet, err := c.(istioKube.CLIClient).
    		Kube().AppsV1().DaemonSets(i.Settings().SystemNamespace).
    		Get(context.Background(), "istio-cni-node", metav1.GetOptions{})
    	if err != nil {
    		ctx.Fatalf("failed to get CNI Daemonset %v", err)
    	}
    	if cniDaemonSet == nil {
    		ctx.Fatal("cannot find CNI Daemonset")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/istioctl_test.go

    			}{
    				{
    					name: "ingressgateway",
    					pod:  fmt.Sprintf("%s.%s", gwPod, i.Settings().SystemNamespace),
    					wants: []*regexp.Regexp{
    						regexp.MustCompile(fmt.Sprintf(`DENY\s+deny-policy\.%s\s+2`, i.Settings().SystemNamespace)),
    						regexp.MustCompile(fmt.Sprintf(`ALLOW\s+allow-policy\.%s\s+1`, i.Settings().SystemNamespace)),
    					},
    				},
    				{
    					name: "workload",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/informers.go

    	dataplane       MeshDataplane
    	systemNamespace string
    
    	queue      controllers.Queue
    	pods       kclient.Client[*corev1.Pod]
    	namespaces kclient.Client[*corev1.Namespace]
    }
    
    func setupHandlers(ctx context.Context, kubeClient kube.Client, dataplane MeshDataplane, systemNamespace string) *InformerHandlers {
    	s := &InformerHandlers{ctx: ctx, dataplane: dataplane, systemNamespace: systemNamespace}
    	s.queue = controllers.NewQueue("ambient",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. tests/integration/pilot/cni/cniversionskew_test.go

    				t.Skip("CNI version skew test is only tested when CNI is enabled.")
    			}
    			for _, v := range versions {
    				installCNIOrFail(t, v)
    				podFetchFn := kube.NewSinglePodFetch(t.Clusters().Default(), i.Settings().SystemNamespace, "k8s-app=istio-cni-node")
    				// Make sure CNI pod is using image with applied version.
    				retry.UntilSuccessOrFail(t, func() error {
    					pods, err := podFetchFn()
    					if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tests/integration/pilot/vm_test.go

    	framework.
    		NewTest(t).
    		RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			if t.Settings().Skip(echo.VM) {
    				t.Skip()
    			}
    			scaleDeploymentOrFail(t, "istiod", i.Settings().SystemNamespace, 2)
    			client := match.Cluster(t.Clusters().Default()).FirstOrFail(t, apps.A)
    			// TODO test multi-network (must be shared control plane but on different networks)
    			var autoVM echo.Instance
    			_ = deployment.New(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. tests/integration/telemetry/policy/envoy_ratelimit_test.go

    		"RateLimitNamespace": ratelimitNs.Name(),
    	})
    	if err != nil {
    		ctx.Fatal(err)
    	}
    
    	err = ctx.ConfigIstio().YAML(ist.Settings().SystemNamespace, con).Apply()
    	if err != nil {
    		ctx.Fatal(err)
    	}
    	return func() {
    		ctx.ConfigIstio().YAML(ist.Settings().SystemNamespace, con).DeleteOrFail(ctx)
    	}
    }
    
    func sendTrafficAndCheckIfRatelimited(t framework.TestContext) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex.go

    	networkUpdateTrigger  *krt.RecomputeTrigger
    
    	SystemNamespace string
    	DomainSuffix    string
    	ClusterID       cluster.ID
    	XDSUpdater      model.XDSUpdater
    	Network         LookupNetwork
    }
    
    type Options struct {
    	Client kubeclient.Client
    
    	Revision        string
    	SystemNamespace string
    	DomainSuffix    string
    	ClusterID       cluster.ID
    	XDSUpdater      model.XDSUpdater
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 19 17:19:41 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. tests/integration/security/external_ca/reachability_test.go

    func TestReachability(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			istioCfg := istio.DefaultConfigOrFail(t, t)
    			namespace.ClaimOrFail(t, t, istioCfg.SystemNamespace)
    
    			from := apps.EchoNamespace.A
    			to := apps.EchoNamespace.B
    			fromAndTo := from.Append(to)
    
    			echotest.New(t, fromAndTo).
    				WithDefaultFilters(1, 1).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. tests/integration/pilot/workloadentry_test.go

          `
    
    			// expose the ServiceEntry and create the "manual discovery" gateways in all clusters
    			cfg := t.ConfigIstio().YAML(i.Settings().SystemNamespace, exposeServices)
    			for _, network := range t.Clusters().Networks() {
    				cfg.
    					YAML(i.Settings().SystemNamespace, fmt.Sprintf(gwTmpl, network, network, gatewayAddresses[network].ip))
    			}
    			cfg.ApplyOrFail(t)
    
    			// create a unique SE per cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top