持续部署工具Argo CD - 安装
1.部署argocd服务
下载部署yaml文件
wget https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
修改部署文件,将内网搭建gitlab的地址绑定到deployment pod中
hostAliases:
- ip: "34.92.55.211"
hostnames:
- "local.gitlab.com"
启动服务
kubectl create ns argocd
kubectl apply -n argocd -f ./install.yaml
2.暴露web端的入口 安装nginx-ingress-controller, 打开官方安装文档复制对应的安装命令,如
Docker Desktop
的命令kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.0.0/deploy/static/provider/cloud/deploy.yaml
【持续部署工具Argo CD - 安装】安装完成查看暴露地址
$ kubectl get svc -n ingress-nginx
NAMETYPECLUSTER-IPEXTERNAL-IPPORT(S)AGE
ingress-nginx-controllerLoadBalancer10.112.10.12434.92.81.7180:30885/TCP,443:30521/TCP18m
ingress-nginx-controller-admissionClusterIP10.112.3.119443/TCP18m
添加argocd ingress文件
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: argocd-server-ingress
namespace: argocd
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
kubernetes.io/ingress.class: nginx
kubernetes.io/tls-acme: "true"
nginx.ingress.kubernetes.io/ssl-passthrough: "true"
# If you encounter a redirect loop or are getting a 307 response code
# then you need to force the nginx ingress to connect to the backend using HTTPS.
#
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
spec:
rules:
- host: argocd.local
http:
paths:
- backend:
serviceName: argocd-server
servicePort: https
tls:
- hosts:
- argocd.example.com
secretName: argocd-secret # do not change, this is provided by Argo CD
一定注意服务商防火墙规则!!!!!晕了
修改本地hosts文件
34.92.81.71 argocd.local
通过访问 https://argocd.local 访问到UI控制台
3.安装argocd cil命令工具 查看安装文档
linux下如:
curl -sSL -o /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64
chmod +x /usr/local/bin/argocd
获得初始密码
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
登陆argocd服务
argocd login
修改admin管理员密码
argocd account update-password
好了,下面你可以用更改后的密码去登陆web管理端了。
推荐阅读
- 标签、语法规范、内联框架、超链接、CSS的编写位置、CSS语法、开发工具、块和内联、常用选择器、后代元素选择器、伪类、伪元素。
- 孩子不是实现父母欲望的工具——林哈夫
- Beego打包部署到Linux
- 阿菘的ScalersTalk第五轮新概念朗读持续力训练Day15|阿菘的ScalersTalk第五轮新概念朗读持续力训练Day15 20191025
- 私有化轻量级持续集成部署方案--03-部署web服务(下)
- 最有效的时间管理工具(赢效率手册和总结笔记)
- 工具|后天就是七夕节,你准备好了吗(送上几个七夕代码,展示你技能的时候到了!)
- 关系问句
- 工具分享|5个有趣好玩的网站,拒绝无聊!
- [白雪扇贝每日一句特训班]week5复盘——相信持续的力量