fix: 修正资源限制的类型问题

This commit is contained in:
zhangxinhui02
2025-08-20 02:52:18 +08:00
parent 0f82ebf53e
commit 93778370bf
3 changed files with 3 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ spec:
- containerPort: 8095
name: napcat-ws
protocol: TCP
resources: {{ .Values.adapter.resources }}
resources: {{ .Values.adapter.resources | default nil }}
volumeMounts:
- mountPath: /adapters/data
name: data

View File

@@ -35,7 +35,7 @@ spec:
- containerPort: 8000
name: adapter-ws
protocol: TCP
resources: {{ .Values.core.resources }}
resources: {{ .Values.core.resources | default nil }}
volumeMounts:
- mountPath: /MaiMBot/data
name: data

View File

@@ -42,7 +42,7 @@ spec:
- containerPort: 6099
name: webui
protocol: TCP
resources: {{ .Values.napcat.resources }}
resources: {{ .Values.napcat.resources | default nil }}
volumeMounts:
- mountPath: /app/napcat/config
name: napcat