-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adjust sync raven charts to openyurtio/charts
Signed-off-by: rambohe-ch <[email protected]>
- Loading branch information
1 parent
2199e01
commit 4ae6d3c
Showing
2 changed files
with
15 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,32 +26,30 @@ echo "git clone" | |
cd .. | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "openyurt-bot" | ||
git clone --single-branch --depth 1 [email protected]:openyurtio/openyurt-helm.git openyurt-helm | ||
git clone --single-branch --depth 1 [email protected]:openyurtio/charts.git charts | ||
|
||
echo "clear openyurt-helm charts/raven-agent" | ||
echo "clear charts/raven-agent of openyurtio/charts" | ||
|
||
if [ -d "openyurt-helm/charts/raven-agent" ] | ||
if [ -d "charts/charts/raven-agent" ] | ||
then | ||
echo "charts raven-agent exists, remove it" | ||
rm -r openyurt-helm/charts/raven-agent/* | ||
rm -r charts/charts/raven-agent/* | ||
else | ||
mkdir -p openyurt-helm/charts/raven-agent | ||
mkdir -p charts/charts/raven-agent | ||
fi | ||
|
||
echo "copy folder raven/charts to openyurt-helm/charts" | ||
echo "copy folder raven/charts to openyurtio/charts/charts" | ||
|
||
cp -R raven/charts/raven-agent/* openyurt-helm/charts/raven-agent/ | ||
cp -R raven/charts/raven-agent/* charts/charts/raven-agent/ | ||
|
||
echo "push to openyurt-helm" | ||
echo "version: $VERSION, commit: $COMMIT_ID, tag: $TAG" | ||
echo "push to openyurtio/charts with commit: $COMMIT_ID" | ||
|
||
cd openyurt-helm | ||
cd charts | ||
|
||
if [ -z "$(git status --porcelain)" ]; then | ||
echo "nothing need to push, finished!" | ||
else | ||
git add . | ||
git commit -m "align with raven-agent charts $VERSION from commit $COMMIT_ID" | ||
git tag "$VERSION" | ||
git commit -m "align with raven-agent charts from commit $COMMIT_ID" | ||
git push origin main | ||
fi |