Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,837 for ControlZ (0.27 sec)

  1. pkg/ctrlz/ctrlz.go

    }
    
    func (s *Server) listen() {
    	log.Infof("ControlZ available at %s", s.httpServer.Addr)
    	if listeningTestProbe != nil {
    		go listeningTestProbe()
    	}
    	err := s.httpServer.Serve(s.listener)
    	log.Infof("ControlZ terminated: %v", err)
    	s.shutdown.Done()
    }
    
    // Close terminates ControlZ.
    //
    // Close is not normally used by programs that expose ControlZ, it is primarily intended to be
    // used by tests.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pkg/ctrlz/options.go

    // the necessary set of flags to expose a CLI to let the user control all
    // introspection options.
    func (o *Options) AttachCobraFlags(cmd *cobra.Command) {
    	cmd.PersistentFlags().Uint16Var(&o.Port, "ctrlz_port", o.Port,
    		"The IP port to use for the ControlZ introspection facility")
    	cmd.PersistentFlags().StringVar(&o.Address, "ctrlz_address", o.Address,
    		"The IP Address to listen on for the ControlZ introspection facility. Use '*' to indicate all addresses.")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 21:42:29 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. istioctl/pkg/dashboard/dashboard_test.go

    			WantException:  true,
    		},
    		{ // case 2
    			Args:           strings.Split("controlz --browser=false", " "),
    			ExpectedRegexp: regexp.MustCompile(".*Error: specify a pod or --selector"),
    			WantException:  true,
    		},
    		{ // case 3
    			Args:           strings.Split("controlz --browser=false pod-123456-7890", " "),
    			ExpectedRegexp: regexp.MustCompile(".*http://localhost:3456"),
    			WantException:  false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 21 01:17:24 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. istioctl/pkg/dashboard/dashboard.go

      # Open ControlZ web UI for the istiod-56dd66799-jfdvs pod in a custom namespace
      istioctl dashboard controlz istiod-123-456 -n custom-ns
    
      # Open ControlZ web UI for any Istiod pod
      istioctl dashboard controlz deployment/istiod.istio-system
    
      # with short syntax
      istioctl dash controlz pilot-123-456.istio-system
      istioctl d controlz pilot-123-456.istio-system
    `,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. pkg/ctrlz/topics/signals.go

    package topics
    
    import (
    	"net/http"
    	"os"
    	"syscall"
    
    	"istio.io/istio/pkg/ctrlz/fw"
    	"istio.io/istio/pkg/ctrlz/topics/assets"
    )
    
    type signalsTopic struct{}
    
    // SignalsTopic returns a ControlZ topic that sends command signals to the process
    func SignalsTopic() fw.Topic {
    	return signalsTopic{}
    }
    
    func (signalsTopic) Title() string {
    	return "Signals"
    }
    
    func (signalsTopic) Prefix() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:12:24 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. istioctl/pkg/admin/istiodconfig.go

    			if err != nil {
    				return fmt.Errorf("could not build port forwarder for ControlZ %s: %v", podName, err)
    			}
    			defer portForwarder.Close()
    			err = portForwarder.Start()
    			if err != nil {
    				return fmt.Errorf("could not start port forwarder for ControlZ %s: %v", podName, err)
    			}
    
    			ctrlzClient := &ControlzClient{
    				baseURL: &url.URL{
    					Scheme: "http",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  7. operator/cmd/operator/server.go

    				log.Errorf("Unable to configure logging: %v", err)
    			}
    
    			if cs, err := ctrlz.Run(introspectionOptions, nil); err == nil {
    				defer cs.Close()
    			} else {
    				log.Errorf("Unable to initialize ControlZ: %v", err)
    			}
    
    			run(sArgs)
    			return nil
    		},
    	}
    
    	loggingOptions.AttachCobraFlags(serverCmd)
    	introspectionOptions.AttachCobraFlags(serverCmd)
    	addServerFlags(serverCmd, sArgs)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 21:09:08 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. cni/pkg/cmd/root.go

    			log.Errorf("Failed to configure log %v", err)
    		}
    		return nil
    	},
    	RunE: func(c *cobra.Command, args []string) (err error) {
    		ctx := c.Context()
    
    		// Start controlz server
    		_, _ = ctrlz.Run(ctrlzOptions, nil)
    
    		var cfg *config.Config
    		if cfg, err = constructConfig(); err != nil {
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pkg/collateral/control.go

    	"istio.io/istio/pkg/env"
    )
    
    // Control determines the behavior of the EmitCollateral function
    type Control struct {
    	// OutputDir specifies the directory to output the collateral files
    	OutputDir string
    
    	// EmitManPages controls whether to produce man pages.
    	EmitManPages bool
    
    	// EmitYAML controls whether to produce YAML files.
    	EmitYAML bool
    
    	// EmitBashCompletion controls whether to produce bash completion files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  10. samples/ambient-argo/istio/control-plane-appset.yaml

    apiVersion: argoproj.io/v1alpha1
    kind: ApplicationSet
    metadata:
      name: istio-multi-control
    spec:
      generators:
      - list:
          elements:
          - version: 1.18.5
            revision: 1-18-5
          - version: 1.19.3
            revision: 1-19-3
      template:
        metadata:
          name: 'istio-control-{{revision}}'
        spec:
          project: default
          sources:
          - repoURL: 'https://istio-release.storage.googleapis.com/charts'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1006 bytes
    - Viewed (0)
Back to top