Compare commits

..

3 Commits

Author SHA1 Message Date
Gitea Actions Bot
20c1fc14cd Auto-update README with current k8s applications
All checks were successful
Terraform / Terraform (pull_request) Successful in 19s
Generated by CI/CD workflow on 2026-03-07 01:02:43

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-03-07 01:02:43 +00:00
0c2ff6cc3b fix(ollama): add runtimeClassName nvidia to enable GPU usage
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 9s
Check with kubeconform / lint (push) Successful in 7s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-03-07 01:02:18 +00:00
79d991da1e feat(ollama): add local persistent volume for model storage on uk-desktop
All checks were successful
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 8s
Check with kubeconform / lint (push) Successful in 6s
Auto-update README / Generate README and Create MR (push) Successful in 6s
2026-03-07 00:57:13 +00:00
4 changed files with 39 additions and 1 deletions

View File

@@ -3,6 +3,7 @@ kind: Kustomization
resources:
- external-secrets.yaml
- local-pv.yaml
helmCharts:
- name: ollama
@@ -18,4 +19,7 @@ helmCharts:
releaseName: openweb-ui
namespace: ollama
valuesFile: openweb-ui-values.yaml
includeCRDs: true
includeCRDs: true
patchesStrategicMerge:
- patch-runtimeclass.yaml

View File

@@ -0,0 +1,22 @@
apiVersion: v1
kind: PersistentVolume
metadata:
name: ollama-local-pv
spec:
capacity:
storage: 100Gi
volumeMode: Filesystem
accessModes:
- ReadWriteOnce
persistentVolumeReclaimPolicy: Retain
storageClassName: local-path
local:
path: /var/lib/ollama
nodeAffinity:
required:
nodeSelectorTerms:
- matchExpressions:
- key: kubernetes.io/hostname
operator: In
values:
- uk-desktop.tail2fe2d.ts.net

View File

@@ -16,3 +16,7 @@ ollama:
enabled: true
type: 'nvidia'
number: 1
persistentVolume:
enabled: true
size: 100Gi
storageClass: "local-path"

View File

@@ -0,0 +1,8 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: ollama
spec:
template:
spec:
runtimeClassName: nvidia