Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for pc (0.18 sec)

  1. architecture/networking/pilot.md

    #### Conclusion
    
    Overall, the high level config ingestion flow:
    
    ```mermaid
    graph TD
        sd(Service Discovery)
        cs(ConfigStore)
        ep(Endpoints)
        pc(PushContext)
        sd-->pc
        cs-->pc
        sd-->ep
    ```
    
    ### Config Translation
    
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 19.1K bytes
    - Viewed (0)
  2. istioctl/pkg/proxyconfig/proxyconfig.go

      istioctl proxy-config all <pod-name[.namespace]>
    
      # Retrieve full cluster dump as JSON
      istioctl proxy-config all <pod-name[.namespace]> -o json
    
      # Retrieve full cluster dump with short syntax
      istioctl pc a <pod-name[.namespace]>
    
      # Retrieve cluster summary without using Kubernetes API
      ssh <user@hostname> 'curl localhost:15000/config_dump' > envoy-config.json
      istioctl proxy-config all --file envoy-config.json
    `,
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Apr 16 03:28:36 GMT 2024
    - 48K bytes
    - Viewed (0)
  3. operator/cmd/mesh/profile.go

    	pdc := profileDumpCmd(pdArgs)
    	pdfc := profileDiffCmd(pdfArgs)
    
    	addFlags(pc, args)
    	addFlags(plc, args)
    	addFlags(pdc, args)
    	addFlags(pdfc, args)
    
    	addProfileDumpFlags(pdc, pdArgs)
    	addProfileListFlags(plc, plArgs)
    	addProfileDiffFlags(pdfc, pdfArgs)
    
    	pc.AddCommand(plc)
    	pc.AddCommand(pdc)
    	pc.AddCommand(pdfc)
    
    	return pc
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  4. istioctl/pkg/version/version.go

    }
    
    func getRemoteInfoWrapper(ctx cli.Context, pc **cobra.Command, opts *clioptions.ControlPlaneOptions) func() (*istioVersion.MeshInfo, error) {
    	return func() (*istioVersion.MeshInfo, error) {
    		remInfo, err := getRemoteInfo(ctx, *opts)
    		if err != nil {
    			fmt.Fprintf((*pc).OutOrStderr(), "%v\n", err)
    			// Return nil so that the client version is printed
    			return nil, nil
    		}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 8.3K bytes
    - Viewed (0)
Back to top