From bb7ebb00d6370b0fe05ea298c5a74b7b94be4379 Mon Sep 17 00:00:00 2001 From: Marcus Noble Date: Sun, 5 Jul 2026 10:36:04 +0100 Subject: [PATCH] Added ollama as internal prox service Signed-off-by: Marcus Noble --- manifests/auth-proxy/internal-services.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/manifests/auth-proxy/internal-services.yaml b/manifests/auth-proxy/internal-services.yaml index a0b8cad..1b3fc91 100644 --- a/manifests/auth-proxy/internal-services.yaml +++ b/manifests/auth-proxy/internal-services.yaml @@ -100,3 +100,20 @@ spec: app: internal-proxy type: ClusterIP --- +apiVersion: v1 +kind: Service +metadata: + name: ollama + namespace: auth-proxy + labels: + app: internal-proxy +spec: + ports: + - name: http + port: 80 + protocol: TCP + targetPort: 8080 + selector: + app: internal-proxy + type: ClusterIP +---