diff --git a/helm-chart/templates/adapter-statefulset.yaml b/helm-chart/templates/adapter-statefulset.yaml index bd6f7b2f..1a7103f2 100644 --- a/helm-chart/templates/adapter-statefulset.yaml +++ b/helm-chart/templates/adapter-statefulset.yaml @@ -21,7 +21,7 @@ spec: env: - name: TZ value: Asia/Shanghai - image: {{ .Values.adapter.image.repository }}:{{ .Values.adapter.image.tag | default "main-20250922131146" }} + image: {{ .Values.adapter.image.repository | default "unclas/maimbot-adapter" }}:{{ .Values.adapter.image.tag | default "main-20250922131146" }} imagePullPolicy: {{ .Values.adapter.image.pullPolicy }} ports: - containerPort: 8095 diff --git a/helm-chart/templates/core-statefulset.yaml b/helm-chart/templates/core-statefulset.yaml index ec33c051..fa880c3b 100644 --- a/helm-chart/templates/core-statefulset.yaml +++ b/helm-chart/templates/core-statefulset.yaml @@ -29,7 +29,7 @@ spec: value: 99f08e0cab0190de853cb6af7d64d4de - name: PRIVACY_AGREE value: 9943b855e72199d0f5016ea39052f1b6 - image: {{ .Values.core.image.repository }}:{{ .Values.core.image.tag | default "tag-0.10.3-beta" }} + image: {{ .Values.core.image.repository | default "reg.mikumikumi.xyz/maibot/maibot" }}:{{ .Values.core.image.tag | default "tag-0.10.3-beta" }} imagePullPolicy: {{ .Values.core.image.pullPolicy }} ports: - containerPort: 8000 diff --git a/helm-chart/templates/napcat-statefulset.yaml b/helm-chart/templates/napcat-statefulset.yaml index 4b7830a0..11575026 100644 --- a/helm-chart/templates/napcat-statefulset.yaml +++ b/helm-chart/templates/napcat-statefulset.yaml @@ -26,7 +26,7 @@ spec: value: "{{ .Values.napcat.permission.uid }}" - name: TZ value: Asia/Shanghai - image: {{ .Values.napcat.image.repository }}:{{ .Values.napcat.image.tag | default "v4.8.116" }} + image: {{ .Values.napcat.image.repository | default "mlikiowa/napcat-docker" }}:{{ .Values.napcat.image.tag | default "v4.8.116" }} imagePullPolicy: {{ .Values.napcat.image.pullPolicy }} livenessProbe: failureThreshold: 3 diff --git a/helm-chart/templates/pre-adapter-cm-gen-job.yaml b/helm-chart/templates/pre-adapter-cm-gen-job.yaml index c87d1b61..59667a20 100644 --- a/helm-chart/templates/pre-adapter-cm-gen-job.yaml +++ b/helm-chart/templates/pre-adapter-cm-gen-job.yaml @@ -15,7 +15,7 @@ spec: restartPolicy: Never containers: - name: adapter-cm-generator - image: {{ .Values.adapter.cm_generator.image.repository }}:{{ .Values.adapter.cm_generator.image.tag | default "0.10.3-beta" }} + image: {{ .Values.adapter.cm_generator.image.repository | default "reg.mikumikumi.xyz/maibot/adapter-cm-generator" }}:{{ .Values.adapter.cm_generator.image.tag | default "0.10.3-beta" }} workingDir: /app env: - name: PYTHONUNBUFFERED diff --git a/helm-chart/templates/sqlite-web-statefulset.yaml b/helm-chart/templates/sqlite-web-statefulset.yaml index 4b8e0fad..9fb0010b 100644 --- a/helm-chart/templates/sqlite-web-statefulset.yaml +++ b/helm-chart/templates/sqlite-web-statefulset.yaml @@ -22,7 +22,7 @@ spec: env: - name: SQLITE_DATABASE value: /data/MaiMBot/MaiBot.db - image: {{ .Values.sqlite_web.image.repository }}:{{ .Values.sqlite_web.image.tag | default "latest" }} + image: {{ .Values.sqlite_web.image.repository | default "coleifer/sqlite-web" }}:{{ .Values.sqlite_web.image.tag | default "latest" }} imagePullPolicy: {{ .Values.sqlite_web.image.pullPolicy }} livenessProbe: failureThreshold: 3 diff --git a/helm-chart/templates/statistics-deployment.yaml b/helm-chart/templates/statistics-deployment.yaml index 4a902e5b..c5e951e1 100644 --- a/helm-chart/templates/statistics-deployment.yaml +++ b/helm-chart/templates/statistics-deployment.yaml @@ -18,7 +18,7 @@ spec: spec: containers: - name: nginx - image: {{ .Values.statistics_dashboard.image.repository }}:{{ .Values.statistics_dashboard.image.tag | default "latest" }} + image: {{ .Values.statistics_dashboard.image.repository | default "nginx" }}:{{ .Values.statistics_dashboard.image.tag | default "latest" }} imagePullPolicy: {{ .Values.statistics_dashboard.image.pullPolicy }} livenessProbe: failureThreshold: 3 diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 09e0878c..3df43c07 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -9,7 +9,7 @@ PRIVACY_AGREE: false adapter: image: - repository: unclas/maimbot-adapter + repository: # 默认 unclas/maimbot-adapter tag: # 默认 main-20250922131146 pullPolicy: IfNotPresent pullSecrets: [ ] @@ -37,7 +37,7 @@ adapter: # adapter的动态生成configmap的Job的配置 cm_generator: image: - repository: reg.mikumikumi.xyz/maibot/adapter-cm-generator + repository: # 默认 reg.mikumikumi.xyz/maibot/adapter-cm-generator tag: # 默认 0.10.3-beta pullPolicy: IfNotPresent pullSecrets: [ ] @@ -47,7 +47,7 @@ adapter: core: image: - repository: reg.mikumikumi.xyz/maibot/maibot + repository: # 默认 reg.mikumikumi.xyz/maibot/maibot tag: # 默认 tag-0.10.3-beta pullPolicy: IfNotPresent pullSecrets: [ ] @@ -74,7 +74,7 @@ statistics_dashboard: replicaCount: 1 image: - repository: nginx + repository: # 默认 nginx tag: # 默认 latest pullPolicy: IfNotPresent pullSecrets: [ ] @@ -114,7 +114,7 @@ napcat: enabled: true image: - repository: mlikiowa/napcat-docker + repository: # 默认 mlikiowa/napcat-docker tag: # 默认 v4.8.116 pullPolicy: IfNotPresent pullSecrets: [ ] @@ -160,7 +160,7 @@ sqlite_web: enabled: false image: - repository: coleifer/sqlite-web + repository: # 默认 coleifer/sqlite-web tag: # 默认 latest pullPolicy: IfNotPresent pullSecrets: [ ]