about summary refs log tree commit diff
path: root/tools/argocd/templates/deployment.yaml
diff options
context:
space:
mode:
authormakefunstuff <[email protected]>2024-06-28 17:54:07 +0200
committermakefunstuff <[email protected]>2024-06-28 17:54:07 +0200
commitb427ae29bd6d0abc447d70fe082ceddfcc42a10e (patch)
tree0971f5c20c64f9ba2fa81b753e200ffcf7db56c9 /tools/argocd/templates/deployment.yaml
parent8c6eeb9045125aa3b0666deccc3815e78112ea16 (diff)
downloadk3s-lab-b427ae29bd6d0abc447d70fe082ceddfcc42a10e.tar.gz
it works!!!!!1111
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
-