From eed88fe23321b0e40fb54cdd2531f22619ad2af8 Mon Sep 17 00:00:00 2001 From: Danijel Simeunovic Date: Sun, 8 Feb 2026 23:03:16 +0100 Subject: [PATCH] test apps --- argo/apps/bff.yaml | 26 ++++++++++++++++++++++++++ argo/apps/distr.yaml | 26 ++++++++++++++++++++++++++ argo/apps/product.yaml | 26 ++++++++++++++++++++++++++ argo/apps/ui.yaml | 26 ++++++++++++++++++++++++++ argo/apps/vat.yaml | 26 ++++++++++++++++++++++++++ argo/workshop.yaml | 21 +++++++++++++++++++++ 6 files changed, 151 insertions(+) create mode 100644 argo/apps/bff.yaml create mode 100644 argo/apps/distr.yaml create mode 100644 argo/apps/product.yaml create mode 100644 argo/apps/ui.yaml create mode 100644 argo/apps/vat.yaml create mode 100644 argo/workshop.yaml diff --git a/argo/apps/bff.yaml b/argo/apps/bff.yaml new file mode 100644 index 0000000..afefcab --- /dev/null +++ b/argo/apps/bff.yaml @@ -0,0 +1,26 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: ws-bff + namespace: argocd + labels: + scope: workshop +spec: + project: default + source: + repoURL: https://github.com/snothub/potential-system + path: bff + helm: + releaseName: bff + valueFiles: + - values.yaml + ignoreMissingValueFiles: true + destination: + server: https://kubernetes.default.svc + namespace: kubews + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true diff --git a/argo/apps/distr.yaml b/argo/apps/distr.yaml new file mode 100644 index 0000000..a346f3e --- /dev/null +++ b/argo/apps/distr.yaml @@ -0,0 +1,26 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: ws-distr + namespace: argocd + labels: + scope: workshop +spec: + project: default + source: + repoURL: https://github.com/snothub/potential-system + path: distr + helm: + releaseName: distr + valueFiles: + - values.yaml + ignoreMissingValueFiles: true + destination: + server: https://kubernetes.default.svc + namespace: kubews + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true diff --git a/argo/apps/product.yaml b/argo/apps/product.yaml new file mode 100644 index 0000000..fcd511a --- /dev/null +++ b/argo/apps/product.yaml @@ -0,0 +1,26 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: ws-prod + namespace: argocd + labels: + scope: workshop +spec: + project: default + source: + repoURL: https://github.com/snothub/potential-system + path: products + helm: + releaseName: prod + valueFiles: + - values.yaml + ignoreMissingValueFiles: true + destination: + server: https://kubernetes.default.svc + namespace: kubews + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true diff --git a/argo/apps/ui.yaml b/argo/apps/ui.yaml new file mode 100644 index 0000000..cf98df2 --- /dev/null +++ b/argo/apps/ui.yaml @@ -0,0 +1,26 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: ws-ui + namespace: argocd + labels: + scope: workshop +spec: + project: default + source: + repoURL: https://github.com/snothub/potential-system + path: ui + helm: + releaseName: ui + valueFiles: + - values.yaml + ignoreMissingValueFiles: true + destination: + server: https://kubernetes.default.svc + namespace: kubews + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true diff --git a/argo/apps/vat.yaml b/argo/apps/vat.yaml new file mode 100644 index 0000000..2bdce6b --- /dev/null +++ b/argo/apps/vat.yaml @@ -0,0 +1,26 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: ws-vat + namespace: argocd + labels: + scope: workshop +spec: + project: default + source: + repoURL: https://github.com/snothub/potential-system + path: vat + helm: + releaseName: vat + valueFiles: + - values.yaml + ignoreMissingValueFiles: true + destination: + server: https://kubernetes.default.svc + namespace: kubews + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true diff --git a/argo/workshop.yaml b/argo/workshop.yaml new file mode 100644 index 0000000..77016ce --- /dev/null +++ b/argo/workshop.yaml @@ -0,0 +1,21 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: app-of-apps + namespace: argocd + labels: + scope: workshop +spec: + project: default + source: + repoURL: https://github.com/snothub/psychic-octo-eureka + path: argo/apps + destination: + server: https://kubernetes.default.svc + namespace: kubews + syncPolicy: + automated: + prune: true + selfHeal: true + syncOptions: + - CreateNamespace=true