Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Gump (0.33 sec)

  1. istioctl/pkg/writer/envoy/configdump/cluster.go

    	}
    	if c.Port != 0 {
    		p := fmt.Sprintf("|%v|", c.Port)
    		if !strings.Contains(name, p) {
    			return false
    		}
    	}
    	return true
    }
    
    // PrintClusterSummary prints a summary of the relevant clusters in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintClusterSummary(filter ClusterFilter) error {
    	w, clusters, err := c.setupClusterConfigWriter()
    	if err != nil {
    		return err
    	}
    	if includeConfigType {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu May 11 05:38:17 GMT 2023
    - 5.9K bytes
    - Viewed (0)
  2. istioctl/pkg/util/configdump/cluster.go

    	admin "github.com/envoyproxy/go-control-plane/envoy/admin/v3"
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    )
    
    // GetDynamicClusterDump retrieves a cluster dump with just dynamic active clusters in it
    func (w *Wrapper) GetDynamicClusterDump(stripVersions bool) (*admin.ClustersConfigDump, error) {
    	clusterDump, err := w.GetClusterConfigDump()
    	if err != nil {
    		return nil, err
    	}
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Nov 03 08:41:32 GMT 2022
    - 2.1K bytes
    - Viewed (0)
Back to top