Skip to content

Commit ff07546

Browse files
danpawliksdatko
authored andcommitted
Force dump admin password as a string
If the password is just based on numbers, after we enabled jinja2_native [1], it is parsed to a integer not a string. [1] d8f86c8
1 parent 2e645a0 commit ff07546

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

roles/test_operator/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ cifmw_test_operator_horizontest_config:
284284
privileged: "{{ cifmw_test_operator_privileged }}"
285285
containerImage: "{{ stage_vars_dict.cifmw_test_operator_horizontest_image }}:{{ stage_vars_dict.cifmw_test_operator_horizontest_image_tag }}"
286286
adminUsername: "{{ stage_vars_dict.cifmw_test_operator_horizontest_admin_username }}"
287-
adminPassword: "{{ stage_vars_dict.cifmw_test_operator_horizontest_admin_password }}"
287+
adminPassword: "{{ stage_vars_dict.cifmw_test_operator_horizontest_admin_password | string }}"
288288
dashboardUrl: "{{ stage_vars_dict.cifmw_test_operator_horizontest_dashboard_url }}"
289289
authUrl: "{{ stage_vars_dict.cifmw_test_operator_horizontest_auth_url }}"
290290
repoUrl: "{{ stage_vars_dict.cifmw_test_operator_horizontest_repo_url }}"

0 commit comments

Comments
 (0)