refactor(Apps): Project Eclipse - part 1 - remove ix_values.yaml (#1168)

* NUKE values.yaml -> ix_values.yaml

* nuke the values.yaml files globally (we can revert just the bare minimum required settings, if needed)

* bump patch versions

(cherry picked from commit e6c60c57df81af47652180d3e822f05c878e1d2b)

* bump common to deal with some storageClass naming issues

* bump common and postgresql

* try retrying helm dependency update 3 times if failed

* sleep after error
This commit is contained in:
Kjeld Schouten-Lebbing
2021-10-18 23:08:34 +02:00
committed by GitHub
parent 0d11f8cba4
commit 4ccf8d64a5
283 changed files with 433 additions and 3914 deletions
+1 -2
View File
@@ -82,7 +82,7 @@ main() {
create_changelog "$chart" "$chartname" "$train" "$chartversion"
generate_docs "$chart" "$chartname" "$train" "$chartversion"
copy_docs "$chart" "$chartname" "$train" "$chartversion"
helm dependency update "${chart}" --skip-refresh
helm dependency update "${chart}" --skip-refresh || sleep 10 && helm dependency update "${chart}" --skip-refresh || sleep 10 && helm dependency update "${chart}" --skip-refresh
package_chart "$chart"
if [[ -f "${chart}/SCALE/item.yaml" ]]; then
clean_apps "$chart" "$chartname" "$train" "$chartversion"
@@ -397,7 +397,6 @@ patch_apps() {
cp -rf ${target}/SCALE/templates/* ${target}/templates 2>/dev/null || :
mv ${target}/SCALE/item.yaml catalog/${train}/${chartname}/item.yaml
rm -rf ${target}/SCALE 2>/dev/null || :
mv ${target}/values.yaml ${target}/test_values.yaml 2>/dev/null || :
touch ${target}/values.yaml
}