1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

EKSにArgoCDをインストールして使う

Posted at

Argo CD

  • Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.
    • Kubernetes用GitOps継続デリバリーツール
  • GitでCommitが上がったら、Deploymentを再定義みたいなことをしてくれるみたい

Install

kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

CLI Install

VERSION=$(curl --silent "https://api.github.com/repos/argoproj/argo-cd/releases/latest" | grep '"tag_name"' | sed -E 's/.*"([^"]+)".*/\1/')

sudo curl --silent --location -o /usr/local/bin/argocd https://github.com/argoproj/argo-cd/releases/download/$VERSION/argocd-linux-amd64

sudo chmod +x /usr/local/bin/argocd

接続

kubectl port-forward svc/argocd-server -n argocd 8080:443
  • admin/argocd-server-7fdb567cd4-27ssd

image.png

アプリケーション作成

image.png

image.png

image.png

image.png

参考

https://argoproj.github.io/argo-cd/getting_started/
https://www.eksworkshop.com/intermediate/290_argocd/install/
https://dev.classmethod.jp/articles/eks-argocd-getting-started/

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?