Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 8082 (0.17 sec)

  1. pilot/pkg/networking/core/sidecar_simulation_test.go

    			clusters: map[string][]string{
    				"inbound|8080||": nil,
    				"inbound|8081||": nil,
    				"inbound|8082||": nil,
    				"inbound|8083||": nil,
    			},
    			telemetry: map[string][]string{
    				"inbound|8080||": {string(service.Hostname)},
    				"inbound|8081||": {string(service.Hostname)},
    				"inbound|8082||": {string(serviceAlt.Hostname)},
    				"inbound|8083||": {string(serviceAlt.Hostname)},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		buildServiceWithPort("test3.com", 8080, protocol.HTTP, tnow.Add(2*time.Second)),
    	}
    	servicesConflictWithVirtualListener := []*model.Service{
    		buildServiceWithPort("test4.com", 15001, protocol.HTTP, tnow.Add(1*time.Second)),
    		buildServiceWithPort("test5.com", 15006, protocol.TCP, tnow),
    		buildServiceWithPort("test6.com", 8081, protocol.HTTP, tnow.Add(2*time.Second)),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. cmd/sftp-server.go

    		case "trusted-user-ca-key":
    			userCaKeyFile = tokens[1]
    		case "password-auth":
    			disablePassAuth, _ = strconv.ParseBool(tokens[1])
    		}
    	}
    
    	if port == 0 {
    		port = 8022 // Default SFTP port, since no port was given.
    	}
    
    	if sshPrivateKey == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one_test.go

    	// We use conflicted pod ports to incur fit predicate failure.
    	secondPod := podWithPort("bar", "", 8080)
    	queuedPodStore.Add(secondPod)
    	// queuedPodStore: [bar:8080]
    	// cache: [(assumed)foo:8080]
    
    	scheduler.ScheduleOne(ctx)
    	select {
    	case err := <-errChan:
    		expectErr := &framework.FitError{
    			Pod:         secondPod,
    			NumAllNodes: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/gateway.go

    // service, we should not translate Gateway ports to target ports. For example, if I have a Service
    // on port 80 with target port 8080, with the label. Gateways on port 80 would *not* match. Instead,
    // only Gateways on port 8080 would be used. This prevents ambiguities when there are multiple
    // Services on port 80 referring to different target ports. Long term, this will be replaced by
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. cmd/server-main.go

         {{.Prompt}} {{.HelpName}} http://node{1...4}.example.com/mnt/export{1...4} \
               --ftp="address=:8021" --ftp="passive-port-range=30000-40000" \
               --sftp="address=:8022" --sftp="ssh-private-key=${HOME}/.ssh/id_rsa"
    `,
    }
    
    func serverCmdArgs(ctx *cli.Context) []string {
    	v, _, _, err := env.LookupEnv(config.EnvArgs)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (3)
  7. pilot/pkg/bootstrap/server.go

    	monitoringMux *http.ServeMux
    	// internalDebugMux is a mux for *internal* calls to the debug interface. That is, authentication is disabled.
    	internalDebugMux *http.ServeMux
    
    	// httpMux listens on the httpAddr (8080).
    	// If a Gateway is used in front and https is off it is also multiplexing
    	// the rest of the features if their port is empty.
    	// Currently runs readiness and debug (if enabled)
    	httpMux *http.ServeMux
    
    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