[TOC]
前言
本博客持續(xù)更新...用于記錄 k8s 使用過程中的很多的小技巧自沧,也希望你能提供更多的小技巧來~
圖形化管理工具 lens
圖形化 k8s 管理工具: https://github.com/lensapp/lens
我覺得可以少部署一個(gè) dashboard,并且比官方的 dashboard 好看很多
重啟 deployment 命令
我一開始總是 delete 一次 apply 一次找田,感覺很蠢,又換成調(diào)整 scle 但是還是很慢孩革,查了之后發(fā)現(xiàn)原來本來就有重啟的命令
kubectl rollout restart deployment nginx-dep
kubectl -n {NAMESPACE} rollout restart deploy
查看鏈接配置信息
kubectl config view --minify --raw
kubectx
當(dāng)你需要使用 kubectl 操作多個(gè)集群的時(shí)候广鳍,可以使用 kubectx 切換 context,非常方便
多集群管理切換工具:https://github.com/ahmetb/kubectx
更新 configmap 腳本
對(duì)于配置文件 configmap 的更新我真的沒有找到合適的命令苹支,直接 使用 kubectl edit 那么原來的文件是沒有被更改的,會(huì)導(dǎo)致配置不同步误阻。后面會(huì)嘗試找找還有沒有更好的方式债蜜。
#!/bin/bash
# 配置文件 ./reload-config.sh config.yaml
filename=$1
namespace=default
app=`echo $filename | cut -d . -f1`
if [ -z $app ];then
echo "filename is empty!"
exit
fi
if [ -z $namespace ];then
echo "namespace is empty!"
exit
fi
echo "start to reload [$app] configmap"
kubectl get configmap $app-config -o yaml -n $namespace
echo "---------------------start delete-----------------------------"
kubectl delete configmap $app-config -n $namespace
echo "---------------------start create-----------------------------"
kubectl create configmap $app-config --from-file=$app.yaml -n $namespace
sleep 1
kubectl get configmap $app-config -o yaml -n $namespace
單文件 subpath 掛載
configmap 修改無法自動(dòng)熱更新
spec:
containers:
- name: test
image: test
imagePullPolicy: Always
volumeMounts:
- name: config-volume
mountPath: /etc/test.yaml
subPath: test.yaml
volumes:
- name: config-volume
configMap:
name: test-config
單文件 mountPath 掛載
spec:
containers:
- name: test
image: test
volumeMounts:
- name: config-volume
mountPath: "/conf"
volumes:
- name: config-volume
configMap:
name: test-config
items:
- key: test.json
path: test.json
掛載整個(gè)目錄
spec:
containers:
- name: test
image: test
volumeMounts:
- name: config-volume
mountPath: /etc/config
volumes:
- name: config-volume
configMap:
name: special-config
不同命名空間的服務(wù)相互訪問
原來 statefulset 的訪問方式是不一樣的哦
https://kubernetes.io/zh/docs/concepts/services-networking/dns-pod-service/
POD
{pod-ip}.{namespace}.pod.cluster.local //例如某pod的ip為 1.2.3.4,在命名空間default與DNS名稱cluster.local將有一個(gè)域名:1-2-3-4.default.pod.cluster.local。
{pod-ip}.{namespace}.svc.cluster.local
{pod-name}.{namespace}.svc.cluster.local
{pod-name}.{subdomain}.{namespace}.svc.cluster.local // subdomain是在創(chuàng)建pod設(shè)定的屬性,和hostname可以一起設(shè)置
StatefulSet
{pod-name}.{service-name}.{namespace}.svc.cluster.local
可以進(jìn)入到pod中查看/etc/hosts
Service
{service-name}.{namespace}.svc.cluster.local
服務(wù)例子:
redis-service.redis.svc.cluster.local //redis-service 服務(wù)名 redis namespace
導(dǎo)出所有 k8s 所有資源為 yaml 文件 腳本
#!/usr/bin/env bash
set -e
CONTEXT="$1"
if [[ -z ${CONTEXT} ]]; then
echo "Usage: $0 KUBE-CONTEXT"
exit 1
fi
NAMESPACES=$(kubectl --context ${CONTEXT} get -o json namespaces|jq '.items[].metadata.name'|sed "s/\"http://g")
RESOURCES="configmap secret daemonset deployment service hpa"
for ns in ${NAMESPACES};do
for resource in ${RESOURCES};do
rsrcs=$(kubectl --context ${CONTEXT} -n ${ns} get -o json ${resource}|jq '.items[].metadata.name'|sed "s/\"http://g")
for r in ${rsrcs};do
dir="${CONTEXT}/${ns}/${resource}"
mkdir -p "${dir}"
kubectl --context ${CONTEXT} -n ${ns} get -o yaml ${resource} ${r} > "${dir}/${r}.yaml"
done
done
done