Skip to content

Commit 604ccf5

Browse files
committed
Add ArgoCD deployment configurations for application controller, server, repo server, and dex server; update kustomization.yaml to include new deployments
1 parent 37a4c99 commit 604ccf5

File tree

5 files changed

+46
-1
lines changed

5 files changed

+46
-1
lines changed
File renamed without changes.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: argocd-dex-server
5+
spec:
6+
template:
7+
spec:
8+
containers:
9+
- name: dex
10+
resources:
11+
requests:
12+
memory: "100Mi"
13+
limits:
14+
memory: "150Mi"
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: argocd-repo-server
5+
spec:
6+
template:
7+
spec:
8+
containers:
9+
- name: argocd-repo-server
10+
resources:
11+
requests:
12+
memory: "100Mi"
13+
limits:
14+
memory: "150Mi"
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apiVersion: apps/v1
2+
kind: Deployment
3+
metadata:
4+
name: argocd-server
5+
spec:
6+
template:
7+
spec:
8+
containers:
9+
- name: argocd-server
10+
resources:
11+
requests:
12+
memory: "100Mi"
13+
limits:
14+
memory: "150Mi"

infra/argocd/kustomization.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ resources:
1212

1313
patches:
1414
- path: argocd-rbac-cm.yaml
15-
- path: argocd-application-controller.yaml
15+
- path: deployment-application-controller.yaml
16+
- path: deployment-argocd-server.yaml
17+
- path: deployment-argocd-repo-server.yaml
18+
- path: deployment-argocd-dex-server.yaml
1619
- path: argocd-cmd-params-cm.yaml
1720
target:
1821
version: v1

0 commit comments

Comments
 (0)