initial bootstrap: argocd, metallb, envoy-gateway, nfs-provisioner
This commit is contained in:
19
manifests/argocd/httproute.yaml
Normal file
19
manifests/argocd/httproute.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
apiVersion: gateway.networking.k8s.io/v1
|
||||
kind: HTTPRoute
|
||||
metadata:
|
||||
name: argocd
|
||||
namespace: argocd
|
||||
spec:
|
||||
parentRefs:
|
||||
- name: envoy-gateway
|
||||
namespace: envoy-gateway-system
|
||||
hostnames:
|
||||
- "argocd.fireflylab.local"
|
||||
rules:
|
||||
- matches:
|
||||
- path:
|
||||
type: PathPrefix
|
||||
value: /
|
||||
backendRefs:
|
||||
- name: argocd-server
|
||||
port: 80
|
||||
23
manifests/argocd/values.yaml
Normal file
23
manifests/argocd/values.yaml
Normal file
@@ -0,0 +1,23 @@
|
||||
nameOverride: argocd
|
||||
|
||||
crds:
|
||||
install: true
|
||||
keep: true
|
||||
annotations:
|
||||
argocd.argoproj.io/sync-options: ServerSideApply=true
|
||||
|
||||
global:
|
||||
domain: argocd.fireflylab.local
|
||||
image:
|
||||
repository: quay.io/argoproj/argocd
|
||||
pullPolicy: IfNotPresent
|
||||
logging:
|
||||
format: text
|
||||
level: info
|
||||
|
||||
configs:
|
||||
params:
|
||||
server.insecure: true # TLS terminated at Envoy Gateway
|
||||
|
||||
server:
|
||||
replicas: 1
|
||||
Reference in New Issue
Block a user