-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added pre-stop pod lifecycle script
- Loading branch information
Showing
2 changed files
with
18 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
|
||
GIT_STATUS=`git status -s` | ||
if [ -z "$GIT_STATUS" ] ; then | ||
exit 0 | ||
fi | ||
|
||
CURRENT_BRANCH=`git rev-parse --abbrev-ref HEAD` | ||
CURRENT_SHA=`git rev-parse --short HEAD` | ||
AUTOSAVE_BRANCH="renku/autosave/$JUPYTERHUB_USER/${CURRENT_BRANCH}/${CURRENT_SHA}" | ||
git checkout -b "$AUTOSAVE_BRANCH" | ||
git add . | ||
git commit -am "Auto-saving for $JUPYTERHUB_USER on branch $CURRENT_BRANCH and commit $CURRENT_SHA" | ||
git push origin "$AUTOSAVE_BRANCH" | ||
git checkout master | ||
git branch -D "$AUTOSAVE_BRANCH" |