[Git][root/k8s/fluxcd][main] feat(squid): add ing

yyvf22 pushed to branch main at Root / Kubernetes / FluxCD Commits: 3e50c9cf by yyvf at 2025-08-13T20:15:41-03:00 feat(squid): add ing - - - - - 2 changed files: - infrastructure/stage/kustomization.yaml - + infrastructure/stage/squid/ing.yaml Changes: ===================================== infrastructure/stage/kustomization.yaml ===================================== @@ -13,6 +13,7 @@ resources: - ./keycloak/ing.yaml - ../base/etcd-backup - ../base/squid + - ../squid/ing.yaml patches: - path: ./openbao/helmrelease.yaml target: ===================================== infrastructure/stage/squid/ing.yaml ===================================== @@ -0,0 +1,24 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: squid + namespace: squid + annotations: + cert-manager.io/cluster-issuer: letsencrypt-dns01 +spec: + ingressClassName: cilium + rules: + - host: squid.k8sstage.c3sl.ufpr.br + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: squid + port: + number: 3128 + tls: + - hosts: + - squid.k8sstage.c3sl.ufpr.br + secretName: squid-tls View it on GitLab: https://gitlab.c3sl.ufpr.br/root/k8s/fluxcd/-/commit/3e50c9cf0ffb6084d7e758e... -- View it on GitLab: https://gitlab.c3sl.ufpr.br/root/k8s/fluxcd/-/commit/3e50c9cf0ffb6084d7e758e... You're receiving this email because of your account on gitlab.c3sl.ufpr.br.
participantes (1)
-
yyvf22 (@yyvf22)