Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for telemetryNamespace (0.22 sec)

  1. 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)
  2. pkg/test/framework/components/istio/config.go

    // 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)
    	result += fmt.Sprintf("DeployEastWestGW:               %v\n", c.DeployEastWestGW)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/dashboard_test.go

    							continue
    						}
    						t.Logf("Verifying %s for cluster %s", d.name, cl.Name())
    						cm, err := cl.Kube().CoreV1().ConfigMaps(ist.Settings().TelemetryNamespace).Get(
    							context.TODO(), d.configmap, metav1.GetOptions{})
    						if err != nil {
    							t.Fatalf("Failed to find dashboard %v: %v", d.configmap, err)
    						}
    
    						config, f := cm.Data[d.name]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top