diff --git a/gitops/core/applications/front-users-fr.yaml b/gitops/core/applications/front-users-fr.yaml index 5704253..75c1fb7 100644 --- a/gitops/core/applications/front-users-fr.yaml +++ b/gitops/core/applications/front-users-fr.yaml @@ -3,6 +3,9 @@ kind: Application metadata: name: front-users-fr namespace: openshift-gitops + labels: + app: front-users-fr + type: frontend spec: destination: namespace: demo diff --git a/gitops/core/applications/front-users-pt.yaml b/gitops/core/applications/front-users-pt.yaml new file mode 100644 index 0000000..d348729 --- /dev/null +++ b/gitops/core/applications/front-users-pt.yaml @@ -0,0 +1,24 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: front-users-pt + namespace: openshift-gitops + labels: + app: front-users-pt + type: frontend +spec: + destination: + namespace: demo + server: "https://kubernetes.default.svc" + source: + path: apps/front-users-pt/gitops + repoURL: "https://github.com/dbgjerez/workshop-cdc" + targetRevision: main + helm: + valueFiles: + - 'dev.values.yaml' + project: default + syncPolicy: + automated: + prune: true + selfHeal: false diff --git a/gitops/core/applications/front-users.yaml b/gitops/core/applications/front-users.yaml new file mode 100644 index 0000000..7386090 --- /dev/null +++ b/gitops/core/applications/front-users.yaml @@ -0,0 +1,24 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: front-users + namespace: openshift-gitops + labels: + app: front-users + type: frontend +spec: + destination: + namespace: demo + server: "https://kubernetes.default.svc" + source: + path: apps/front-users/gitops + repoURL: "https://github.com/dbgjerez/workshop-cdc" + targetRevision: main + helm: + valueFiles: + - 'dev.values.yaml' + project: default + syncPolicy: + automated: + prune: true + selfHeal: false