feat(argo): add individual listener

This commit is contained in:
Peter 2025-03-26 08:03:25 +01:00
parent c7bc2736de
commit 73bb74ece2
Signed by: prskr
GPG key ID: F56BED6903BC5E37
3 changed files with 63 additions and 16 deletions

View file

@ -31,3 +31,14 @@ helmCharts:
valuesFile: config/values.argo-cd.yaml valuesFile: config/values.argo-cd.yaml
apiVersions: apiVersions:
- monitoring.coreos.com/v1 - monitoring.coreos.com/v1
patches:
- target:
group: ""
version: v1
kind: Service
name: argo-cd-argocd-server
patch: |
- op: add
path: /spec/ports/0/appProtocol
value: kubernetes.io/h2c

View file

@ -5,17 +5,17 @@ metadata:
name: argo-cd-http name: argo-cd-http
spec: spec:
parentRefs: parentRefs:
- name: contour - name: contour
sectionName: http sectionName: http
namespace: projectcontour namespace: projectcontour
hostnames: hostnames:
- argocd.icb4dc0.de - argocd.icb4dc0.de
rules: rules:
- filters: - filters:
- type: RequestRedirect - type: RequestRedirect
requestRedirect: requestRedirect:
scheme: https scheme: https
statusCode: 301 statusCode: 301
--- ---
apiVersion: gateway.networking.k8s.io/v1 apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute kind: HTTPRoute
@ -23,12 +23,33 @@ metadata:
name: argo-cd-https name: argo-cd-https
spec: spec:
parentRefs: parentRefs:
- name: contour - name: contour
sectionName: https sectionName: argocd
namespace: projectcontour namespace: projectcontour
hostnames: hostnames:
- argocd.icb4dc0.de - argocd.icb4dc0.de
rules: rules:
- backendRefs: - backendRefs:
- name: argo-cd-argocd-server - name: argo-cd-argocd-server
port: 443 port: 443
---
apiVersion: gateway.networking.k8s.io/v1
kind: GRPCRoute
metadata:
name: argo-cd-grpc
spec:
parentRefs:
- name: contour
sectionName: argocd
namespace: projectcontour
hostnames:
- argocd.icb4dc0.de
rules:
- matches:
- headers:
- name: Content-Type
type: RegularExpression
value: .*application/grpc.*
backendRefs:
- name: argo-cd-argocd-server
port: 80

View file

@ -52,6 +52,21 @@ spec:
certificateRefs: certificateRefs:
- name: forgejo-tls - name: forgejo-tls
- name: argocd
hostname: "argocd.icb4dc0.de"
port: 443
protocol: HTTPS
allowedRoutes:
namespaces:
from: Selector
selector:
matchLabels:
kubernetes.io/metadata.name: argo-system
tls:
mode: Terminate
certificateRefs:
- name: argocd-tls
- name: ssh - name: ssh
protocol: TCP protocol: TCP
port: 22 port: 22