Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for grpcAddr (0.21 sec)

  1. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.HTTPSAddr, "httpsAddr", ":15017",
    		"Injection and validation service HTTPS address")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.GRPCAddr, "grpcAddr", ":15010",
    		"Discovery service gRPC address")
    	c.PersistentFlags().StringVar(&serverArgs.ServerOptions.SecureGRPCAddr, "secureGRPCAddr", ":15012",
    		"Discovery service secured gRPC address")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server_test.go

    				p.Namespace = "istio-system"
    				p.ServerOptions = DiscoveryServerOptions{
    					// Dynamically assign all ports.
    					HTTPAddr:       ":0",
    					MonitoringAddr: ":0",
    					GRPCAddr:       ":0",
    					SecureGRPCAddr: ":0",
    					TLSOptions:     *c.tlsOptions,
    				}
    				p.RegistryOptions = RegistryOptions{
    					FileDir: configDir,
    				}
    
    				p.ShutdownDuration = 1 * time.Millisecond
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. samples/extauthz/cmd/extauthz/main.go

    	if err := s.httpServer.Serve(listener); err != nil {
    		log.Fatalf("Failed to start HTTP server: %v", err)
    	}
    }
    
    func (s *ExtAuthzServer) run(httpAddr, grpcAddr string) {
    	var wg sync.WaitGroup
    	wg.Add(2)
    	go s.startHTTP(httpAddr, &wg)
    	go s.startGRPC(grpcAddr, &wg)
    	wg.Wait()
    }
    
    func (s *ExtAuthzServer) stop() {
    	s.grpcServer.Stop()
    	log.Printf("GRPC server stopped")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:48 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/options.go

    	// terminate TLS instead.
    	HTTPSAddr string
    
    	// The listening address for gRPC. If the port in the address is empty or "0" (as in "127.0.0.1:" or "[::1]:0")
    	// a port number is automatically chosen.
    	GRPCAddr string
    
    	// The listening address for the monitoring port. If the port in the address is empty or "0" (as in "127.0.0.1:" or "[::1]:0")
    	// a port number is automatically chosen.
    	MonitoringAddr string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    // initServers initializes http and grpc servers
    func (s *Server) initServers(args *PilotArgs) {
    	s.initGrpcServer(args.KeepaliveOptions)
    	multiplexGRPC := false
    	if args.ServerOptions.GRPCAddr != "" {
    		s.grpcAddress = args.ServerOptions.GRPCAddr
    	} else {
    		// This happens only if the GRPC port (15010) is disabled. We will multiplex
    		// it on the HTTP port. Does not impact the HTTPS gRPC or HTTPS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top