Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
ca74acb
feat: select core apps using label selector
merll Jan 23, 2026
3125de3
feat: add label to team gitops applications
merll Jan 23, 2026
7e81f05
refactor: replaced constant
merll Jan 23, 2026
b9a5527
feat: implemented gitops apps
merll Jan 23, 2026
99777f5
refactor: use dependency injection for tests
merll Jan 27, 2026
7ea67ba
feat: check on directory
merll Jan 27, 2026
2ea06b4
fix: always include parameter
merll Jan 27, 2026
3174291
test: added unit tests for new functionality
merll Jan 27, 2026
21d7ea5
feat: include gitops application in run
merll Jan 27, 2026
f51f37b
refactor: merge argocd manifest generation and add finalizers
merll Jan 29, 2026
65880b6
refactor: reuse apply function for creating gitops app
merll Jan 29, 2026
8de697e
fix: do not fail if directory is missing
merll Jan 29, 2026
7374133
Merge branch 'main'
merll Jan 29, 2026
4e0f288
fix: updated network policy for ArgoCD to access Gitea
merll Jan 29, 2026
0f3daef
fix: added credentials for internal Git access
merll Jan 29, 2026
8618784
fix: info log output
merll Jan 29, 2026
b63588c
fix: delete objects directly
merll Jan 29, 2026
b12f1eb
Merge branch 'main' into APL-1420-rebase
svcAPLBot Jan 29, 2026
d64c285
Merge branch 'main' into APL-1420-rebase
svcAPLBot Jan 29, 2026
0ccc317
Merge branch 'main' into APL-1420-rebase
svcAPLBot Jan 29, 2026
8c29e4b
Merge branch 'main' into APL-1420-rebase
svcAPLBot Jan 29, 2026
8788243
Merge branch 'main' into APL-1420-rebase
svcAPLBot Jan 30, 2026
58cb125
Merge branch 'main' into APL-1420-rebase
svcAPLBot Jan 30, 2026
5a6b9c7
Merge branch 'main' into APL-1420-rebase
svcAPLBot Jan 30, 2026
e093ed6
Merge branch 'main' into APL-1420-rebase
svcAPLBot Jan 30, 2026
969566a
Merge branch 'main' into APL-1420-rebase
svcAPLBot Jan 30, 2026
3a28d10
Merge branch 'main' into APL-1420-rebase
svcAPLBot Jan 30, 2026
5053ceb
refactor: split up applyGitOpsApps
merll Jan 30, 2026
e315415
refactor: moved apps diff calculation to separate function
merll Jan 30, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@ spec:
- namespaceSelector:
matchLabels:
name: apl-operator
# Allow ArgoCD GitOps access
- from:
- namespaceSelector:
matchLabels:
name: argocd
podSelector:
matchLabels:
app.kubernetes.io/name: argocd-repo-server
# Allow APL API access
- from:
- namespaceSelector:
Expand Down
5 changes: 2 additions & 3 deletions charts/team-ns/templates/argocd/argocd-gitops.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{{- $v := .Values }}
{{- $a := $v.apps.argocd }}
{{- if $a.enabled }}
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: team-{{ $v.teamId }}-values-gitops
namespace: argocd
labels:
otomi.io/app: team-gitops
finalizers:
- resources-finalizer.argocd.argoproj.io
spec:
Expand Down Expand Up @@ -40,4 +40,3 @@ spec:
# maxDuration - Max retry backoff duration. Input needs to be a duration (e.g. 2m, 1h) (default 3m0s)
duration: 10s
factor: 2
{{- end }}
Loading
Loading