From c55c37f0aceae4c4167e350b5e4a897935846dd6 Mon Sep 17 00:00:00 2001 From: Lumpiasty Date: Sat, 14 Mar 2026 01:40:11 +0100 Subject: [PATCH] add ingress for garm --- apps/garm/ingress.yaml | 24 ++++++++++++++++++++++++ apps/garm/kustomization.yaml | 1 + 2 files changed, 25 insertions(+) create mode 100644 apps/garm/ingress.yaml diff --git a/apps/garm/ingress.yaml b/apps/garm/ingress.yaml new file mode 100644 index 0000000..8479226 --- /dev/null +++ b/apps/garm/ingress.yaml @@ -0,0 +1,24 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + namespace: garm + name: garm + annotations: + cert-manager.io/cluster-issuer: letsencrypt +spec: + ingressClassName: nginx-ingress + rules: + - host: garm.lumpiasty.xyz + http: + paths: + - backend: + service: + name: garm + port: + number: 9997 + path: / + pathType: Prefix + tls: + - hosts: + - garm.lumpiasty.xyz + secretName: garm-ingress diff --git a/apps/garm/kustomization.yaml b/apps/garm/kustomization.yaml index 3b59249..e7bacb3 100644 --- a/apps/garm/kustomization.yaml +++ b/apps/garm/kustomization.yaml @@ -5,6 +5,7 @@ resources: - pvc.yaml - configmap.yaml - service.yaml + - ingress.yaml - rbac.yaml - secret.yaml - deployment.yaml