Created
April 18, 2019 09:24
-
-
Save ankitrgadiya/7d7dc792d56d8e03f069d98ec2ddcd10 to your computer and use it in GitHub Desktop.
Operator SDK restart
This file contains hidden or 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
#! /usr/bin/env bash | |
# set -x | |
if [ ! -f "./Gopkg.toml" ] && [ ! -d "./.git" ] | |
then | |
echo "Directory is not correct" | |
exit 1 | |
fi | |
operator-sdk up local & | |
# Keep checking | |
while true | |
do | |
if [[ ! -z `find pkg/ deploy/ -mmin 0.01 -print -quit` ]] | |
then | |
pkill operator-sdk | |
operator-sdk up local & | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment