Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for telemetryNamespace (0.23 sec)

  1. pkg/test/framework/components/istio/flags.go

    		"Specifies the namespace where the istiod resides in a typical deployment. Defaults to istio-system")
    	flag.StringVar(&settingsFromCommandline.TelemetryNamespace, "istio.test.kube.telemetryNamespace", settingsFromCommandline.TelemetryNamespace,
    		"Specifies the namespace in which kiali, tracing providers, graphana, prometheus are deployed.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 31 15:08:52 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. pkg/test/framework/components/prometheus/kube.go

    	if !cfgIn.SkipDeploy {
    		if err := installPrometheus(ctx, cfg.TelemetryNamespace); err != nil {
    			return nil, err
    		}
    	}
    	for _, cls := range ctx.Clusters() {
    		scopes.Framework.Debugf("Installing Prometheus on cluster: %s", cls.Name())
    		// Find the Prometheus pod and service, and start forwarding a local port.
    		fetchFn := testKube.NewSinglePodFetch(cls, cfg.TelemetryNamespace, fmt.Sprintf("app.kubernetes.io/name=%s", appName))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. pkg/test/framework/components/opentelemetry/kube.go

    	o := &otel{
    		cluster: ctx.Clusters().GetOrDefault(c.Cluster),
    	}
    	ctx.TrackResource(o)
    
    	istioCfg, err := istio.DefaultConfig(ctx)
    	if err != nil {
    		return nil, err
    	}
    
    	ns := istioCfg.TelemetryNamespace
    	if err := install(ctx, ns); err != nil {
    		return nil, err
    	}
    
    	f := testKube.NewSinglePodFetch(o.cluster, ns, fmt.Sprintf("app=%s", appName))
    	_, err = testKube.WaitUntilPodsAreReady(f)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. pkg/test/framework/components/zipkin/kube.go

    	// Find the zipkin pod and service, and start forwarding a local port.
    	cfg, err := istio.DefaultConfig(ctx)
    	if err != nil {
    		return nil, err
    	}
    
    	if err := installZipkin(ctx, cfg.TelemetryNamespace); err != nil {
    		return nil, err
    	}
    
    	fetchFn := testKube.NewSinglePodFetch(c.cluster, cfg.SystemNamespace, fmt.Sprintf("app=%s", appName))
    	pods, err := testKube.WaitUntilPodsAreReady(fetchFn)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top