30 lines
1.8 KiB
Bash
30 lines
1.8 KiB
Bash
v1_subhelmfile_multi_bases_with_array_values_input_dir="${cases_dir}/v1-subhelmfile-multi-bases-with-array-values/input"
|
|
v1_subhelmfile_multi_bases_with_array_values_output_dir="${cases_dir}/v1-subhelmfile-multi-bases-with-array-values/output"
|
|
|
|
yaml_overwrite_tmp=$(mktemp -d)
|
|
yaml_overwrite_reverse=${yaml_overwrite_tmp}/helmfile_template_result
|
|
|
|
v1_subhelmfile_multi_bases_with_array_values_output_file=${v1_subhelmfile_multi_bases_with_array_values_output_dir}/result
|
|
if [[ $EXTRA_HELMFILE_FLAGS == *--enable-live-output* ]]; then
|
|
v1_subhelmfile_multi_bases_with_array_values_output_file=${v1_subhelmfile_multi_bases_with_array_values_output_dir}/result-live
|
|
fi
|
|
|
|
test_start "v1 subhelmfile multi bases with array values"
|
|
info "Comparing v1 subhelmfile multi bases with array values output ${yaml_overwrite_reverse} with ${v1_subhelmfile_multi_bases_with_array_values_output_file}"
|
|
for i in $(seq 10); do
|
|
info "Comparing build/v1-subhelmfile-multi-bases-with-array-values #$i"
|
|
# Remove incubator repo to ensure consistent output (repo addition message)
|
|
${helm} repo remove incubator 2>/dev/null || true
|
|
${helmfile} -f ${v1_subhelmfile_multi_bases_with_array_values_input_dir}/helmfile.yaml.gotmpl template -e dev &> ${yaml_overwrite_reverse}
|
|
exit_code=$?
|
|
if [ $exit_code -ne 0 ]; then
|
|
info "ERROR: helmfile template command failed with exit code $exit_code"
|
|
info "ERROR: Output from failed command:"
|
|
cat ${yaml_overwrite_reverse}
|
|
fail "\"helmfile template\" shouldn't fail"
|
|
fi
|
|
diff -u ${v1_subhelmfile_multi_bases_with_array_values_output_file} ${yaml_overwrite_reverse} || fail "\"helmfile template\" should be consistent"
|
|
done
|
|
# Clean up: remove incubator repo to avoid conflicts with subsequent tests
|
|
${helm} repo remove incubator 2>/dev/null || true
|
|
test_pass "v1 subhelmfile multi bases with array values" |