about summary refs log tree commit diff
path: root/tools/argocd/templates/deployment.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'tools/argocd/templates/deployment.yaml')
-rw-r--r--tools/argocd/templates/deployment.yaml32
1 files changed, 0 insertions, 32 deletions
diff --git a/tools/argocd/templates/deployment.yaml b/tools/argocd/templates/deployment.yaml
deleted file mode 100644
index e0daf82..0000000
--- a/tools/argocd/templates/deployment.yaml
+++ /dev/null
@@ -1,32 +0,0 @@
-apiVersion: v1
-kind: Namespace
-metadata:
-  name: argocd
----
-apiVersion: apps/v1
-kind: Deployment
-metadata:
-  name: argocd-server
-  namespace: argocd
-spec:
-  replicas: {{ .Values.replicas }}
-  selector:
-    matchLabels:
-      app: argocd-server
-  template:
-    metadata:
-      labels:
-        app: argocd-server
-    spec:
-      containers:
-        - name: argocd-server
-          image: argoproj/argocd:latest
-          ports:
-            - containerPort: 8080
-          env:
-            - name: ARGOCD_SERVER_ADMIN_PASSWORD
-              valueFrom:
-                secretKeyRef:
-                  name: argocd-secret
-                  key: admin.password
-