Updates the Helm chart version to incorporate the latest features, improvements, and bug fixes from upstream. Ensures deployment uses a more recent and supported release.
32 lines
No EOL
950 B
YAML
32 lines
No EOL
950 B
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: forgejo-server
|
|
namespace: argocd
|
|
labels:
|
|
env: dev
|
|
spec:
|
|
project: default
|
|
syncPolicy:
|
|
automated:
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
retry:
|
|
limit: -1
|
|
destination:
|
|
name: in-cluster
|
|
namespace: gitea
|
|
sources:
|
|
- repoURL: https://code.forgejo.org/forgejo-helm/forgejo-helm.git
|
|
path: .
|
|
targetRevision: v16.2.0
|
|
helm:
|
|
valueFiles:
|
|
- $values/{{{ .Env.CLIENT_REPO_ID }}}/{{{ .Env.DOMAIN }}}/stacks/forgejo/forgejo-server/values.yaml
|
|
- repoURL: https://{{{ .Env.CLIENT_REPO_DOMAIN }}}/{{{ .Env.CLIENT_REPO_ORG_NAME }}}
|
|
targetRevision: HEAD
|
|
ref: values
|
|
- repoURL: https://{{{ .Env.CLIENT_REPO_DOMAIN }}}/{{{ .Env.CLIENT_REPO_ORG_NAME }}}
|
|
targetRevision: HEAD
|
|
path: "{{{ .Env.CLIENT_REPO_ID }}}/{{{ .Env.DOMAIN }}}/stacks/forgejo/forgejo-server/manifests" |