Compare commits
No commits in common. "9d4ee4e95b1c2c531b06effb08af561af4144709" and "8ac6aef897fcc0c6f4a90f81b2134b9f4d8845ce" have entirely different histories.
9d4ee4e95b
...
8ac6aef897
@ -1,58 +0,0 @@
|
|||||||
#!/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 podman podman-desktop
|
pulumi/tap/pulumi kubeseal
|
||||||
)
|
)
|
||||||
# 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