You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

104 lines
2.7 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2019-07-28 14:56:41 +0100 (Sun, 28 Jul 2019)
#
# https://github.com/harisekhon/bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
# ============================================================================ #
# K u b e r n e t e s
# ============================================================================ #
kubectl_opts="${KUBECTL_OPTS:-}"
# set K8S_NAMESPACE in local .bashrc or similar files for environments where your ~/.kube/config
# gets regenerated daily with certification authentication from a kerberos login script, which
# resets the 'kcd bigdata' namespace change. This way you automatically send the right namespace every time
if [ "${K8S_NAMESPACE:-}" ]; then
kubectl_opts="-n $K8S_NAMESPACE"
fi
k(){
# want opts auto split, do not quote $kubectl_opts
# shellcheck disable=SC2086
kubectl $kubectl_opts "$@"
}
# 'k8s-app' label is set by dashboard creation but who uses that
k8s_get_pod_opts="-o wide -L app,env"
# this is one of the most used things out there, even more than ping
alias p="k get po \$k8s_get_pod_opts"
alias wp=watchpods
alias ke=kubeexec
alias use="k config use-context"
alias contexts="k config get-contexts"
#alias context="k config current-context"
context(){ k config current-context; }
# contexts has this info and is more useful
#alias clusters="k config get-clusters"
alias kcd='kubectl config set-context $(kubectl config current-context) --namespace'
alias menv='eval $(minikube docker-env)'
get_pod(){
local filter="${1:-.*}"
# shellcheck disable=SC2086
k get pods $k8s_get_pod_opts | grep "$filter" | head -n1
}
watchpods(){
watch "
echo 'Context: '
echo
kubectl config current-context
echo
echo
echo 'Pods:'
echo
kubectl $kubectl_opts get pods $k8s_get_pod_opts 2>&1
echo
"
}
kdesc(){
k describe "$@"
}
kdp(){
kdesc pods "$@"
}
kdelp(){
k delete pod "$@"
}
kubeexec(){
kubectl exec -ti "$@" /bin/sh
}
k8s_get_token(){
kubectl describe secret -n kube-system \
"$(kubectl get secrets -n kube-system | grep default | cut -f1 -d ' ')" |
grep '^token' |
awk '{print $2}'
}
k8s_get_api(){
local context
local cluster
context="$(context)"
cluster="$(k config view -o jsonpath="{.contexts[?(@.name == \"$context\")].context.cluster}")"
k config view -o jsonpath="{.clusters[?(@.name == \"$cluster\")].cluster.server}"
echo
}