0%

K8S and Docker

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# 查看所有可用的订阅
az account list --output table
# 查看当前选择的订阅
az account show --output table
# 切换默认当前订阅
az account set --subscription "订阅名称/ID"
# 列出当前订阅下的所有资源组
az group list --output table
# 查看所有资源
az resource list --resource-group <resource-group-name> --output table
# 查看指定订阅aks
az aks list --resource-group <resource-group-name> --output table
# 查看当前订阅下所有aks
az aks list --output table

az aks get-credentials --resource-group <resource-group-name> --name <cluster-name> --file /path/to/your/kubeconfig
az aks get-credentials --subscription <subscription-name> -g <resource-group-name> -n <cluster-name> --overwrite-existing --file /path/to/your/kubeconfig
kubelogin convert-kubeconfig -l workloadidentity
kubectl cluster-info

报错 ... executable kubelogin not found

1
2
3
4
你遇到的错误信息指出你需要安装kube login ,这是一个用于 Azure Kubernetes Service (AKS)与
Azure Active Directory(AAD)集成的客户端凭证插件。当你的AKS集群启用了 AzUre AD 集成时,就需
要使用kube login来获取井管理访问令牌,使kubectl能够与集群通信
kubelogin convert-kubeconfig -l workloadidentity

###多个kubeconfig合并切换问题

合并成1个

export KUBECONFIG=/.kube/qaconfig:/.kube/uatconfig:~/.kube/prodonfig
kubectl config view –merge –flatten > ~/.kube/merged_config
mv ~/.kube/merged_config ~/.kube/config

不合并

  • 多个文件可以强制指定文件: kubectl get pods –kubeconfig ~/.kube/config
  • 利用环境变量合并,然后切换上下文
    1
    2
    3
    4
    export KUBECONFIG=~/.kube/config:~/.kube/uatconfig
    kubectl config get-contexts # 获取所有上下文
    kubectl config use-context xxx #
    kubectl config current-context # 获取当前上下文

CLi

apply and diff

1
2
3
4
5
# 验证 YAML 文件的语法和结构是否正确,分别客户端验证和服务端验证
kubectl apply --dry-run=client --recursive -f <dir or file>
kubectl apply --dry-run=server --recursive -f <dir or file>
# 查看应用此文件会产生的变更(与集群中现有资源的差异)
kubectl diff --recursive -f <dir or file>

get

1
2
3
4
5
6
kubectl get services -n uat-aggregator -o json | jq -c .
kubectl get services --namespace=uat-aggregator -o json | jq -c .

kubectl get --raw /api/v1/namespaces/uat-aggregator/services | jq -c .

kubectl get namespace -n uat-aggregator -o json > /Users/wupeixin/Desktop/k8s.json

Others

查看信息或帮助

1
2
3
4
5
6
7
8
9
# 查看某个具体资源信息
kubectl describe <资源类型,eg: namespace> <资源名称>
kubectl get <资源类型,eg: namespace> <资源名称>
kubectl explain <资源类型,eg: namespace>
kubectl <命令 eg: get,explain,describe> -h
# 获取event的资源类型
kubectl get events -n <你的namespace>
# Display events
kubectl events -n <你的namespace>

docker exec -it <container-id或container-name> /bin/bash
对应docker file写法
kubectl exec po/session-0 -n dev-shipping -it – /bin/bash
kubectl exec session-0 -n dev-shipping -it – /bin/bash
kubectl exec -it -n – /bin/bash