Skip to content

Commit 5153c4b

Browse files
fix(clusters): update dev bootstrap to correct repository
Fix dev bootstrap.yaml: - Change repoURL from app-release.git to app-poly-gitops-k8s.git - Update path from platform/core/cluster-bootstrap to clusters/dev - Add labels, finalizers, project, syncPolicy - Use destination.name: in-cluster instead of server URL Now consistent with tst/stg/prd bootstrap configurations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent a55e29a commit 5153c4b

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

clusters/dev/bootstrap.yaml

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
1-
# clusters/dev/bootstrap.yaml
21
apiVersion: argoproj.io/v1alpha1
32
kind: Application
43
metadata:
54
name: root-app-dev
65
namespace: argocd
6+
labels:
7+
tier: argocd
8+
finalizers:
9+
- resources-finalizer.argocd.argoproj.io
710
spec:
11+
destination:
12+
namespace: argocd
13+
name: in-cluster
14+
project: default
815
source:
9-
repoURL: https://github.com/justgithubaccount/app-release.git
10-
path: platform/core/cluster-bootstrap
16+
repoURL: https://github.com/justgithubaccount/app-poly-gitops-k8s.git
17+
path: clusters/dev
1118
targetRevision: main
12-
destination:
13-
server: https://kubernetes.default.svc
14-
namespace: argocd
19+
syncPolicy:
20+
automated:
21+
allowEmpty: true
22+
selfHeal: true
23+
prune: true
24+
syncOptions:
25+
- Validate=true
26+
- CreateNamespace=true
27+
- PruneLast=true

0 commit comments

Comments
 (0)