Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PrintListenerDump (0.27 sec)

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

    		conds = append(conds, fmt.Sprintf("regex %s", match.GetSafeRegex().Regex))
    	}
    	// Ignore headers
    	return strings.Join(conds, " ")
    }
    
    // PrintListenerDump prints the relevant listeners in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintListenerDump(filter ListenerFilter, outputFormat string) error {
    	_, listeners, err := c.setupListenerConfigWriter()
    	if err != nil {
    		return err
    	}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 18.1K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/proxyconfig.go

    			}
    			switch outputFormat {
    			case summaryOutput:
    				return configWriter.PrintListenerSummary(filter)
    			case jsonOutput, yamlOutput:
    				return configWriter.PrintListenerDump(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