Skip to content

Commit 6c78e19

Browse files
danpawlikopenshift-merge-bot[bot]
authored andcommitted
[devscripts] Export SNO resource overrides in config template
The `conf_ciuser.j2` has missing fields like `master_memory`, `master_disk`, and `master_vcpu` that should be possible to parametrize. Signed-off-by: Daniel Pawlik <dpawlik@redhat.com>
1 parent 6452867 commit 6c78e19

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

roles/devscripts/templates/conf_ciuser.j2

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ set -x
1414
{% for item in ['working_dir', 'assets_extra_folder', 'openshift_release_type',
1515
'openshift_version', 'cluster_name', 'base_domain', 'ntp_servers',
1616
'external_subnet_v4', 'ip_stack', 'agent_e2e_test_scenario',
17-
'agent_platform_type'] %}
17+
'agent_platform_type', 'master_memory', 'master_disk', 'master_vcpu'] %}
18+
{% if item in cifmw_devscripts_config %}
1819
export {{ item.upper() }}="{{ cifmw_devscripts_config[item] }}"
20+
{% endif %}
1921
{% endfor %}
2022
export NUM_MASTERS=1
2123
export NUM_WORKERS=0

0 commit comments

Comments
 (0)