Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DumpDebug (0.09 sec)

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

    		return nil
    	})
    	for _, c := range ctx.Clusters().Primaries() {
    		c := c
    		g.Go(func() error {
    			kube2.DumpDebug(ctx, c, d, "configz", ns)
    			return nil
    		})
    		g.Go(func() error {
    			kube2.DumpDebug(ctx, c, d, "mcsz", ns)
    			return nil
    		})
    		g.Go(func() error {
    			kube2.DumpDebug(ctx, c, d, "clusterz", ns)
    			return nil
    		})
    	}
    	// Dump istio-cni.
    	g.Go(func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. pkg/test/kube/dump.go

    	}
    	return true
    }
    
    func checkIfVM(pod corev1.Pod) bool {
    	for k := range pod.ObjectMeta.Labels {
    		if strings.Contains(k, "test-vm") {
    			return true
    		}
    	}
    	return false
    }
    
    func DumpDebug(ctx resource.Context, c cluster.Cluster, workDir, endpoint, namespace string) {
    	ik, err := istioctl.New(ctx, istioctl.Config{Cluster: c})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top