コンテンツにスキップ

argocdのインストール

概要

本記事では、argocdのインストール手順を紹介します。 argo-cdは、Kubernetes上で動作するCDツールで、GitOpsの実現をサポートします。

前提

  • Kubernetesクラスターが構築済みであること
  • kubectlがインストールされていること

インストール方法

以下の手順でargocdをインストールします。

bash
1
2
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
helmを使用する場合

helmを使用してargocdをインストールする場合は、以下の手順でインストールします。

bash
1
2
helm repo add argo https://argoproj.github.io/argo-helm
helm install argocd argo/argo-cd -n argocd --create-namespace

argocdのアクセス

argocdのWeb UIにアクセスするには、以下の手順でポートフォワーディングを行います。

bash
1
kubectl port-forward svc/argocd-server -n argocd 8080:443

ポートフォワーディングが完了したら、Webブラウザで以下のURLにアクセスします。

1
https://localhost:8080
初期ユーザーのパスワード

argocdの初期ユーザーのパスワードは、以下のコマンドで取得できます。

bash
1
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d

argocdのアンインストール

argocdをアンインストールするには、以下の手順で削除します。

bash
1
kubectl delete -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
helmを使用してインストールした場合

helmを使用してargocdをインストールした場合は、以下の手順で削除します。

bash
1
helm uninstall argocd

argocdのバージョンアップ

argocdのバージョンアップは、新しいバージョンのargocdをインストールすることで行います。

新しいバージョンのargocdをインストールする手順は以下の通りです。

1
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
helmを使用してインストールした場合

helmを使用してargocdをインストールした場合は、新しいバージョンのargocdをインストールする手順は以下の通りです。

1
helm upgrade argocd argo/argo-cd

コメント