- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 12 for istioNamespace (0.15 sec)
-
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) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 13.6K bytes - Viewed (0) -
istioctl/pkg/cli/option.go
"Kubernetes namespace") flags.StringVarP(r.istioNamespace, FlagIstioNamespace, "i", viper.GetString(FlagIstioNamespace), "Istio system namespace") 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 }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Aug 30 01:19:20 UTC 2024 - 3.9K bytes - Viewed (0) -
istioctl/pkg/cli/context.go
} func (f *fakeInstance) Namespace() string { return f.rootFlags.Namespace() } func (f *fakeInstance) IstioNamespace() string { return f.rootFlags.IstioNamespace() } type NewFakeContextOption struct { Namespace string IstioNamespace string Results map[string][]byte // Objects are the objects to be applied to the fake client Objects []runtime.Object
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 23 19:31:32 UTC 2024 - 8.9K bytes - Viewed (0) -
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: "",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 12.1K bytes - Viewed (0) -
istioctl/pkg/tag/generate.go
"values": values.Map{ "revision": config.Revision, "base": values.Map{"validationURL": config.URL}, "global": values.Map{"istioNamespace": config.IstioNamespace}, }, }, } mfs, _, err := helm.Render(config.IstioNamespace, "default", vals, nil) if err != nil { return "", nil } var validatingWebhookYAML string for _, m := range mfs {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 13.3K bytes - Viewed (0) -
istioctl/pkg/injector/injector-list.go
func filterSystemNamespaces(nss []corev1.Namespace, istioNamespace string) []corev1.Namespace { filtered := make([]corev1.Namespace, 0) for _, ns := range nss { if inject.IgnoredNamespaces.Contains(ns.Name) || ns.Name == istioNamespace { continue } filtered = append(filtered, ns) } return filtered } func getNamespaces(ctx context.Context, client kube.CLIClient, istioNamespace string) ([]corev1.Namespace, error) {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Oct 18 11:39:52 UTC 2024 - 10.6K bytes - Viewed (0) -
istioctl/pkg/precheck/precheck.go
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 02:31:32 UTC 2024 - 15.3K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
writer io.Writer, kubeClient kube.CLIClient, configClient istioclient.Interface, workloadNamespace string, podsLabels klabels.Set, istioNamespace string, ) error { meshCfg, err := getMeshConfig(kubeClient, istioNamespace) if err != nil { return fmt.Errorf("failed to fetch mesh config: %v", err) }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
manifests/charts/README.md
--set global.istioNamespace=istio-system # Second istio-discovery, using master version of istio TAG=latest HUB=gcr.io/istio-testing iop istio-master istio-discovery-master $IBASE/istio-control/istio-discovery \ --set policy.enable=false \ --set global.istioNamespace=istio-master ``` ### Gateways
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 31 16:56:50 UTC 2024 - 7.4K bytes - Viewed (0) -
istioctl/pkg/ztunnelconfig/ztunnelconfig.go
} podNames = []string{podName} podNamespace = ns } else { var err error podNames, podNamespace, err = ctx.InferPodsFromTypedResource("daemonset/ztunnel", ctx.IstioNamespace()) if err != nil { return err } } destLoggerLevels := map[string]Level{} if reset { log.Warn("log level reset; using default value \"info\" for Ztunnel")
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 19:17:45 UTC 2024 - 22.2K bytes - Viewed (0)