Skip to content

Commit 7d6f29d

Browse files
authored
Merge branch 'main' into feature/fix-deployment
2 parents 7bef295 + b66d316 commit 7d6f29d

7 files changed

Lines changed: 28 additions & 21 deletions

File tree

environments/template/group_vars/template.yml

Lines changed: 1 addition & 2 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 }}" ]
@@ -212,7 +211,7 @@ aa:
212211
sab_username: coin-test
213212
sab_rest_username: surfconexttest
214213
sab_rest_password: "{{ aa_sab_rest_password }}"
215-
sab_rest_endpoint: https://sab.acc.surfaccess.nl
214+
sab_rest_endpoint: https://sab.acc.surfaccess.nl/api/profile
216215
surfmarket_url: https://example.org
217216
surfmarket_username: example@example.org
218217
surfmarket_password: "{{ aa_surfmarket_password }}"

roles/invite/templates/serverapplication.yml.j2

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ config:
132132

133133

134134
feature:
135-
limit-institution-admin-role-visibility: {{ invite.limit_institution_admin_role_visibility }}
136135
enable-performance-seed: False
136+
allow-for-eduid-only-enforcement-for-non-guests: False
137137

138138
# We don't encode in-memory passwords, but they are reused so do NOT prefix them with {noop}
139139
external-api-configuration:
@@ -202,7 +202,9 @@ manage:
202202
springdoc:
203203
pathsToMatch:
204204
- "/api/external/v1/**"
205-
- "/api/internal/v1/crm"
205+
- "/crm/profile"
206+
- "/api/profile"
207+
- "/crm/api/v1/**"
206208
api-docs:
207209
path: "/ui/api-docs"
208210
swagger-ui:

roles/manage/templates/application.yml.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ product:
6464
metadata_configuration_path: file://{{ manage_dir }}/metadata_configuration
6565
metadata_templates_path: file://{{ manage_dir }}/metadata_templates
6666
metadata_export_path: classpath:/metadata_export
67-
disabled_metadata_schemas: []
67+
disabled_metadata_schemas: "organisation.schema.json"
6868

6969
security:
7070
backdoor_user_name: {{ manage.backdoor_api_user }}

roles/mongo/tasks/clusterconfig.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,19 @@
88
check_mode: false
99

1010
- name: Debug check_cluster variable
11-
when: show_debug_info is defined and show_debug_info | bool
1211
ansible.builtin.debug:
1312
msg: "{{ check_cluster }}"
13+
verbosity: 2
1414

1515
- name: Debug mongo_cluster_members variable
16-
when: show_debug_info is defined and show_debug_info | bool
1716
ansible.builtin.debug:
1817
msg: "{{ mongo_cluster_members }}"
18+
verbosity: 2
1919

2020
- name: Debug mongo_replication_role variable
21-
when: show_debug_info is defined and show_debug_info | bool
2221
ansible.builtin.debug:
2322
msg: "{{ mongo_replication_role }}"
24-
25-
- name: Debug host_id
26-
ansible.builtin.debug:
27-
msg: "{{ hostid }}"
23+
verbosity: 2
2824

2925
- name: Initial cluster initialisation
3026
community.mongodb.mongodb_replicaset:

roles/mongo/tasks/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
ansible.builtin.include_tasks:
1818
file: certs.yml
1919

20-
- name: Include cluster installation tasks
21-
ansible.builtin.include_tasks:
22-
file: clusterconfig.yml
20+
# - name: Include cluster installation tasks
21+
# ansible.builtin.include_tasks:
22+
# file: clusterconfig.yml
2323

2424
- name: Include user creation
2525
ansible.builtin.include_tasks:

roles/oidcng/templates/application.yml.j2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ logging:
33
config: file://{{ oidcng_config_dir }}/logback.xml
44
level:
55
org.springframework: WARN
6-
oidc: INFO
76

87
# Is this node in a load-balanced topology responsible for cleaning up resources
98
cron:

roles/spdashboard/templates/env.j2

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,24 @@ playground_uri_prod={{ spdashboard_playground_uri_prod }}
5454
global_site_notice_show={{ spdashboard_show_global_notice }}
5555
global_site_notice_date={{ spdashboard_global_notice_date }}
5656
global_site_notice_allowed_tags=<a><u><i><br><wbr><strong><em><blink><marquee><p><ul><ol><dl><li><dd><dt><div><span><blockquote><hr><h2></h2><h3><h4><h5><h6>
57-
teams_host={{ spdashboard_teams_host }}
58-
teams_username={{ spdashboard_teams_api_user }}
59-
teams_password={{ spdashboard_teams_api_password }}
60-
team_prefix_default_stem_name={{ spdashboard_teams_default_stem }}
61-
team_prefix_group_name_context={{ spdashboard_teams_group_name_context }}
57+
6258
acs_location_route_name=dashboard_saml_consume_assertion
6359
metadata_url_timeout=30
6460
test_idp_entity_ids=[{{ spdashboard_test_idps }}]
6561
authorization_attribute_name={{ spdashboard_surf_autorization_attribute }}
6662
surfconext_representative_authorization={{ spdashboard_surf_autorization_attribute_svc_value }}
63+
64+
## Teams test instance
65+
teams_host={{ spdashboard_teams_host }}
66+
teams_username={{ spdashboard_teams_api_user }}
67+
teams_password={{ spdashboard_teams_api_password }}
68+
team_prefix_default_stem_name={{ spdashboard_teams_default_stem }}
69+
team_prefix_group_name_context={{ spdashboard_teams_group_name_context }}
70+
71+
spdashboard_manage_id={{ spdashboard_manage_id }}
72+
73+
## Invite instance
74+
invite_host={{ spdashboard_invite_host }}
75+
invite_api_username={{ spdashboard_invite_api_username }}
76+
invite_api_password={{ spdashboard_invite_api_password }}
77+
invite_landing_url={{ spdashboard_invite_landing_url }}}

0 commit comments

Comments
 (0)