mirror of
https://github.com/outbackdingo/homelab-v.git
synced 2026-08-25 14:53:19 +00:00
feat(argocd): Adding ArgoCD
This commit is contained in:
@@ -12,4 +12,4 @@ spec:
|
||||
- name: plex
|
||||
port: 32400
|
||||
tls:
|
||||
certResolver: letsencrypt
|
||||
certResolver: letsencrypt
|
||||
|
||||
@@ -14,7 +14,7 @@ providers:
|
||||
allowCrossNamespace: true
|
||||
|
||||
additionalArguments:
|
||||
- "--log.level=DEBUG"
|
||||
- "--log.level=ERROR"
|
||||
- "--api.insecure"
|
||||
|
||||
persistence:
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: argocd-cmd-params-cm
|
||||
data:
|
||||
server.insecure: "true"
|
||||
@@ -0,0 +1,24 @@
|
||||
apiVersion: traefik.containo.us/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: argocd-server
|
||||
namespace: argocd
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
routes:
|
||||
- kind: Rule
|
||||
match: Host(`argocd.stonegarden.dev`)
|
||||
priority: 10
|
||||
services:
|
||||
- name: argocd-server
|
||||
port: 80
|
||||
- kind: Rule
|
||||
match: Host(`argocd.stonegarden.dev`) && Headers(`Content-Type`, `application/grpc`)
|
||||
priority: 11
|
||||
services:
|
||||
- name: argocd-server
|
||||
port: 80
|
||||
scheme: h2c
|
||||
tls:
|
||||
certResolver: letsencrypt
|
||||
@@ -0,0 +1,13 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: argocd
|
||||
|
||||
resources:
|
||||
- namespace.yaml
|
||||
- https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
|
||||
- ingress.yaml
|
||||
|
||||
# Let Traefik manage TLS-termination
|
||||
patchesStrategicMerge:
|
||||
- config/argocd-cmd-params-cm-patch.yaml
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: argocd
|
||||
@@ -5,4 +5,4 @@ namespace: metallb-system
|
||||
|
||||
resources:
|
||||
- github.com/metallb/metallb/config/native?ref=v0.13.7
|
||||
- configuration.yml
|
||||
- configuration.yaml
|
||||
Reference in New Issue
Block a user