Added email to Keycloak users and upgraded ArgoCD again as it requires more work

This commit is contained in:
Richard Robert Reitz 2025-03-02 14:19:07 +01:00
parent 688795ffad
commit b58e373da9
2 changed files with 5 additions and 5 deletions

View file

@ -21,7 +21,7 @@ spec:
# TODO: RIRE Can be updated when https://github.com/argoproj/argo-cd/issues/20790 is fixed and merged # TODO: RIRE Can be updated when https://github.com/argoproj/argo-cd/issues/20790 is fixed and merged
# As logout make problems, it is suggested to switch from path based routing to an own argocd domain, # As logout make problems, it is suggested to switch from path based routing to an own argocd domain,
# similar to the CNOE amazon reference implementation and in our case, Forgejo # similar to the CNOE amazon reference implementation and in our case, Forgejo
targetRevision: argo-cd-7.6.12 targetRevision: argo-cd-7.7.5
helm: helm:
valueFiles: valueFiles:
- $values/stacks/core/argocd/values.yaml - $values/stacks/core/argocd/values.yaml

View file

@ -100,11 +100,11 @@ data:
user-user1.json: | user-user1.json: |
{ {
"username": "user1", "username": "user1",
"email": "", "email": "user1@user.de",
"firstName": "user", "firstName": "user",
"lastName": "one", "lastName": "one",
"requiredActions": [], "requiredActions": [],
"emailVerified": false, "emailVerified": true,
"groups": [ "groups": [
"/admin" "/admin"
], ],
@ -113,11 +113,11 @@ data:
user-user2.json: | user-user2.json: |
{ {
"username": "user2", "username": "user2",
"email": "", "email": "user2@user.de",
"firstName": "user", "firstName": "user",
"lastName": "two", "lastName": "two",
"requiredActions": [], "requiredActions": [],
"emailVerified": false, "emailVerified": true,
"groups": [ "groups": [
"/base-user" "/base-user"
], ],