Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for trafficPolicy.connectionPool.tcp #1642

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions artifacts/flagger/crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,45 @@ spec:
maxRetries:
format: int32
type: integer
tcp:
description: TCP connection pool settings.
type: object
properties:
maxConnections:
description: The maximum number of HTTP1 /TCP connections
to a destination.
format: int32
type: integer
connectTimeout:
description: The timeout for new TCP connections
to hosts in the cluster.
type: string
tcpKeepalive:
description: TCP keepalive
type: object
properties:
time:
description: The time duration a connection needs
to be idle before TCP starts sending keepalive
probes.
type: string
interval:
description: The time duration between TCP keepalive
probes.
type: string
probes:
description: The number of unacknowledged probes
to send before considering the connection dead.
format: int32
type: integer
maxConnectionDuration:
description: The maximum duration a connection may
exist before it is closed.
type: string
idleTimeout:
description: The idle timeout for upstream connection
pool connections.
type: string
loadBalancer:
description: Settings controlling the load balancer algorithms.
type: object
Expand Down
39 changes: 39 additions & 0 deletions charts/flagger/crds/crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,45 @@ spec:
maxRetries:
format: int32
type: integer
tcp:
description: TCP connection pool settings.
type: object
properties:
maxConnections:
description: The maximum number of HTTP1 /TCP connections
to a destination.
format: int32
type: integer
connectTimeout:
description: The timeout for new TCP connections
to hosts in the cluster.
type: string
tcpKeepalive:
description: TCP keepalive
type: object
properties:
time:
description: The time duration a connection needs
to be idle before TCP starts sending keepalive
probes.
type: string
interval:
description: The time duration between TCP keepalive
probes.
type: string
probes:
description: The number of unacknowledged probes
to send before considering the connection dead.
format: int32
type: integer
maxConnectionDuration:
description: The maximum duration a connection may
exist before it is closed.
type: string
idleTimeout:
description: The idle timeout for upstream connection
pool connections.
type: string
loadBalancer:
description: Settings controlling the load balancer algorithms.
type: object
Expand Down
39 changes: 39 additions & 0 deletions kustomize/base/flagger/crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,45 @@ spec:
maxRetries:
format: int32
type: integer
tcp:
description: TCP connection pool settings.
type: object
properties:
maxConnections:
description: The maximum number of HTTP1 /TCP connections
to a destination.
format: int32
type: integer
connectTimeout:
description: The timeout for new TCP connections
to hosts in the cluster.
type: string
tcpKeepalive:
description: TCP keepalive
type: object
properties:
time:
description: The time duration a connection needs
to be idle before TCP starts sending keepalive
probes.
type: string
interval:
description: The time duration between TCP keepalive
probes.
type: string
probes:
description: The number of unacknowledged probes
to send before considering the connection dead.
format: int32
type: integer
maxConnectionDuration:
description: The maximum duration a connection may
exist before it is closed.
type: string
idleTimeout:
description: The idle timeout for upstream connection
pool connections.
type: string
loadBalancer:
description: Settings controlling the load balancer algorithms.
type: object
Expand Down