Skip to content

[v1.0.0.beta] chore: Bundling charts

Shinya Maeda requested to merge feat-bundling-chart into beta

Important

  • This MR targets beta branch as a part of a v1.0.0 pre-release
  • This commit doesn't include BREAKING CHANGE thus doesn't cut pre-release tag yet.

What's changed in this MR?

The chart directory in this MR is programmatically copied by the following script

image_repo=/home/shinya/workspace/auto-deploy-image
chart_repo=/home/shinya/workspace/auto-deploy-app
new_chart_dir=assets/auto-deploy-app
cd $image_repo
rm -Rf $new_chart_dir && mkdir -p $new_chart_dir
git -C $chart_repo checkout master
git -C $chart_repo pull origin master
cp -r $chart_repo/* $image_repo/$new_chart_dir

https://gitlab.com/gitlab-org/charts/auto-deploy-app

Reference

Edited by Shinya Maeda

Merge request reports