add ingres

This commit is contained in:
Ashwin Bharambe 2025-06-02 13:06:44 -07:00
parent 697338ec57
commit f427e3092f
2 changed files with 13 additions and 0 deletions

View file

@ -27,3 +27,4 @@ kubectl create configmap llama-stack-config --from-file=stack_run_config.yaml \
kubectl apply -f stack-configmap.yaml kubectl apply -f stack-configmap.yaml
envsubst < ./stack-k8s.yaml.template | kubectl apply -f - envsubst < ./stack-k8s.yaml.template | kubectl apply -f -
envsubst < ./ingress-k8s.yaml.template | kubectl apply -f -

View file

@ -0,0 +1,12 @@
apiVersion: v1
kind: Service
metadata:
name: llama-stack-service
spec:
type: LoadBalancer
selector:
app.kubernetes.io/name: llama-stack
ports:
- port: 8321
targetPort: 8321
protocol: TCP