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

feat(helm): add initial Helm chart for RustDesk server deployment

这个提交包含在:
rohow
2025-07-17 22:49:14 +08:00
未验证
父节点 78cd5a9d84
当前提交 2c709507a9
修改 7 个文件,包含 230 行新增7 行删除
@@ -14,12 +14,17 @@ spec:
labels:
app: "{{ .Release.Name }}-{{ .Chart.Name }}"
spec:
{{- if not (empty .Values.nodeSelector) }}
nodeSelector: {{- toYaml .Values.nodeSelector | nindent 8 }}
{{- if .Values.nodeSelector }}
nodeSelector:
{{- toYaml .Values.nodeSelector | nindent 8 }}
{{- end }}
{{- if not (empty .Values.affinity) }}
affinity: {{- toYaml .Values.affinity | nindent 8 }}
{{- if .Values.affinity }}
affinity:
{{- toYaml .Values.affinity | nindent 8 }}
{{- end }}
{{ - if .Values.hostNetwork }}
hostNetwork: true
{{ - end }}
containers:
- name: "{{ .Release.Name }}-{{ .Chart.Name }}"
image: "{{ .Values.image.name }}:v{{ .Chart.AppVersion }}"
@@ -60,9 +65,6 @@ spec:
- mountPath: /var/run/tailscale/tailscaled.sock
name: tailscale-socket
{{- end }}
{{- if .Values.hostNetwork }}
hostNetwork: true
{{- end }}
volumes:
{{- toYaml .Values.extraVolumes | nindent 8 }}
{{- if .Values.derp.verify_clients }}