Updated flux-refresh

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
Marcus Noble 2023-02-02 15:33:07 +00:00
parent 6336e83371
commit 4338fae15f
Signed by: AverageMarcus
GPG Key ID: B8F2DB8A7AEBAF78

View File

@ -5,14 +5,18 @@ source .utils
set -e set -e
VERBOSE="" VERBOSE=""
TARGET_RESOURCE="all"
NAMESPACES="-A"
print_usage() { print_usage() {
blue "flux-refresh-all - Refresh all flux resources" blue "flux-refresh - Refresh all flux resources"
echo " " echo " "
underline "Usage:" underline "Usage:"
echo "flux-refresh-all [options]" echo "flux-refresh [options]"
echo " " echo " "
underline "Options:" underline "Options:"
echo "-t, --type the resource type to target. Valid options: gitrepo, helmrepository, kustomization, helmrelease & all. Default: all"
echo "-n, --namespace the namespace resources belong in. Default: all namespaces"
echo " --verbose show full verbose output" echo " --verbose show full verbose output"
echo "-h, --help show this help text" echo "-h, --help show this help text"
} }
@ -23,20 +27,38 @@ while test $# -gt 0; do
print_usage print_usage
exit 0 exit 0
;; ;;
-t|--type)
shift
TARGET_RESOURCE=$1
shift
;;
-n|--namespace)
shift
NAMESPACES="-n $1"
shift
;;
--verbose) --verbose)
VERBOSE="true" VERBOSE="true"
shift shift
;; ;;
*) *)
break shift
;; ;;
esac esac
done done
GITREPOS=$(kubectl get gitrepo -A -o json | jq -r '.items[] | "\(.metadata.namespace)/\( .kind)/\( .metadata.name)"') if [[ "${TARGET_RESOURCE}" == "all" || "${TARGET_RESOURCE}" == "gitrepo" ]]; then
HELMREPOS=$(kubectl get helmrepository -A -o json | jq -r '.items[] | "\(.metadata.namespace)/\( .kind)/\( .metadata.name)"') GITREPOS=$(kubectl get gitrepo ${NAMESPACES} -o json | jq -r '.items[] | "\(.metadata.namespace)/\( .kind)/\( .metadata.name)"')
KUSTOMIZATIONS=$(kubectl get kustomization -A -o json | jq -r '.items[] | "\(.metadata.namespace)/\( .kind)/\( .metadata.name)"') fi
HEALMRELEASES=$(kubectl get helmrelease -A -o json | jq -r '.items[] | "\(.metadata.namespace)/\( .kind)/\( .metadata.name)"') if [[ "${TARGET_RESOURCE}" == "all" || "${TARGET_RESOURCE}" == "helmrepository" ]]; then
HELMREPOS=$(kubectl get helmrepository ${NAMESPACES} -o json | jq -r '.items[] | "\(.metadata.namespace)/\( .kind)/\( .metadata.name)"')
fi
if [[ "${TARGET_RESOURCE}" == "all" || "${TARGET_RESOURCE}" == "kustomization" ]]; then
KUSTOMIZATIONS=$(kubectl get kustomization ${NAMESPACES} -o json | jq -r '.items[] | "\(.metadata.namespace)/\( .kind)/\( .metadata.name)"')
fi
if [[ "${TARGET_RESOURCE}" == "all" || "${TARGET_RESOURCE}" == "helmrelease" ]]; then
HEALMRELEASES=$(kubectl get helmrelease ${NAMESPACES} -o json | jq -r '.items[] | "\(.metadata.namespace)/\( .kind)/\( .metadata.name)"')
fi
if [[ "${GITREPOS}" != "" ]]; then if [[ "${GITREPOS}" != "" ]]; then
blue "Refreshing GitRepositories" blue "Refreshing GitRepositories"