Skip to content
Merged
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
109 changes: 109 additions & 0 deletions content/docs/deploy/k8s/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,23 @@ PomeriumSpec defines Pomerium-specific configuration parameters.
</td>
</tr>

<tr>
<td>
<p>
<code>circuitBreakerThresholds</code>&#160;&#160;

<strong>object</strong>&#160;
(<a href="#circuitbreakerthresholds">circuitBreakerThresholds</a>)

</p>
<p>

CircuitBreakerThresholds sets the circuit breaker thresholds settings.
</p>

</td>
</tr>

<tr>
<td>
<p>
Expand Down Expand Up @@ -422,6 +439,98 @@ Authenticate sets authenticate service parameters. If not specified, a Pomerium-
</tbody>
</table>

### `circuitBreakerThresholds`

CircuitBreakerThresholds sets the circuit breaker thresholds settings.

<table>
<thead>
</thead>
<tbody>

<tr>
<td>
<p>
<code>maxConnectionPools</code>&#160;&#160;

<strong>integer</strong>&#160;

</p>
<p>

MaxConnectionPools sets the maximum number of connection pools per cluster that Envoy will concurrently support at once. If not specified, the default is unlimited. Set this for clusters which create a large number of connection pools.
</p>

</td>
</tr>

<tr>
<td>
<p>
<code>maxConnections</code>&#160;&#160;

<strong>integer</strong>&#160;

</p>
<p>

MaxConnections sets the maximum number of connections that Envoy will make to the upstream cluster. If not specified, the default is 1024.
</p>

</td>
</tr>

<tr>
<td>
<p>
<code>maxPendingRequests</code>&#160;&#160;

<strong>integer</strong>&#160;

</p>
<p>

MaxPendingRequests sets the maximum number of pending requests that Envoy will allow to the upstream cluster. If not specified, the default is 1024. This limit is applied as a connection limit for non-HTTP traffic.
</p>

</td>
</tr>

<tr>
<td>
<p>
<code>maxRequests</code>&#160;&#160;

<strong>integer</strong>&#160;

</p>
<p>

MaxRequests sets the maximum number of parallel requests that Envoy will make to the upstream cluster. If not specified, the default is 1024. This limit does not apply to non-HTTP traffic.
</p>

</td>
</tr>

<tr>
<td>
<p>
<code>maxRetries</code>&#160;&#160;

<strong>integer</strong>&#160;

</p>
<p>

MaxRetries sets the maximum number of parallel retries that Envoy will allow to the upstream cluster. If not specified, the default is 3.
</p>

</td>
</tr>

</tbody>
</table>

### `cookie`

Cookie defines Pomerium session cookie options.
Expand Down
Loading