Skip to content

Instantly share code, notes, and snippets.

@ankitrgadiya
Created April 18, 2019 09:24
Show Gist options
  • Save ankitrgadiya/7d7dc792d56d8e03f069d98ec2ddcd10 to your computer and use it in GitHub Desktop.
Save ankitrgadiya/7d7dc792d56d8e03f069d98ec2ddcd10 to your computer and use it in GitHub Desktop.
Operator SDK restart
#! /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