21 lines
514 B
YAML
21 lines
514 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: resume
|
|
namespace: argocd
|
|
spec:
|
|
destination:
|
|
namespace: default
|
|
server: {{ .Values.spec.destination.server }}
|
|
project: default
|
|
source:
|
|
path: simple-app
|
|
repoURL: {{ .Values.spec.source.repoURL }}
|
|
targetRevision: {{ .Values.spec.source.targetRevision }}
|
|
helm:
|
|
valuesObject:
|
|
host: ly-dodo.win
|
|
image: ghcr.io/leonliuy/resume:sha-132a0fa
|
|
containerPort: 3000
|
|
syncPolicy:
|
|
automated: {} |