Compare commits
2 Commits
8ac6aef897
...
9d4ee4e95b
Author | SHA1 | Date | |
---|---|---|---|
9d4ee4e95b | |||
b65b3ee032 |
58
home/.bin/kube-schedule-anywhere
Executable file
58
home/.bin/kube-schedule-anywhere
Executable file
@ -0,0 +1,58 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
source .utils
|
||||||
|
|
||||||
|
NAMESPACE="$(kubectl config view --minify --output 'jsonpath={..namespace}' &>/dev/null)"
|
||||||
|
set -e
|
||||||
|
NAMESPACE=${NAMESPACE:-default}
|
||||||
|
DEPLOYMENT=""
|
||||||
|
|
||||||
|
print_usage() {
|
||||||
|
blue "kube-schedule-anywhere - modify a deployment to schedule on any node"
|
||||||
|
echo " "
|
||||||
|
underline "Usage:"
|
||||||
|
echo "kube-schedule-anywhere [options]"
|
||||||
|
echo " "
|
||||||
|
underline "Options:"
|
||||||
|
echo "-h, --help show this help text"
|
||||||
|
echo "-n, --namespace the namespace the pod is in"
|
||||||
|
echo "-d, --deployment the name of the deployment to modify"
|
||||||
|
}
|
||||||
|
|
||||||
|
while test $# -gt 0; do
|
||||||
|
case "$1" in
|
||||||
|
-n|--namespace)
|
||||||
|
shift
|
||||||
|
NAMESPACE=$1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-d|--deployment)
|
||||||
|
shift
|
||||||
|
DEPLOYMENT=$1
|
||||||
|
shift
|
||||||
|
;;
|
||||||
|
-h|--help)
|
||||||
|
print_usage
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
|
||||||
|
if [[ "$DEPLOYMENT" == "" ]]; then
|
||||||
|
which fzf &>/dev/null || (
|
||||||
|
echo "If no deployment provided, fzf is required to select deployments"
|
||||||
|
echo ""
|
||||||
|
print_usage
|
||||||
|
exit 1
|
||||||
|
)
|
||||||
|
|
||||||
|
deployment=($(kubectl get deployments --all-namespaces -owide | fzf | awk '{print $1, $2}'))
|
||||||
|
DEPLOYMENT=$deployment[1]
|
||||||
|
NAMESPACE=$pod[0]
|
||||||
|
fi
|
||||||
|
|
||||||
|
kubectl patch deployment -n ${NAMESPACE} ${DEPLOYMENT} -p '{"spec": { "template": { "spec": { "tolerations": [ { "operator": "Exists" } ] } } } }' 1>/dev/null
|
@ -35,7 +35,7 @@ BREW_TOOLS=(
|
|||||||
tektoncd/tools/tektoncd-cli tldr tailscale yq hashicorp/tap/vault
|
tektoncd/tools/tektoncd-cli tldr tailscale yq hashicorp/tap/vault
|
||||||
tabby vale lastpass-cli jless macchina tz vmware-tanzu/carvel/kapp viddy
|
tabby vale lastpass-cli jless macchina tz vmware-tanzu/carvel/kapp viddy
|
||||||
homeassistant-cli act dnsmasq gh kubebuilder golangci-lint gnu-sed
|
homeassistant-cli act dnsmasq gh kubebuilder golangci-lint gnu-sed
|
||||||
pulumi/tap/pulumi kubeseal
|
pulumi/tap/pulumi kubeseal podman podman-desktop
|
||||||
)
|
)
|
||||||
# Brew tools only available / needed on Mac
|
# Brew tools only available / needed on Mac
|
||||||
MAC_BREW_TOOLS=(
|
MAC_BREW_TOOLS=(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user