test: Use RSA 4096 algorithm for JWT load test (#4118)

Until now we had a load test with 50k unique JWTs signed with symmetric key.
This commit adds a new load test with 10k JWTs signed with RSA 4096.

Existing -k jwt parameter was changed to -k jwt-hs-50k.
New test is run with -k jwt-rsa-10k parameter.

Additionally a new parameter --jwtcache=off was added to turn off JWT caching in the above load tests.
This commit is contained in:
Michal Kleczek
2025-06-05 07:44:05 -05:00
committed by GitHub
parent b2f8786821
commit 69072116be
4 changed files with 103 additions and 6 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ jobs:
loadtest:
strategy:
matrix:
kind: ['mixed', 'jwt']
kind: ['mixed', 'jwt-hs-50k', 'jwt-rsa-1k']
name: Loadtest
runs-on: ubuntu-24.04
steps: