Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PrintClusterDump (0.19 sec)

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

    						describeManagement(c.GetMetadata()))
    				}
    			}
    		}
    	}
    	return w.Flush()
    }
    
    // PrintClusterDump prints the relevant clusters in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintClusterDump(filter ClusterFilter, outputFormat string) error {
    	_, clusters, err := c.setupClusterConfigWriter()
    	if err != nil {
    		return err
    	}
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/proxyconfig.go

    				Direction: model.TrafficDirection(direction),
    			}
    			switch outputFormat {
    			case summaryOutput:
    				return configWriter.PrintClusterSummary(filter)
    			case jsonOutput, yamlOutput:
    				return configWriter.PrintClusterDump(filter, outputFormat)
    			default:
    				return fmt.Errorf("output format %q not supported", outputFormat)
    			}
    		},
    		ValidArgsFunction: completion.ValidPodsNameArgs(ctx),
    	}
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 15:53:49 UTC 2024
    - 50.6K bytes
    - Viewed (0)
Back to top