init
This commit is contained in:
10
manifests/argo/argo-cmd-params.yaml
Normal file
10
manifests/argo/argo-cmd-params.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
# https://kubernetes.io/docs/concepts/configuration/configmap/
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: argocd-cmd-params-cm
|
||||
namespace: argocd
|
||||
data:
|
||||
server.insecure: true
|
||||
---
|
||||
|
||||
0
manifests/argo/argocd.yaml
Normal file
0
manifests/argo/argocd.yaml
Normal file
12
manifests/argo/cert.yaml
Normal file
12
manifests/argo/cert.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
apiVersion: cert-manager.io/v1
|
||||
kind: Certificate
|
||||
metadata:
|
||||
name: argo-tls
|
||||
namespace: argocd
|
||||
spec:
|
||||
secretName: argo-tls
|
||||
issuerRef:
|
||||
name: letsencrypt-prod
|
||||
kind: ClusterIssuer
|
||||
dnsNames:
|
||||
- argo.milasholsting.dk
|
||||
27
manifests/argo/ingress.yaml
Normal file
27
manifests/argo/ingress.yaml
Normal file
@@ -0,0 +1,27 @@
|
||||
apiVersion: traefik.io/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: argocd-server
|
||||
namespace: argocd
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
routes:
|
||||
- kind: Rule
|
||||
match: Host(`argo.milasholsting.dk`)
|
||||
priority: 10
|
||||
services:
|
||||
- name: argocd-server
|
||||
port: 80
|
||||
- kind: Rule
|
||||
match: Host(`argo.milasholsting.dk`) && Header(`Content-Type`, `application/grpc`)
|
||||
priority: 11
|
||||
services:
|
||||
- name: argocd-server
|
||||
port: 80
|
||||
scheme: h2c
|
||||
tls:
|
||||
secretName: argo-tls
|
||||
domains:
|
||||
- main: argo.milasholsting.dk
|
||||
|
||||
33375
manifests/argo/install.yaml
Normal file
33375
manifests/argo/install.yaml
Normal file
File diff suppressed because it is too large
Load Diff
8
manifests/argo/kustomization.yaml
Normal file
8
manifests/argo/kustomization.yaml
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace: argocd
|
||||
|
||||
resources:
|
||||
- ./install.yaml
|
||||
- ./namespace.yaml
|
||||
- ./ingress.yaml
|
||||
- ./cert.yaml
|
||||
- ./argo-cmd-params.yaml
|
||||
4
manifests/argo/namespace.yaml
Normal file
4
manifests/argo/namespace.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
apiVersion: v1
|
||||
kind: Namespace
|
||||
metadata:
|
||||
name: argocd
|
||||
Reference in New Issue
Block a user