Added support for kubernetes, kustomize, helm

This commit is contained in:
Daniele Viti 2023-12-24 16:34:33 +01:00
parent 7063f00b71
commit d14d26bdfd
17 changed files with 290 additions and 0 deletions

View file

@ -0,0 +1,20 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ollama-webui-ingress
namespace: ollama-namespace
#annotations:
# Use appropriate annotations for your Ingress controller, e.g., for NGINX:
# nginx.ingress.kubernetes.io/rewrite-target: /
spec:
rules:
- host: ollama.minikube.local
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: ollama-webui-service
port:
number: 8080