Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for istioNamespace (0.21 sec)

  1. istioctl/pkg/multixds/gather.go

    // nolint: lll
    func RequestAndProcessXds(dr *discovery.DiscoveryRequest, centralOpts clioptions.CentralControlPlaneOptions, istioNamespace string, kubeClient kube.CLIClient) (*discovery.DiscoveryResponse, error) {
    	responses, err := MultiRequestAndProcessXds(true, dr, centralOpts, istioNamespace,
    		istioNamespace, tokenServiceAccount, kubeClient, DefaultOptions)
    	if err != nil {
    		return nil, err
    	}
    	return mergeShards(responses)
    }
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 08 08:38:19 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  2. istioctl/pkg/validate/validate.go

    	if i >= 0 {
    		n = n[:i]
    	}
    	p := protocol.Parse(n)
    	return p == protocol.Unsupported
    }
    
    func handleNamespace(istioNamespace string) string {
    	if istioNamespace == "" {
    		istioNamespace = constants.IstioSystemNamespace
    	}
    	return istioNamespace
    }
    
    // TODO(nmittler): Remove this once Pilot migrates to galley schema.
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Jan 22 17:58:52 GMT 2024
    - 15K bytes
    - Viewed (0)
  3. istioctl/pkg/config/config_test.go

    	"istio.io/istio/istioctl/pkg/util/testutil"
    	"istio.io/istio/pkg/config/constants"
    )
    
    func TestConfigList(t *testing.T) {
    	cases := []testutil.TestCase{
    		//{ // case 0
    		//	Args:           strings.Split("get istioNamespace", " "),
    		//	ExpectedRegexp: regexp.MustCompile("Configure istioctl defaults"),
    		//	WantException:  false,
    		//},
    		{ // case 1
    			Args: strings.Split("list", " "),
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  4. operator/cmd/mesh/operator-common.go

    		return "", "", err
    	}
    
    	tmpl := `
    istioNamespace: {{.IstioNamespace}}
    watchedNamespaces: {{.WatchedNamespaces}}
    hub: {{.Hub}}
    tag: {{.Tag}}
    {{- if .ImagePullSecrets }}
    imagePullSecrets:
    {{- range .ImagePullSecrets }}
    - {{ . }}
    {{- end }}
    {{- end }}
    revision: {{if .Revision }} {{.Revision}} {{else}} "" {{end}}
    `
    
    	tv := struct {
    		IstioNamespace    string
    		WatchedNamespaces string
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sat Dec 17 02:25:04 GMT 2022
    - 3.8K bytes
    - Viewed (0)
  5. istioctl/pkg/tag/generate_test.go

    	tcs := []struct {
    		name           string
    		istioNamespace string
    		webhook        admitv1.MutatingWebhookConfiguration
    		whURL          string
    		whSVC          string
    		whCA           string
    		userManaged    bool
    	}{
    		{
    			name:           "webhook-pointing-to-service",
    			istioNamespace: "istio-system",
    			webhook:        revisionCanonicalWebhook,
    			whURL:          "",
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Jan 16 17:43:49 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/rolebinding.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      name: istiod{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Values.global.istioNamespace }}
      labels:
        app: istiod
        release: {{ .Release.Name }}
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: istiod{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}
    subjects:
      - kind: ServiceAccount
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jun 09 22:42:56 GMT 2021
    - 581 bytes
    - Viewed (0)
  7. manifests/charts/istiod-remote/templates/clusterrolebinding.yaml

    subjects:
      - kind: ServiceAccount
        name: istiod{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}
        namespace: {{ .Values.global.istioNamespace }}
    ---
    {{- if not (eq (toString .Values.pilot.env.PILOT_ENABLE_GATEWAY_API_DEPLOYMENT_CONTROLLER) "false") }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Oct 10 17:32:44 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  8. istioctl/pkg/internaldebug/internal-debug.go

    				namespace, serviceAccount, kubeClient, multixds.DefaultOptions)
    			if err != nil {
    				return err
    			}
    			sw := DebugWriter{
    				Writer:                 c.OutOrStdout(),
    				InternalDebugAllIstiod: internalDebugAllIstiod,
    			}
    			newResponse, err := HandlerForDebugErrors(kubeClient, &centralOpts, c.OutOrStdout(), ctx.IstioNamespace(), xdsResponses)
    			if err != nil {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 04:16:55 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/templates/clusterrolebinding.yaml

    subjects:
      - kind: ServiceAccount
        name: istiod{{- if not (eq .Values.revision "")}}-{{ .Values.revision }}{{- end }}
        namespace: {{ .Values.global.istioNamespace }}
    ---
    {{- if not (eq (toString .Values.pilot.env.PILOT_ENABLE_GATEWAY_API_DEPLOYMENT_CONTROLLER) "false") }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Oct 10 17:32:44 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  10. istioctl/pkg/cli/option.go

    	return r
    }
    
    // Namespace returns the namespace flag value.
    func (r *RootFlags) Namespace() string {
    	return *r.namespace
    }
    
    // IstioNamespace returns the istioNamespace flag value.
    func (r *RootFlags) IstioNamespace() string {
    	return *r.istioNamespace
    }
    
    // DefaultNamespace returns the default namespace to use.
    func (r *RootFlags) DefaultNamespace() string {
    	if r.defaultNamespace == "" {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 26 18:01:27 GMT 2024
    - 3.1K bytes
    - Viewed (0)
Back to top