fix(bootstrap): undo ingress split; that's only for SSL termination at the nginx controller

This commit is contained in:
David Landry 2024-05-08 00:14:58 -04:00
parent 66fe180441
commit 801bd61352

View file

@ -1,30 +1,25 @@
apiVersion: networking.k8s.io/v1 # apiVersion: networking.k8s.io/v1
kind: Ingress # kind: Ingress
metadata: # metadata:
annotations: # annotations:
cert-manager.io/cluster-issuer: letsencrypt-issuer # cert-manager.io/cluster-issuer: letsencrypt-issuer
nginx.ingress.kubernetes.io/ssl-passthrough: "true" # nginx.ingress.kubernetes.io/backend-protocol: "GRPC"
nginx.ingress.kubernetes.io/backend-protocol: "GRPC" # name: argocd-server-grpc
# gethomepage.dev/enabled: "true" # namespace: argocd
# gethomepage.dev/name: "ArgoCD" # spec:
# gethomepage.dev/description: "Manage k8s applications" # ingressClassName: nginx
# gethomepage.dev/group: "System" # rules:
name: argocd-server-grpc # - host: grpc.argocd.int.nc.landry.land
namespace: argocd # http:
spec: # paths:
ingressClassName: nginx # - path: /
rules: # backend:
- host: grpc.argocd.int.nc.landry.land # service:
http: # name: argogrpc
paths: # port:
- path: / # number: 443
backend: # pathType: Prefix
service: # tls:
name: argogrpc # - hosts:
port: # - grpc.argocd.int.nc.landry.land
number: 443 # secretName: argocd-grpc-tls
pathType: Prefix
tls:
- hosts:
- grpc.argocd.int.nc.landry.land
secretName: argocd-grpc-tls