Skip to content
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 proxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG GOMPLATE_VERSION=v4.3.3
ARG GOMPLATE_VERSION=v5.0.0


# Use a named build stage for gomplate
Expand Down
2 changes: 1 addition & 1 deletion sync/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update && \
# Install yq from the official Docker image
COPY --from=mikefarah/yq /usr/bin/yq /usr/bin/

ARG HELM_VERSION=v3.19.0
ARG HELM_VERSION=v3.20.1
RUN set -ex; \
OS_ARCH="$(uname -m)"; \
case "$OS_ARCH" in \
Expand Down
2 changes: 1 addition & 1 deletion sync/zenith/sync/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class OIDCConfig(Section):
oauth2_proxy_cookie_secret_template: NonEmptyString = "oidc-cookie-{service_name}"
#: The query parameters that are passed to the IDP in the authorize request
#: For example, Keycloak allows a kc_idp_hint parameter that can be used to
#: pre-select an identity provider
#: preselect an identity provider
#: See https://oauth2-proxy.github.io/oauth2-proxy/docs/configuration/alpha-config#loginurlparameter
forwarded_query_params: list[ForwardedQueryParam] = Field(default_factory=list)
#: The headers to inject into the request from claims in the ID token
Expand Down
Loading