Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for systemNamespaces (0.29 sec)

  1. tests/integration/security/testdata/authz/egress-gateway.yaml.tmpl

    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: test-egress
      namespace: {{ .SystemNamespace.Name }}
    spec:
      host: "{{ .EgressGatewayServiceName | default "istio-egressgateway" }}.{{ .EgressGatewayServiceNamespace | default .SystemNamespace.Name }}.svc.cluster.local"
      trafficPolicy:
        portLevelSettings:
          - port:
              number: 443
            tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/common/routing.go

    `,
    			children: childs,
    			templateVars: func(_ echo.Callers, dests echo.Instances) map[string]any {
    				systemNamespace := "istio-system"
    				if t.Istio.Settings().SystemNamespace != "" {
    					systemNamespace = t.Istio.Settings().SystemNamespace
    				}
    				return map[string]any{
    					"SystemNamespace":   systemNamespace,
    					"GatewayIstioLabel": t.Istio.Settings().IngressGatewayIstioLabel,
    				}
    			},
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config/param/wellknown.go

    	// Namespace is the template parameter used for injecting the target namespace.Instance of the applied config.
    	Namespace WellKnown = "Namespace"
    
    	// SystemNamespace is the template parameter used for injecting the namespace.Instance of the Istio system.
    	SystemNamespace WellKnown = "SystemNamespace"
    )
    
    func (p WellKnown) String() string {
    	return string(p)
    }
    
    type WellKnownList []WellKnown
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 20 21:58:21 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. pilot/pkg/xds/debuggen.go

    		header:      make(map[string]string),
    		body:        new(bytes.Buffer),
    		wroteHeader: false,
    	}
    }
    
    func NewDebugGen(s *DiscoveryServer, systemNamespace string, debugMux *http.ServeMux) *DebugGen {
    	return &DebugGen{
    		Server:          s,
    		SystemNamespace: systemNamespace,
    		DebugMux:        debugMux,
    	}
    }
    
    // Generate XDS debug responses according to the incoming debug request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 18:51:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/istio/kube.go

    						"multiple control planes. Error: %v", i.cfg.SystemNamespace, c.Name(), err)
    				}
    			} else {
    				scopes.Framework.Errorf("failed creating namespace %s on cluster %s. This can happen when deploying "+
    					"multiple control planes. Error: %v", i.cfg.SystemNamespace, c.Name(), err)
    			}
    		}
    
    		// Create the secret for the cacerts.
    		if _, err := c.Kube().CoreV1().Secrets(i.cfg.SystemNamespace).Create(context.TODO(), secret,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/config/builder.go

    					param.Namespace.String():       to.Config().Namespace,
    					param.SystemNamespace.String(): systemNS,
    				}))
    			}
    		}
    	}
    
    	for _, to := range toAll {
    		for _, s := range out.needTo {
    			out.addYAML(withParams(s, param.Params{
    				param.To.String():              to,
    				param.Namespace.String():       to.Config().Namespace,
    				param.SystemNamespace.String(): systemNS,
    			}))
    		}
    	}
    
    	return out
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    				log.Infof("joining leader-election for %s in %s on cluster %s",
    					leaderelection.NamespaceController, options.SystemNamespace, options.ClusterID)
    				election := leaderelection.
    					NewLeaderElectionMulticluster(options.SystemNamespace, m.serverID, leaderelection.NamespaceController, m.revision, !configCluster, client).
    					AddRunFunction(func(leaderStop <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/fake.go

    		MeshWatcher:           opts.MeshWatcher,
    		ClusterID:             opts.ClusterID,
    		MeshServiceController: meshServiceController,
    		ConfigCluster:         opts.ConfigCluster,
    		SystemNamespace:       opts.SystemNamespace,
    	}
    	c := NewController(opts.Client, options)
    	meshServiceController.AddRegistry(c)
    
    	if opts.ServiceHandler != nil {
    		c.AppendServiceHandler(opts.ServiceHandler)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/meshconfig.go

    					krt.FilterObjectName(types.NamespacedName{Name: features.SharedMeshConfig, Namespace: options.SystemNamespace})))
    			}
    			cms = AppendNonNil(cms, krt.FetchOne(ctx, ConfigMaps,
    				krt.FilterObjectName(types.NamespacedName{Name: cmName, Namespace: options.SystemNamespace})))
    
    			for _, c := range cms {
    				n, err := mesh.ApplyMeshConfig(meshConfigMapData(c), meshCfg)
    				if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/config.go

    	}
    	return out, nil
    }
    
    // String implements fmt.Stringer
    func (c *Config) String() string {
    	result := ""
    
    	result += fmt.Sprintf("SystemNamespace:                %s\n", c.SystemNamespace)
    	result += fmt.Sprintf("TelemetryNamespace:             %s\n", c.TelemetryNamespace)
    	result += fmt.Sprintf("DeployIstio:                    %v\n", c.DeployIstio)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top