init vllm/0.0.11

This commit is contained in:
ChanghoWoo
2025-02-27 04:44:13 +00:00
parent 4a90238056
commit 1e33c0cb92
17 changed files with 874 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
{{- if .Values.routerSpec.enableRouter -}}
apiVersion: v1
kind: Service
metadata:
name: "{{ .Release.Name }}-router-service"
namespace: {{ .Release.Namespace }}
labels:
{{- include "chart.routerLabels" . | nindent 4 }}
spec:
type: ClusterIP
ports:
- name: "router-sport"
port: {{ .Values.routerSpec.servicePort }}
targetPort: {{ .Values.routerSpec.containerPort }}
protocol: TCP
selector:
{{- include "chart.routerLabels" . | nindent 4 }}
{{- end }}