Adding helm chart for deploying llama-stack

This commit is contained in:
Jamie Land 2025-03-18 11:32:40 -04:00
parent bfc79217a8
commit 1bc1f08037
14 changed files with 692 additions and 0 deletions

View file

@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "llama-stack.fullname" . }}
labels:
{{- include "llama-stack.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: llama-stack
selector:
{{- include "llama-stack.selectorLabels" . | nindent 4 }}