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 行删除
@@ -0,0 +1,82 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: "{{ include "aiapi.fullname" . }}-cliproxyapi"
labels:
{{- include "aiapi.labels" . | nindent 4 }}
app.kubernetes.io/component: cliproxyapi
spec:
replicas: {{ .Values.cliproxyapi.replicas }}
strategy:
type: Recreate
selector:
matchLabels:
{{- include "aiapi.selectorLabels" . | nindent 6 }}
app.kubernetes.io/component: cliproxyapi
template:
metadata:
{{- with .Values.podAnnotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
labels:
{{- include "aiapi.selectorLabels" . | nindent 8 }}
app.kubernetes.io/component: cliproxyapi
spec:
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: cliproxyapi
image: "{{ .Values.cliproxyapi.image.repository }}:{{ .Values.cliproxyapi.image.tag }}"
imagePullPolicy: {{ .Values.cliproxyapi.image.pullPolicy }}
ports:
- name: http
containerPort: {{ .Values.cliproxyapi.port }}
protocol: TCP
env:
- name: TZ
value: {{ .Values.tz | quote }}
readinessProbe:
tcpSocket:
port: http
livenessProbe:
tcpSocket:
port: http
{{- with .Values.cliproxyapi.resources }}
resources:
{{- toYaml . | nindent 12 }}
{{- end }}
volumeMounts:
- name: config
mountPath: /CLIProxyAPI/config.yaml
subPath: config.yaml
- name: data
mountPath: /root/.cli-proxy-api
subPath: auths
- name: data
mountPath: /CLIProxyAPI/logs
subPath: logs
volumes:
- name: config
secret:
secretName: "{{ include "aiapi.fullname" . }}"
items:
- key: cliproxyapi-config.yaml
path: config.yaml
- name: data
{{- if .Values.cliproxyapi.persistence.enabled }}
persistentVolumeClaim:
claimName: "{{ include "aiapi.fullname" . }}-cliproxyapi"
{{- else }}
emptyDir: {}
{{- end }}