Added nodeSelectors for allocating GPU nodePools in the cloud and configured volumes for WebUI

This commit is contained in:
braveokafor 2023-12-28 16:28:09 +01:00
parent 02ce0c47f4
commit b42b2e7890
6 changed files with 64 additions and 13 deletions

View file

@ -0,0 +1,12 @@
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
labels:
app: ollama-webui
name: ollama-webui-pvc
namespace: {{ .Values.namespace }}
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: {{ .Values.webui.volumeSize }}