Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for clobber (0.1 sec)

  1. pkg/test/framework/components/prometheus/kube.go

    	testKube "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    const (
    	serviceName = "prometheus"
    	appName     = "prometheus"
    )
    
    var (
    	_ Instance  = &kubeComponent{}
    	_ io.Closer = &kubeComponent{}
    )
    
    type kubeComponent struct {
    	id resource.ID
    
    	api       map[string]prometheusApiV1.API
    	forwarder map[string]istioKube.PortForwarder
    	clusters  cluster.Clusters
    }
    
    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/ambient/waypoint.go

    	"istio.io/istio/pkg/test/framework/resource"
    	testKube "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var _ io.Closer = &kubeComponent{}
    
    type kubeComponent struct {
    	id resource.ID
    
    	ns       namespace.Instance
    	inbound  istioKube.PortForwarder
    	outbound istioKube.PortForwarder
    	pod      v1.Pod
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. pkg/test/framework/components/namespace/kube.go

    		return
    	}
    
    	kube2.DumpPods(n.ctx, d, n.name, []string{})
    	kube2.DumpDeployments(n.ctx, d, n.name)
    }
    
    var (
    	_ Instance          = &kubeNamespace{}
    	_ io.Closer         = &kubeNamespace{}
    	_ resource.Resource = &kubeNamespace{}
    	_ resource.Dumper   = &kubeNamespace{}
    )
    
    func (n *kubeNamespace) Name() string {
    	return n.name
    }
    
    func (n *kubeNamespace) Prefix() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top