docker导出日志到本地的方法是什么
286
2022-09-11
ChaosMesh 半离线安装过程
说明
所谓半离线值得是公司拉不下镜像来 !-_-!都是学习的官网资料找一个能上外网的VPC就可以了.
mkdir /choasmesh && cd /chaosmeshdocker pull ghcr.io/chaos-mesh/chaos-mesh:${CHAOS_MESH_VERSION}docker pull ghcr.io/chaos-mesh/chaos-daemon:${CHAOS_MESH_VERSION}docker pull ghcr.io/chaos-mesh/chaos-dashboard:${CHAOS_MESH_VERSION}docker save ghcr.io/chaos-mesh/chaos-mesh:${CHAOS_MESH_VERSION} > image-chaos-mesh.tardocker save ghcr.io/chaos-mesh/chaos-daemon:${CHAOS_MESH_VERSION} > image-chaos-daemon.tardocker save ghcr.io/chaos-mesh/chaos-dashboard:${CHAOS_MESH_VERSION} > image-chaos-dashboard.tarcurl -fsSL -o chaos-mesh.zip /tar -czvf chaosmesh.tar.gz chaosmesh/
K8S单节点处理
导入镜像
docker load < image-chaos-mesh.tardocker load < image-chaos-daemon.tardocker load < image-chaos-dashboard.tar
下载helm 然后添加相关的仓库信息
helm repo add chaos-mesh create ns chaos-testinghelm install chaos-mesh chaos-mesh/chaos-mesh -n=chaos-testing --version 2.1.4# 注意这个版本号 是跟上面获取镜像的版本号一致的.
查看svc
kubectl get svc -n chaos-testingdashboard 是 nodePort格式的 可以直接获取端口进行访问.
创建相关权限
使用NodePort登录后会提示创建用户. 第一步:需要创建一个 rbac.yamldashboard 会自动弹出来一般内容为:kind: ServiceAccountapiVersion: v1metadata: namespace: default name: account-cluster-manager-fzjew---kind: ClusterRoleapiVersion: rbac.authorization.k8s.io/v1metadata: name: role-cluster-manager-fzjewrules:- apiGroups: [""] resources: ["pods", "namespaces"] verbs: ["get", "watch", "list"]- apiGroups: - chaos-mesh.org resources: [ "*" ] verbs: ["get", "list", "watch", "create", "delete", "patch", "update"]---apiVersion: rbac.authorization.k8s.io/v1kind: ClusterRoleBindingmetadata: name: bind-cluster-manager-fzjewsubjects:- kind: ServiceAccount name: account-cluster-manager-fzjew namespace: defaultroleRef: kind: ClusterRole name: role-cluster-manager-fzjew apiGroup: rbac.authorization.k8s.io
创建以及获取token
kubectl apply -f rbac.yaml kubectl describe secrets account-cluster-manager-fzjew # 第一个创建相关权限 # 第二个获取token
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~