Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding ks8 #528

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions manifests/apps/ollama/HelmRelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,26 @@ spec:
- nomic-embed-text
- codestral:latest
ingress:
enabled: false
className: "nginx"
enabled: true
className: "fwb-ingress-controller"
annotations: {
"fortiweb-ip" : "10.0.0.4",
"fortiweb-login" : "fortiweb-login-secret",
"fortiweb-port": "8443",
"fortiweb-ctrl-log" : "disable",
"virtual-server-ip" : "10.0.0.5",
"virtual-server-addr-type" : "ipv4",
"virtual-server-interface" : "port1",
"server-policy-web-protection-profile" : "Inline Standard Protection",
"server-policy-https-service" : "HTTPS",
"server-policy-http-service" : "HTTP",
"server-policy-syn-cookie" : "enable",
"server-policy-http-to-https" : "disable"
}
hosts:
- host: www.bankexample.com
paths:
- path: /
- path: /api
pathType: Prefix
persistentVolume:
enabled: true
Expand Down
7 changes: 3 additions & 4 deletions manifests/apps/ollama/Ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@ metadata:
spec:
ingressClassName: nginx-internal
rules:
- host: www.bankexample.com
http:
- http:
paths:
- backend:
service:
name: fos
name: ollama
port:
number: 8001
number: 11434
path: /
pathType: Prefix
Loading