Skip to content

Commit 78af9df

Browse files
committed
Merge branch 'main' into feature/open-access
2 parents 42882df + 898d5ad commit 78af9df

File tree

19 files changed

+459
-424
lines changed

19 files changed

+459
-424
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ end_of_line = lf
99
insert_final_newline = true
1010
indent_style = space
1111
indent_size = 2
12+
max_line_length = 180
1213

1314
[*.py]
1415
indent_size = 4

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
secrets_test.yml
33
.vagrant
44
.idea/
5+
56
.DS_Store
67
delme
78

environments/template/group_vars/template.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22

33
env: "%env%"
4-
show_debug_info: false # Show extra debug info
54
mariadb_host: localhost
65
rsyslog_host: localhost
76
database_clients: [ "{{ mariadb_host }}" ]
@@ -43,8 +42,7 @@ teams_gui_version: "9.1.3"
4342
teams_server_version: "9.1.3"
4443
voot_version: "6.2.0"
4544
myconext_version: "8.1.12-1"
46-
dashboard_server_version: "12.3.4"
47-
dashboard_gui_version: "12.3.4"
45+
dashboard_version: "13.0.11"
4846
invite_server_version: "0.0.2-SNAPSHOT"
4947
invite_client_version: "0.0.2-SNAPSHOT"
5048
invite_welcome_version: "0.0.2-SNAPSHOT"

environments/template/secrets/secret_example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ myconext_verify_client_id: secret
3232
myconext_verify_secret: secret
3333
engine_api_profile_password: secret
3434
engine_api_deprovision_password: secret
35-
engine_parameters_secret: secret
35+
engine_parameters_secret: secretsecretsecretsecretsecretsecret # need 32 chars
3636

3737
profile_secret: secret
3838

provision.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
hosts: docker_engineblock
141141
become: true
142142
roles:
143-
- engineblock
143+
- engine
144144
tags: ['engineblock', 'eb']
145145

146146
- name: Deploy invite app

roles/dashboard/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
name: dashboardserver
2626
env:
2727
TZ: "{{ timezone }}"
28-
image: ghcr.io/openconext/openconext-dashboard/dashboard-server:{{ dashboard_server_version }}
28+
image: ghcr.io/openconext/openconext-dashboard/dashboard-server:{{ dashboard_version }}
2929
pull: true
3030
restart_policy: "{{ dashboard_server_restart_policy }}"
3131
restart_retries: "{{ dashboard_server_restart_retries }}" # Only for restart policy on-failure
@@ -61,7 +61,7 @@
6161
- name: Create the gui container
6262
community.docker.docker_container:
6363
name: dashboardgui
64-
image: ghcr.io/openconext/openconext-dashboard/dashboard-gui:{{ dashboard_gui_version }}
64+
image: ghcr.io/openconext/openconext-dashboard/dashboard-gui:{{ dashboard_version }}
6565
pull: true
6666
restart_policy: "always"
6767
state: started
Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,8 @@ engine_feature_send_user_attributes: 0
2222
engine_wayf_cutoff_point_for_showing_unfiltered_idps: 50
2323
engine_wayf_show_remember_choice: false
2424

25-
## Engine installer specific variables.
26-
engine_version_dir: "{{ engine_version | replace('/', '-') }}"
27-
engine_branch_dir: "{{ openconext_builds_dir }}/OpenConext-engineblock-{{ engine_branch | replace('/', '-') }}"
28-
engine_release_dir: "{{ openconext_releases_dir }}/OpenConext-engineblock-{{ engine_version_dir }}"
29-
engine_build_path: "{{ openconext_builds_dir }}/OpenConext-engineblock-{{ engine_version_dir }}.tar.gz"
30-
engine_download_url: "https://github.com/OpenConext/OpenConext-engineblock/releases/download/{{ engine_version }}/OpenConext-engineblock-{{ engine_version_dir }}.tar.gz"
31-
engine_current_release_symlink: "{{ openconext_releases_dir }}/OpenConext-engineblock"
32-
33-
engine_ipv4_address: "*"
34-
# engine_ipv6_address:
35-
engine_api_ipv4_address: "*"
36-
# engine_api_ipv6_address:
37-
3825
# Required for the Symfony routing.
3926
engine_base_domain: "{{ base_domain }}"
40-
4127
engine_domain: engine.{{ base_domain }}
4228

4329
engine_debug: false
@@ -89,8 +75,6 @@ engine_stepup_gateway_loa3: "http://{{ engine_stepup_base_domain }}/assurance/lo
8975
engine_stepup_gateway_sfo_entity_id: "https://{{ engine_stepup_gateway_domain }}/second-factor-only/metadata"
9076
# The single sign-on endpoint used for Stepup Gateway SFO callouts
9177
engine_stepup_gateway_sfo_sso_location: "https://{{ engine_stepup_gateway_domain }}/second-factor-only/single-sign-on"
92-
# The public key from the Stepup Gateway IdP
93-
engine_stepup_gateway_sfo_public_key_file: "{{ engine_keys.default.publicFile }}"
9478

9579
## The minimum priority of messages that will be logged
9680
engine_logging_passthru_level: NOTICE
@@ -104,13 +88,12 @@ engine_idp_debugging_to_name: "{{ instance_name }} Admin"
10488
engine_idp_debugging_email_address: "{{ support_email }}"
10589
engine_idp_debugging_subject: "IdP debug info from %1$s"
10690

107-
eb_support_url: "https://example.org"
108-
eb_support_url_nameid: "https://example.org"
109-
eb_tos_url: "https://example.org"
91+
engine_support_url: "https://example.org"
92+
engine_support_url_nameid: "https://example.org"
11093

11194
engine_site_notice_show: false
11295

113-
engineblock_log_attributes: []
96+
engine_log_attributes: []
11497

11598
engine_php_memory: 256M
11699
engine_docker_networks:
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
- name: restart engine
2+
- name: Restart engine
33
community.docker.docker_container:
44
name: engineblock
55
state: started
66
restart: true
77
# avoid restarting it creates unexpected data loss according to docker_container_module notes
88
comparisons:
99
'*': ignore
10-
when: ebcontainer is success and ebcontainer is not change
10+
when: engine_container is success and engine_container is not change

0 commit comments

Comments
 (0)