Skip to content

Commit 6139f43

Browse files
authored
Merge branch 'main' into feature/stepup-azuremfa-federation-metadata
2 parents 7121907 + 12b83a7 commit 6139f43

File tree

26 files changed

+49
-21
lines changed

26 files changed

+49
-21
lines changed

.github/workflows/molecule-loadbalancer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
build:
2424
runs-on: ubuntu-20.04
2525
steps:
26-
- uses: actions/checkout@v4
26+
- uses: actions/checkout@v5
2727

2828
- name: Set up Python 3.8
2929
uses: actions/setup-python@v5

.github/workflows/molecule-mongo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
build:
1818
runs-on: ubuntu-24.04
1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121
- name: Set up Python 3.8
2222
uses: actions/setup-python@v5
2323
with:

.github/workflows/syntax.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
build:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- name: Set up Python 3.8
2525
uses: actions/setup-python@v5

deploy_containers_playbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
- { role: oidcng, tags: ['oidcng'] }
8282

8383
- name: Deploy oidc-playground app
84-
hosts: docker_oidc-playground
84+
hosts: docker_oidc_playground
8585
become: true
8686
roles:
8787
- { role: oidc-playground, tags: ['oidc-playground'] }

roles/dashboard/defaults/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
dashboard_organization: SURFconext
22
dashboard_hide_tabs: none
3+
dashboard_server_restart_policy: always
4+
dashboard_server_restart_retries: 0

roles/dashboard/tasks/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
TZ: "{{ timezone }}"
2828
image: ghcr.io/openconext/openconext-dashboard/dashboard-server:{{ dashboard_server_version }}
2929
pull: true
30-
restart_policy: "always"
30+
restart_policy: "{{ dashboard_server_restart_policy }}"
31+
restart_retries: "{{ dashboard_server_restart_retries }}" # Only for restart policy on-failure
3132
state: started
3233
networks:
3334
- name: "loadbalancer"

roles/invite/defaults/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ invite_cronjobmaster: true
1818
invite_logback_json: true
1919
invite_docker_networks:
2020
- name: loadbalancer
21+
invite_server_restart_policy: always
22+
invite_server_restart_retries: 0

roles/invite/tasks/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,16 @@
6363
TZ: "{{ timezone }}"
6464
image: ghcr.io/openconext/openconext-invite/inviteserver:{{ invite_server_version }}
6565
pull: true
66-
restart_policy: "always"
66+
restart_policy: "{{ invite_server_restart_policy }}"
67+
restart_retries: "{{ invite_server_restart_retries }}" # Only for restart policy on-failure
6768
state: started
6869
networks: "{{ invite_docker_networks }}"
6970
mounts:
7071
- source: /opt/openconext/invite/serverapplication.yml
7172
target: /application.yml
7273
type: bind
7374
- source: /opt/openconext/invite/logback.xml
74-
target: /logback.yml
75+
target: /logback.xml
7576
type: bind
7677
- source: /opt/openconext/invite/private_key_pkcs8.pem
7778
target: /private_key_pkcs8.pem

roles/manage/defaults/main.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@ manage_tabs_enabled:
3434
- organisation
3535
manage_docker_networks:
3636
- name: loadbalancer
37+
manage_server_restart_policy: always
38+
manage_server_restart_retries: 0

roles/manage/files/policies/allowed_attributes.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,14 @@
2525
},
2626
{
2727
"value": "urn:collab:group:surfteams.nl",
28-
"label": "SURFteams group name (fully qualified)"
28+
"label": "SURFconext Invite (voot) role urn"
2929
},
3030
{
3131
"value": "urn:collab:sab:surfnet.nl",
3232
"label": "SAB role"
33-
3433
},
3534
{
3635
"value": "urn:mace:dir:attribute-def:mail",
3736
"label": "Mail address"
38-
3937
}
40-
]
38+
]

0 commit comments

Comments
 (0)