From 44cccb5f6b75c532aa6b097e2989d7581e78869e Mon Sep 17 00:00:00 2001 From: makefunstuff Date: Fri, 28 Jun 2024 13:30:53 +0300 Subject: proper refactoring --- tools/argocd/templates/deployment.yaml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tools/argocd/templates/deployment.yaml (limited to 'tools/argocd/templates/deployment.yaml') diff --git a/tools/argocd/templates/deployment.yaml b/tools/argocd/templates/deployment.yaml new file mode 100644 index 0000000..b2fa31e --- /dev/null +++ b/tools/argocd/templates/deployment.yaml @@ -0,0 +1,31 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: argocd +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: argocd-server + namespace: argocd +spec: + replicas: { { .Values.replicas "1" } } + 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-server + key: admin.password -- cgit 1.4.1-2-gfad0