1
0
镜像自地址 https://github.com/devcm-repo/helm-charts.git 已同步 2026-06-06 05:51:06 +00:00

feat(aiapi): add new Helm chart for New API and CLIProxyAPI deployment

这个提交包含在:
rohow
2026-05-01 22:20:19 +08:00
未验证
父节点 d58119bd09
当前提交 1df6d4737b
修改 12 个文件,包含 675 行新增0 行删除
+43
查看文件
@@ -0,0 +1,43 @@
apiVersion: v1
kind: Service
metadata:
name: "{{ include "aiapi.fullname" . }}-newapi"
labels:
{{- include "aiapi.labels" . | nindent 4 }}
app.kubernetes.io/component: newapi
{{- with .Values.newapi.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.newapi.service.type }}
selector:
{{- include "aiapi.selectorLabels" . | nindent 4 }}
app.kubernetes.io/component: newapi
ports:
- name: http
port: {{ .Values.newapi.service.port }}
targetPort: http
protocol: TCP
---
apiVersion: v1
kind: Service
metadata:
name: "{{ include "aiapi.fullname" . }}-cliproxyapi"
labels:
{{- include "aiapi.labels" . | nindent 4 }}
app.kubernetes.io/component: cliproxyapi
{{- with .Values.cliproxyapi.service.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.cliproxyapi.service.type }}
selector:
{{- include "aiapi.selectorLabels" . | nindent 4 }}
app.kubernetes.io/component: cliproxyapi
ports:
- name: http
port: {{ .Values.cliproxyapi.service.port }}
targetPort: http
protocol: TCP