mirror of https://github.com/Mai-with-u/MaiBot.git
fix: 修正values内的资源限制默认值
parent
1eb5c4c56b
commit
3624e5e63d
|
|
@ -14,16 +14,10 @@ adapter:
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
pullSecrets: [ ]
|
pullSecrets: [ ]
|
||||||
|
|
||||||
resources:
|
resources: { }
|
||||||
limits:
|
|
||||||
cpu:
|
|
||||||
memory:
|
|
||||||
requests:
|
|
||||||
cpu:
|
|
||||||
memory:
|
|
||||||
|
|
||||||
nodeSelector: {}
|
nodeSelector: { }
|
||||||
tolerations: []
|
tolerations: [ ]
|
||||||
|
|
||||||
# 配置adapter的napcat websocket service
|
# 配置adapter的napcat websocket service
|
||||||
# adapter会启动一个websocket服务端,用于与napcat通信
|
# adapter会启动一个websocket服务端,用于与napcat通信
|
||||||
|
|
@ -49,16 +43,10 @@ core:
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
pullSecrets: [ ]
|
pullSecrets: [ ]
|
||||||
|
|
||||||
resources:
|
resources: { }
|
||||||
limits:
|
|
||||||
cpu:
|
|
||||||
memory:
|
|
||||||
requests:
|
|
||||||
cpu:
|
|
||||||
memory:
|
|
||||||
|
|
||||||
nodeSelector: {}
|
nodeSelector: { }
|
||||||
tolerations: []
|
tolerations: [ ]
|
||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
storageClass:
|
storageClass:
|
||||||
|
|
@ -82,16 +70,10 @@ statistics_dashboard:
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
pullSecrets: [ ]
|
pullSecrets: [ ]
|
||||||
|
|
||||||
resources:
|
resources: { }
|
||||||
limits:
|
|
||||||
cpu:
|
|
||||||
memory:
|
|
||||||
requests:
|
|
||||||
cpu:
|
|
||||||
memory:
|
|
||||||
|
|
||||||
nodeSelector: {}
|
nodeSelector: { }
|
||||||
tolerations: []
|
tolerations: [ ]
|
||||||
|
|
||||||
service:
|
service:
|
||||||
type: ClusterIP # ClusterIP / NodePort 指定NodePort可以将内网的服务端口映射到物理节点的端口
|
type: ClusterIP # ClusterIP / NodePort 指定NodePort可以将内网的服务端口映射到物理节点的端口
|
||||||
|
|
@ -128,16 +110,10 @@ napcat:
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
pullSecrets: [ ]
|
pullSecrets: [ ]
|
||||||
|
|
||||||
resources:
|
resources: { }
|
||||||
limits:
|
|
||||||
cpu:
|
|
||||||
memory:
|
|
||||||
requests:
|
|
||||||
cpu:
|
|
||||||
memory:
|
|
||||||
|
|
||||||
nodeSelector: {}
|
nodeSelector: { }
|
||||||
tolerations: []
|
tolerations: [ ]
|
||||||
|
|
||||||
# napcat进程的权限,默认不是特权用户
|
# napcat进程的权限,默认不是特权用户
|
||||||
permission:
|
permission:
|
||||||
|
|
@ -180,16 +156,10 @@ sqlite_web:
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
pullSecrets: [ ]
|
pullSecrets: [ ]
|
||||||
|
|
||||||
resources:
|
resources: { }
|
||||||
limits:
|
|
||||||
cpu:
|
|
||||||
memory:
|
|
||||||
requests:
|
|
||||||
cpu:
|
|
||||||
memory:
|
|
||||||
|
|
||||||
nodeSelector: {}
|
nodeSelector: { }
|
||||||
tolerations: []
|
tolerations: [ ]
|
||||||
|
|
||||||
# 配置sqlite-web面板的service
|
# 配置sqlite-web面板的service
|
||||||
# !!!默认不使用NodePort。如果使用NodePort暴露到公网,请自行使用中间件鉴权!!!
|
# !!!默认不使用NodePort。如果使用NodePort暴露到公网,请自行使用中间件鉴权!!!
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue