升级镜像tag,并将镜像tag从values文件中解耦

This commit is contained in:
zhangxinhui02
2025-09-22 23:54:10 +08:00
parent 361a91ebf1
commit 6bc31e0c04
7 changed files with 12 additions and 12 deletions

View File

@@ -21,7 +21,7 @@ spec:
env: env:
- name: TZ - name: TZ
value: Asia/Shanghai value: Asia/Shanghai
image: {{ .Values.adapter.image.repository }}:{{ .Values.adapter.image.tag }} image: {{ .Values.adapter.image.repository }}:{{ .Values.adapter.image.tag | default "main-20250922131146" }}
imagePullPolicy: {{ .Values.adapter.image.pullPolicy }} imagePullPolicy: {{ .Values.adapter.image.pullPolicy }}
ports: ports:
- containerPort: 8095 - containerPort: 8095

View File

@@ -29,7 +29,7 @@ spec:
value: 99f08e0cab0190de853cb6af7d64d4de value: 99f08e0cab0190de853cb6af7d64d4de
- name: PRIVACY_AGREE - name: PRIVACY_AGREE
value: 9943b855e72199d0f5016ea39052f1b6 value: 9943b855e72199d0f5016ea39052f1b6
image: {{ .Values.core.image.repository }}:{{ .Values.core.image.tag }} image: {{ .Values.core.image.repository }}:{{ .Values.core.image.tag | default "main-0e0179f" }}
imagePullPolicy: {{ .Values.core.image.pullPolicy }} imagePullPolicy: {{ .Values.core.image.pullPolicy }}
ports: ports:
- containerPort: 8000 - containerPort: 8000

View File

@@ -26,7 +26,7 @@ spec:
value: "{{ .Values.napcat.permission.uid }}" value: "{{ .Values.napcat.permission.uid }}"
- name: TZ - name: TZ
value: Asia/Shanghai value: Asia/Shanghai
image: {{ .Values.napcat.image.repository }}:{{ .Values.napcat.image.tag }} image: {{ .Values.napcat.image.repository }}:{{ .Values.napcat.image.tag | default "v4.8.116" }}
imagePullPolicy: {{ .Values.napcat.image.pullPolicy }} imagePullPolicy: {{ .Values.napcat.image.pullPolicy }}
livenessProbe: livenessProbe:
failureThreshold: 3 failureThreshold: 3

View File

@@ -15,7 +15,7 @@ spec:
restartPolicy: Never restartPolicy: Never
containers: containers:
- name: adapter-cm-generator - name: adapter-cm-generator
image: {{ .Values.adapter.cm_generator.image.repository }}:{{ .Values.adapter.cm_generator.image.tag }} image: {{ .Values.adapter.cm_generator.image.repository }}:{{ .Values.adapter.cm_generator.image.tag | default "0.10.3-beta" }}
workingDir: /app workingDir: /app
env: env:
- name: PYTHONUNBUFFERED - name: PYTHONUNBUFFERED

View File

@@ -22,7 +22,7 @@ spec:
env: env:
- name: SQLITE_DATABASE - name: SQLITE_DATABASE
value: /data/MaiMBot/MaiBot.db value: /data/MaiMBot/MaiBot.db
image: {{ .Values.sqlite_web.image.repository }}:{{ .Values.sqlite_web.image.tag }} image: {{ .Values.sqlite_web.image.repository }}:{{ .Values.sqlite_web.image.tag | default "latest" }}
imagePullPolicy: {{ .Values.sqlite_web.image.pullPolicy }} imagePullPolicy: {{ .Values.sqlite_web.image.pullPolicy }}
livenessProbe: livenessProbe:
failureThreshold: 3 failureThreshold: 3

View File

@@ -18,7 +18,7 @@ spec:
spec: spec:
containers: containers:
- name: nginx - name: nginx
image: {{ .Values.statistics_dashboard.image.repository }}:{{ .Values.statistics_dashboard.image.tag }} image: {{ .Values.statistics_dashboard.image.repository }}:{{ .Values.statistics_dashboard.image.tag | default "latest" }}
imagePullPolicy: {{ .Values.statistics_dashboard.image.pullPolicy }} imagePullPolicy: {{ .Values.statistics_dashboard.image.pullPolicy }}
livenessProbe: livenessProbe:
failureThreshold: 3 failureThreshold: 3

View File

@@ -10,7 +10,7 @@ adapter:
image: image:
repository: unclas/maimbot-adapter repository: unclas/maimbot-adapter
tag: main-20250807151247 tag: # 默认 main-20250922131146
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
pullSecrets: [ ] pullSecrets: [ ]
@@ -38,7 +38,7 @@ adapter:
cm_generator: cm_generator:
image: image:
repository: reg.mikumikumi.xyz/maibot/adapter-cm-generator repository: reg.mikumikumi.xyz/maibot/adapter-cm-generator
tag: 0.10.0-alpha.0 tag: # 默认 0.10.3-beta
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
pullSecrets: [ ] pullSecrets: [ ]
@@ -48,7 +48,7 @@ core:
image: image:
repository: sengokucola/maibot repository: sengokucola/maibot
tag: main-a8ff08e tag: # 默认 main-0e0179f
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
pullSecrets: [ ] pullSecrets: [ ]
@@ -75,7 +75,7 @@ statistics_dashboard:
image: image:
repository: nginx repository: nginx
tag: latest tag: # 默认 latest
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
pullSecrets: [ ] pullSecrets: [ ]
@@ -115,7 +115,7 @@ napcat:
image: image:
repository: mlikiowa/napcat-docker repository: mlikiowa/napcat-docker
tag: v4.8.98 tag: # 默认 v4.8.116
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
pullSecrets: [ ] pullSecrets: [ ]
@@ -161,7 +161,7 @@ sqlite_web:
image: image:
repository: coleifer/sqlite-web repository: coleifer/sqlite-web
tag: latest tag: # 默认 latest
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
pullSecrets: [ ] pullSecrets: [ ]