安裝ArgoCD
參考:https://argo-cd.readthedocs.io/en/stable/getting_started/
建立名稱空間
kubectl create namespace argocd
下載install.yml
curl -L https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml > argocd.yaml
修改映象地址
先檢視需要的映象
cat argocd.yaml | grep image:
其中 ghcr.io/dexidp/dex:v2.38.0
和 redis:7.0.15-alpine
映象國內服務下載。需做如下更改
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/ghcr.io/dexidp/dex:v2.38.0
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/redis:7.0.15-alpine
安裝ArgoCD
kubectl apply -n argocd -f argocd.yaml
檢視pod的啟動情況
kubectl get pod -n argocd -o wide
操作ArgoCD
埠轉發配置
預設情況下,ArgoCD服務不對外暴露服務,可以透過LoadBalancer或者NodePort型別的Service、Ingress、kubectl埠轉發等方式將ArgoCD服務釋出到Kubernetes叢集外部。
LoadBalancer模式
將argocd-server服務型別更改為LoadBalancer
kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "LoadBalancer"}}'
Kubectl埠轉發也可用於連線 API 伺服器,而無需暴露服務。
kubectl port-forward svc/argocd-server -n argocd 8080:443
kubectl port-forward --address 0.0.0.0 svc/argocd-server -n argocd 8443:443 &
kubectl port-forward -h #檢視port-forward命令
#刪除轉發需要kill
ps aux | grep port-forward
kill -p id
NodePort 模式
kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "NodePort"}}'
kubectl get svc -n argocd
因為沒有使用Ingress的方式暴露訪問域名,是使用IP+PORT的方式暴露訪問地址。可以看到,argocd-server的型別已經是NodePort了,它生成了一個隨機埠31436。所以ArgoCD的訪問地址是:https://10.0.2.12:31436/ (10.0.2.12是node節點的ip地址)
獲取admin使用者的密碼
kubectl get secret -n argocd argocd-initial-admin-secret -o yaml
得到的密碼是經過Base64編碼的,需要進行解碼
echo aHpOU2ZMbVcweXpjMVF4SQ== | base64 -d
或者直接使用以下一條命令搞掂
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
訪問ArgoCD
https://127.0.0.1:8080
ArgoCD CLI工具安裝
參考:https://argo-cd.readthedocs.io/en/stable/cli_installation/
安裝
curl -sSL -o argocd-linux-amd64 https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64
mv argocd-linux-amd64 argocd
chmod 755 argocd
mv argocd /usr/bin
檢視版本
argocd version
使用ArgoCD CLI工具檢視admin使用者密碼
argocd admin initial-password -n argocd
//blog.csdn.net/cr7258/article/details/122028096