Skip to content

Commit

Permalink
Handle OIDC session cookie change
Browse files Browse the repository at this point in the history
  • Loading branch information
vishal423 committed Aug 31, 2023
1 parent 9bb2163 commit 5618c4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ FROM registry.access.redhat.com/ubi8/openjdk-17:1.16
ENV LANGUAGE='en_US:en'

# We make four distinct layers so if there are application changes the library layers can be re-used
COPY --chown=185 target/quarkus-app/lib/ /deployments/lib/
COPY --chown=185 target/quarkus-app/*.jar /deployments/
COPY --chown=185 target/quarkus-app/app/ /deployments/app/
COPY --chown=185 target/quarkus-app/quarkus/ /deployments/quarkus/
COPY --chown=185 --chmod=555 target/quarkus-app/lib/ /deployments/lib/
COPY --chown=185 --chmod=555 target/quarkus-app/*.jar /deployments/
COPY --chown=185 --chmod=555 target/quarkus-app/app/ /deployments/app/
COPY --chown=185 --chmod=555 target/quarkus-app/quarkus/ /deployments/quarkus/

EXPOSE 8080
USER 185
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ quarkus.oidc.roles.source=userinfo
quarkus.oidc.authentication.user-info-required=true
quarkus.oidc.token.refresh-expired=true
quarkus.oidc.token.refresh-token-time-skew=10S
quarkus.oidc.token-state-manager.split-tokens=true
%test.quarkus.oidc.auth-server-url=http://localhost:9080/realms/jhipster
%test.quarkus.oidc.client-id=dummy
Expand Down

0 comments on commit 5618c4f

Please sign in to comment.