Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PrintRouteDump (0.18 sec)

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

    		if len(pieces) != 8 {
    			return ""
    		}
    		return fmt.Sprintf("%s.%s", pieces[7], pieces[5])
    	}
    	return "<unknown>"
    }
    
    // PrintRouteDump prints the relevant routes in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintRouteDump(filter RouteFilter, outputFormat string) error {
    	_, routes, err := c.setupRouteConfigWriter()
    	if err != nil {
    		return err
    	}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu May 11 05:38:17 GMT 2023
    - 7.2K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/proxyconfig.go

    				Verbose: verboseProxyConfig,
    			}
    			switch outputFormat {
    			case summaryOutput:
    				return configWriter.PrintRouteSummary(filter)
    			case jsonOutput, yamlOutput:
    				return configWriter.PrintRouteDump(filter, outputFormat)
    			default:
    				return fmt.Errorf("output format %q not supported", outputFormat)
    			}
    		},
    		ValidArgsFunction: completion.ValidPodsNameArgs(ctx),
    	}
    
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 48K bytes
    - Viewed (0)
Back to top