Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for SystemNamespace (0.2 sec)

  1. pkg/test/cert/ca/intermediate.go

    subjectAltName=@san
    [ san ]
    DNS.1 = istiod.{{ .SystemNamespace }}
    DNS.2 = istiod.{{ .SystemNamespace }}.svc
    DNS.3 = istio-pilot.{{ .SystemNamespace }}
    DNS.4 = istio-pilot.{{ .SystemNamespace }}.svc
    [ req_dn ]
    O = Istio
    CN = Intermediate CA
    `
    )
    
    // NewIstioConfig creates an extensions configuration for Istio, using the given system namespace in
    // the DNS SANs.
    func NewIstioConfig(systemNamespace string) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/eastwest.go

    		"tag=" + s.Image.Tag,
    		"values.global.imagePullPolicy=" + s.Image.PullPolicy,
    		"values.gateways.istio-ingressgateway.autoscaleEnabled=false",
    	}
    
    	if i.cfg.SystemNamespace != "istio-system" {
    		setArgs = append(setArgs, "values.global.istioNamespace="+i.cfg.SystemNamespace)
    	}
    
    	// Include all user-specified values.
    	for k, v := range i.cfg.Values {
    		setArgs = append(setArgs, fmt.Sprintf("values.%s=%s", k, v))
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top