Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Points (0.15 sec)

  1. istioctl/pkg/writer/compare/cluster.go

    // limitations under the License.
    
    package compare
    
    import (
    	"bytes"
    	"fmt"
    
    	"github.com/pmezard/go-difflib/difflib"
    
    	"istio.io/istio/pkg/util/protomarshal"
    )
    
    // ClusterDiff prints a diff between Istiod and Envoy clusters to the passed writer
    func (c *Comparator) ClusterDiff() error {
    	envoyBytes, istiodBytes := &bytes.Buffer{}, &bytes.Buffer{}
    	envoyClusterDump, err := c.envoy.GetDynamicClusterDump(true)
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/cluster.go

    		return false
    	}
    	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 {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu May 11 05:38:17 GMT 2023
    - 5.9K bytes
    - Viewed (0)
Back to top