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

fix manifests, fix publish docs action #693

Merged
merged 1 commit into from
Jul 3, 2023
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
source_folder: "reference.md"
destination_repo: "pomerium/documentation"
destination_folder: "content/docs/deploying/k8s"
destination_folder: "content/docs/deploy/k8s"
destination_base_branch: "main"
destination_head_branch: update-k8s-reference-${{ github.sha }}
user_email: "dmishin@pomerium.com"
Expand Down
28 changes: 28 additions & 0 deletions config/crd/bases/ingress.pomerium.io_pomerium.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ spec:
sameSite:
description: SameSite sets the SameSite option for cookies. Defaults
to <code></code>.
enum:
- strict
- lax
- none
type: string
secure:
description: Secure if set to false, would make a cookie accessible
Expand Down Expand Up @@ -300,6 +304,30 @@ spec:
- secret
type: object
type: object
timeouts:
description: Timeout specifies the <a href="https://www.pomerium.com/docs/reference/global-timeouts">global
timeouts</a> for all routes.
properties:
idle:
description: Idle specifies the time at which a downstream or
upstream connection will be terminated if there are no active
streams.
format: duration
type: string
read:
description: Read specifies the amount of time for the entire
request stream to be received from the client.
format: duration
type: string
write:
description: Write specifies max stream duration is the maximum
time that a stream’s lifetime will span. An HTTP request/response
exchange fully consumes a single stream. Therefore, this value
must be greater than read_timeout as it covers both request
and response time.
format: duration
type: string
type: object
required:
- secrets
type: object
Expand Down
28 changes: 28 additions & 0 deletions deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ spec:
sameSite:
description: SameSite sets the SameSite option for cookies. Defaults
to <code></code>.
enum:
- strict
- lax
- none
type: string
secure:
description: Secure if set to false, would make a cookie accessible
Expand Down Expand Up @@ -308,6 +312,30 @@ spec:
- secret
type: object
type: object
timeouts:
description: Timeout specifies the <a href="https://www.pomerium.com/docs/reference/global-timeouts">global
timeouts</a> for all routes.
properties:
idle:
description: Idle specifies the time at which a downstream or
upstream connection will be terminated if there are no active
streams.
format: duration
type: string
read:
description: Read specifies the amount of time for the entire
request stream to be received from the client.
format: duration
type: string
write:
description: Write specifies max stream duration is the maximum
time that a stream’s lifetime will span. An HTTP request/response
exchange fully consumes a single stream. Therefore, this value
must be greater than read_timeout as it covers both request
and response time.
format: duration
type: string
type: object
required:
- secrets
type: object
Expand Down