Closed3
argocdのapplicationをmanifestで管理する
以下のチュートリアルではcli/webuiからapplication guestbookを作成しているが、それをマニフェストから行いたい
app manifest
つくったもの
guestbookを↑に置き換えるとこんな感じ
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: guestbook
namespace: argocd
spec:
project: default
source:
repoURL: 'https://github.com/argoproj/argocd-example-apps'
targetRevision: HEAD
path: 'guestbook'
destination:
server: 'https://kubernetes.default.svc'
namespace: default
syncPolicy:
automated:
create app
argocd app create guestbook \
--file ./manifest/argocd-apps-of-apps/parent.yaml
確認
OK!
❯ argocd app get guestbook
Name: argocd/guestbook
Health Status: Healthy
helmも試してみよう
guestbookはhelmでも提供されています。
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: guestbook
namespace: argocd
spec:
project: default
source:
repoURL: 'https://github.com/argoproj/argocd-example-apps'
targetRevision: HEAD
path: 'helm-guestbook'
helm:
valueFiles:
- values.yaml
destination:
server: 'https://kubernetes.default.svc'
namespace: default
syncPolicy:
automated:
これでOK
このスクラップは5ヶ月前にクローズされました