Replies: 6 comments 7 replies
-
same question. |
Beta Was this translation helpful? Give feedback.
-
Not yet. We need to improve how ApplicationSet does templating first. #9177 |
Beta Was this translation helpful? Give feedback.
-
Hi @crenshaw-dev, since the issue has been closed, is this now possible? Something like (not yet working): apiVersion: argoproj.io/v1alpha1
kind: ApplicationSet
metadata:
name: "dev-appset"
namespace: myproject-argocd
spec:
goTemplate: true
goTemplateOptions: ["missingkey=error"]
generators:
- git:
requeueAfterSeconds: 300
repoURL: 'https://do.main/orga/repo.git'
revision: HEAD
files:
- path: 'core/*/component.yaml'
template:
metadata:
name: '{{.name}}'
spec:
project: 'myproject'
sources:
targetRevision: '{{.targetRevision}}'
repoURL: '{{.repoURL}}'
path: 'deployment'
- repoURL: 'https://do.main/orga/repo.git' # For Kustomize
targetRevision: HEAD
ref: values
- repoURL: '{{.repoURL}}' # For Helm
targetRevision: '{{.targetRevision}}'
path: deployment
helm:
valueFiles:
- $values/all/accounts/account1.yaml
- $values/core/{{.name}}/values.yaml
- $values/core/{{.name}}/stages/account1-dev.yaml
destination:
server: https://kubernetes.default.svc
namespace: '{{.namespace}}'
name: myproject-dex
namespace: myproject-dex
targetRevision: 2023.50.1
repoURL: https://do.main/orga/myproject-dex-manifest.git |
Beta Was this translation helpful? Give feedback.
-
i am attempting to achieve what is described in the OP where one AppSet can use dynamic tool detection and deploy both helm and kustomize applications from one git generator, and unfortunately that does not work. i removed |
Beta Was this translation helpful? Give feedback.
-
after further investigation this does seem possible now - https://argo-cd.readthedocs.io/en/stable/operator-manual/applicationset/Generators-Git/#git-generator-directories not sure what version introduced those enhanced go based templating changes, but my 2.6 seems to be too outdated to include them. i will update once i can upgrade to latest 2.9.x and confirm it is working |
Beta Was this translation helpful? Give feedback.
-
@sipao Hi, Were you able to find a solution for this issue? |
Beta Was this translation helpful? Give feedback.
-
The following structure is assumed.
There is app-A, which is configured with kustomize, and app-B, which is configured with helm charts.
Beta Was this translation helpful? Give feedback.
All reactions