Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ReadinessTCPPort (0.29 sec)

  1. pkg/test/framework/components/echo/kube/templates/deployment.yaml

                  fieldPath: metadata.namespace
    {{- if $.ProxylessGRPC }}
            - name: EXPOSE_GRPC_ADMIN
              value: "true"
    {{- end }}
            readinessProbe:
    {{- if $.ReadinessTCPPort }}
              tcpSocket:
                port: {{ $.ReadinessTCPPort }}
    {{- else if $.ReadinessGRPCPort }}
              grpc:
                port: {{ $.ReadinessGRPCPort }}
    {{- else if $appContainer.ImageFullPath }}
              tcpSocket:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. tests/integration/pilot/tcp_probe_test.go

    	name string, rewrite bool, wantSuccess bool, openPort bool,
    ) {
    	ctx.Helper()
    
    	var tcpProbe echo.Instance
    	cfg := echo.Config{
    		Namespace:        ns,
    		Service:          name,
    		ReadinessTCPPort: "1234",
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    
    	if openPort {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/config.go

    	// ReadinessTimeout specifies the timeout that we wait the application to
    	// become ready.
    	ReadinessTimeout time.Duration
    
    	// ReadinessTCPPort if set, use this port for the TCP readiness probe (instead of using a HTTP probe).
    	ReadinessTCPPort string
    
    	// ReadinessGRPCPort if set, use this port for the GRPC readiness probe (instead of using a HTTP probe).
    	ReadinessGRPCPort string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/kube/deployment.go

    		"ContainerPorts":          containerPorts,
    		"Subsets":                 cfg.Subsets,
    		"TLSSettings":             cfg.TLSSettings,
    		"Cluster":                 cfg.Cluster.Name(),
    		"ReadinessTCPPort":        cfg.ReadinessTCPPort,
    		"ReadinessGRPCPort":       cfg.ReadinessGRPCPort,
    		"StartupProbe":            supportStartupProbe,
    		"IncludeExtAuthz":         cfg.IncludeExtAuthz,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top