Compare commits

...

2 Commits

Author SHA1 Message Date
9d4ee4e95b
Added podman
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2022-11-21 13:45:20 +00:00
b65b3ee032
Added kube-schedule-anywhere
Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
2022-11-21 13:45:05 +00:00
2 changed files with 59 additions and 1 deletions

View 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

View File

@ -35,7 +35,7 @@ BREW_TOOLS=(
tektoncd/tools/tektoncd-cli tldr tailscale yq hashicorp/tap/vault
tabby vale lastpass-cli jless macchina tz vmware-tanzu/carvel/kapp viddy
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
MAC_BREW_TOOLS=(