this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(platform): generate apps from list

Khue Doan 1e32eadf 44276326

+41
+41
platform/local/apps.yaml
··· 1 + apiVersion: argoproj.io/v1alpha1 2 + kind: ApplicationSet 3 + metadata: 4 + name: apps 5 + spec: 6 + goTemplate: true 7 + goTemplateOptions: 8 + - missingkey=error 9 + generators: 10 + - list: 11 + elements: 12 + - namespace: test 13 + app: example 14 + - namespace: khuedoan 15 + app: blog 16 + - namespace: khuedoan 17 + app: notes 18 + - namespace: khuedoan 19 + app: homelab-docs 20 + - namespace: finance 21 + app: actualbudget 22 + template: 23 + metadata: 24 + name: '{{.namespace}}-{{.app}}' 25 + spec: 26 + project: default # TODO 27 + destination: 28 + name: in-cluster 29 + namespace: '{{.namespace}}' 30 + source: 31 + repoURL: 'oci://registry.127.0.0.1.sslip.io/{{.namespace}}/{{.app}}' 32 + targetRevision: local 33 + path: '.' 34 + syncPolicy: 35 + automated: 36 + prune: true 37 + selfHeal: true 38 + syncOptions: 39 + - CreateNamespace=true 40 + - ApplyOutOfSyncOnly=true 41 + - ServerSideApply=true