Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for systemNamespaces (0.33 sec)

  1. pilot/pkg/bootstrap/discovery.go

    	"istio.io/istio/pilot/pkg/xds"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/cluster"
    )
    
    func InitGenerators(
    	s *xds.DiscoveryServer,
    	cg core.ConfigGenerator,
    	systemNameSpace string,
    	clusterID cluster.ID,
    	internalDebugMux *http.ServeMux,
    ) {
    	env := s.Env
    	generators := map[string]model.XdsResourceGenerator{}
    	edsGen := &xds.EdsGenerator{Cache: s.Cache, EndpointIndex: env.EndpointIndex}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/options.go

    import (
    	"net/netip"
    
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/env"
    )
    
    var (
    	PodNamespace      = env.RegisterStringVar("POD_NAMESPACE", "", "pod's namespace").Get()
    	SystemNamespace   = env.RegisterStringVar("SYSTEM_NAMESPACE", constants.IstioSystemNamespace, "istio system namespace").Get()
    	PodName           = env.RegisterStringVar("POD_NAME", "", "").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/flags.go

    package istio
    
    import (
    	"flag"
    )
    
    // init registers the command-line flags that we can exposed for "go test".
    func init() {
    	flag.StringVar(&settingsFromCommandline.SystemNamespace, "istio.test.kube.systemNamespace", settingsFromCommandline.SystemNamespace,
    		"Specifies the namespace where the istiod resides in a typical deployment. Defaults to istio-system")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top