diff --git a/argocd/manifests/ollama/kustomization.yaml b/argocd/manifests/ollama/kustomization.yaml index 75add74..78500d4 100644 --- a/argocd/manifests/ollama/kustomization.yaml +++ b/argocd/manifests/ollama/kustomization.yaml @@ -7,6 +7,7 @@ resources: - pvc.yaml - deployment.yaml - service.yaml + - service-nodeport.yaml - ingress-tailscale.yaml images: diff --git a/argocd/manifests/ollama/service-nodeport.yaml b/argocd/manifests/ollama/service-nodeport.yaml new file mode 100644 index 0000000..ab2a2cf --- /dev/null +++ b/argocd/manifests/ollama/service-nodeport.yaml @@ -0,0 +1,16 @@ +--- +# Local subnet access for non-tailnet devices +apiVersion: v1 +kind: Service +metadata: + name: ollama-nodeport + namespace: ollama +spec: + type: NodePort + selector: + app: ollama + ports: + - name: http + port: 11434 + targetPort: 11434 + nodePort: 30434