Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for systemNamespaces (0.45 sec)

  1. 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)
  2. 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)
  3. tests/integration/security/testdata/authz/ingress-gateway.yaml.tmpl

    # remote ip is 10.242.5.7 or in the network 10.124.99.0/24.
    
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: policy-{{ .To.ServiceName }}
      namespace: {{ .SystemNamespace.Name }}
    spec:
      action: DENY
      selector:
        matchLabels:
          app: {{.GatewayIstioLabel | default "istio-ingressgateway"}}
      rules:
        - to:
            - operation:
                hosts: [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 08 07:03:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top