Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for XdsVersionCommand (0.2 sec)

  1. istioctl/pkg/version/version.go

    		client, err := ctx.CLIClientWithRevision(opts.Revision)
    		if err != nil {
    			return nil, err
    		}
    		return proxy.GetProxyInfo(client, ctx.IstioNamespace())
    	}
    }
    
    // XdsVersionCommand gets the Control Plane and Sidecar versions via XDS
    func XdsVersionCommand(ctx cli.Context) *cobra.Command {
    	var opts clioptions.ControlPlaneOptions
    	var centralOpts clioptions.CentralControlPlaneOptions
    	var xdsResponses *discovery.DiscoveryResponse
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  2. istioctl/cmd/root.go

    	}
    
    	xdsBasedTroubleshooting := []*cobra.Command{
    		// TODO(hanxiaop): I think experimental version still has issues, so we keep the old version for now.
    		version.XdsVersionCommand(ctx),
    		// TODO(hanxiaop): this is kept for some releases in case someone is using it.
    		proxystatus.XdsStatusCommand(ctx),
    	}
    	troubleshootingCommands := []*cobra.Command{
    		version.NewVersionCommand(ctx),
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Apr 11 20:51:30 GMT 2024
    - 10K bytes
    - Viewed (0)
Back to top