argoCD的yaml配置下载
wget https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
若是无法下载,选择下面方式下载(已提前保存在我的obs中)
wget https://k8s-yaml.obs.cn-north-4.myhuaweicloud.com/argocd-install.yaml
创建ns
kubectl create namespace argocd
安装argocd
kubectl apply -n argocd -f install.yaml
可查看安装过程显示信息
查看pod状态
pod所需要的镜像信息正在拉取创建,查看所需要的镜像信息
kubectl describe pod -n argocd |grep Image: |sort |uniq -c