2021年8月28日土曜日

argoCD for Raspberry pi

公式:

https://argoproj.github.io/argo-cd/getting_started/


前提条件:

導入前にqemu5.2を導入している。


手順:

1)デプロイを行う。

kubectl create namespace argocd

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


2)外部からのアクセスを行うためにLBを設置する。

kubectl patch svc argocd-server -n argocd -p '{"spec": {"type": "LoadBalancer"}}'


3)パスワードの表示を行う

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



無事、ログインも出来たようだ。










注意:
上記、カーネルを64bitに変更してargoCDのデプロイを行うと、qemuにて、以下のエラーが出てハマった。

qemu: uncaught target signal 11 (Segmentation fault) 

0 件のコメント:

コメントを投稿

.htaccessメモ

 RewriteEngine On RewriteRule ^benefit/(\d{6}[^/]*)/simulation/index$ /benefit/$1/simulation/index.html [R=302,L] # ファイルが存在しない場合、またはディレクトリであ...