Skip to content

Commit 1dcf732

Browse files
committed
[kustomize_deploy] use recursive=True to combine user kustomize values
Currently ci-fmw supports defining user kustomize values for a certain architecture step referring to that step with stage_<number> or <stage_name>. If those values are provided using the both available methods, they should be combined using recursive=True. OSPRH-15775
1 parent 4b4fc49 commit 1dcf732

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

roles/kustomize_deploy/tasks/execute_step.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,8 @@
147147
) |
148148
combine(
149149
_cifmw_kustomize_deploy_user_kustomize[_stage_name][_name] is defined |
150-
ternary(_cifmw_kustomize_deploy_user_kustomize[_stage_name][_name], {})
150+
ternary(_cifmw_kustomize_deploy_user_kustomize[_stage_name][_name], {}),
151+
recursive=True
151152
)
152153
}}
153154
cifmw_ci_gen_kustomize_values_userdata_b64: >-

0 commit comments

Comments
 (0)