From 83d7505481ee2c56ae48b7db505014e4e0aa4178 Mon Sep 17 00:00:00 2001 From: Kostas Koumpouras Date: Thu, 4 Apr 2024 16:37:04 +0200 Subject: [PATCH 1/2] Add kid in the jwt header --- token/token.go | 1 + 1 file changed, 1 insertion(+) diff --git a/token/token.go b/token/token.go index 9bef7f0..fcbe38a 100644 --- a/token/token.go +++ b/token/token.go @@ -49,6 +49,7 @@ func createECToken(key *ecdsa.PrivateKey, username string) (string, error) { token := jwt.New(jwt.SigningMethodES256) // token headers token.Header["alg"] = "ES256" + token.Header["kid"] = "sda" // token claims claims := make(jwt.MapClaims) claims["iss"] = helpers.Config.Iss From 057054a66a5c623b5b5075987d9e52fd34267c0d Mon Sep 17 00:00:00 2001 From: Kostas Koumpouras Date: Thu, 4 Apr 2024 16:38:42 +0200 Subject: [PATCH 2/2] update harbor image --- charts/uppmax-integration/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/uppmax-integration/values.yaml b/charts/uppmax-integration/values.yaml index f08786b..3c54f4d 100644 --- a/charts/uppmax-integration/values.yaml +++ b/charts/uppmax-integration/values.yaml @@ -33,7 +33,7 @@ image: repository: harbor.nbis.se/uppmax/integration pullPolicy: Always # Overrides the image tag whose default is the chart appVersion. - tag: "0.1.2" + tag: "2024-04-03" imagePullSecrets: [] nameOverride: ""