@@ -9,7 +9,7 @@ It contains a set of playbooks to deploy podified control plane.
99* ` cifmw_install_yamls_envfile ` : (String) Environment file containing all the Makefile overrides. Defaults to ` install_yamls ` .
1010* ` cifmw_install_yamls_out_dir ` : (String) ` install_yamls ` output directory to store generated output. Defaults to ` {{ cifmw_basedir | default(ansible_user_dir ~ '/ci-framework-data') }}/artifacts" ` .
1111* ` cifmw_install_yamls_vars ` : (Dict) A dict containing Makefile overrides.
12- * ` cifmw_install_yamls_repo ` : (String) ` install_yamls ` repo path. Defaults to ` {{ ansible_user_dir }} /src/github.com/openstack-k8s-operators/install_yamls ` .
12+ * ` cifmw_install_yamls_repo ` : (String) ` install_yamls ` repo path. Defaults to ` {{ cifmw_installyamls_repos | default( ansible_user_dir ~ ' /src/github.com/openstack-k8s-operators/install_yamls')}} `
1313* ` cifmw_install_yamls_whitelisted_vars ` : (List) Allowed variables in ` cifmw_install_yamls_vars ` that are not part of ` install_yamls ` Makefiles.
1414* ` cifmw_install_yamls_edpm_dir ` : (String) Output directory for EDPM related artifacts (OUTPUT_BASEDIR). Defaults to ` {{ cifmw_install_yamls_out_dir_basedir ~ '/artifacts/edpm' }} `
1515* ` cifmw_install_yamls_checkout_openstack_ref ` : (String) Enable the checkout from openstack-operator references
@@ -43,7 +43,7 @@ The created role directory contains multiple task files, similar to
4343 register : " make_crc_storage_status"
4444 cifmw.general.ci_script :
4545 output_dir : " {{ cifmw_basedir|default(ansible_user_dir ~ '/ci-framework-data') }}/artifacts"
46- chdir : " /home/zuul/src/github.com/openstack-k8s-operators/install_yamls "
46+ chdir : " {{ cifmw_install_yamls_repo }} "
4747 script : make crc_storage
4848 dry_run : " {{ make_crc_storage_dryrun|default(false)|bool }}"
4949 extra_args : " {{ dict((make_crc_storage_env|default({})), **(make_crc_storage_params|default({}))) }}"
@@ -121,7 +121,7 @@ Let's look at below example:-
121121 register: "make_ansibleee_cleanup_status"
122122 cifmw.general.ci_script:
123123 output_dir: "{{ cifmw_basedir|default(ansible_user_dir ~ '/ci-framework-data') }}/artifacts"
124- chdir: "/home/zuul/src/github.com/openstack-k8s-operators/install_yamls "
124+ chdir: "{{ cifmw_install_yamls_repo }} "
125125 script: "make ansibleee_cleanup"
126126 dry_run: "{{ make_ansibleee_cleanup_dryrun|default(false)|bool }}"
127127 extra_args: "{{ dict((make_ansibleee_cleanup_env|default({})), **(make_ansibleee_cleanup_params|default({}))) }}"
0 commit comments