Skip to content

Commit e8d0a0e

Browse files
Update default image tags for Dify 1.10.1 (BorisPolonsky#345)
1 parent ec6dd7d commit e8d0a0e

15 files changed

+36
-36
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ graph TB
4343
ProxyPod -->|Marketplace| MarketplaceAPI[🛒 Marketplace API<br/>External]
4444
4545
%% Backend Pods
46-
APIService --> APIPod[📦 API Pod<br/>langgenius/dify-api:1.10.0<br/>Port: 5001]
47-
WebService --> WebPod[📦 Web Pod<br/>langgenius/dify-web:1.10.0<br/>Port: 3000]
46+
APIService --> APIPod[📦 API Pod<br/>langgenius/dify-api:1.10.1<br/>Port: 5001]
47+
WebService --> WebPod[📦 Web Pod<br/>langgenius/dify-web:1.10.1<br/>Port: 3000]
4848
PluginService --> PluginPod[📦 Plugin Daemon Pod<br/>langgenius/dify-plugin-daemon:0.4.1-local<br/>Ports: 5002, 5003]
4949
5050
%% Worker Pod (Background Processing)
51-
WorkerPod[📦 Worker Pod<br/>langgenius/dify-api:1.10.0]
51+
WorkerPod[📦 Worker Pod<br/>langgenius/dify-api:1.10.1]
5252
5353
%% Beat Pod (Periodic task scheduler)
54-
BeatPod[📦 Beat Pod<br/>langgenius/dify-api:1.10.0]
54+
BeatPod[📦 Beat Pod<br/>langgenius/dify-api:1.10.1]
5555
5656
%% Sandbox Service
5757
SandboxService[🏖️ Sandbox Service<br/>Port: 8194] --> SandboxPod[📦 Sandbox Pod<br/>langgenius/dify-sandbox:0.2.12<br/>Port: 8194]
@@ -163,10 +163,10 @@ The Nginx proxy handles traffic routing with the following rules:
163163

164164
| Component | Image | Port | Role |
165165
|-----------|-------|------|------|
166-
| **API** | `langgenius/dify-api:1.10.0` | 5001 | RESTful API server, business logic processing |
167-
| **Web** | `langgenius/dify-web:1.10.0` | 3000 | Web UI frontend |
168-
| **Worker** | `langgenius/dify-api:1.10.0` | - | Background task processing (Celery) |
169-
| **Beat** | `langgenius/dify-api:1.10.0` | - | Periodic task scheduler (Celery Beat) |
166+
| **API** | `langgenius/dify-api:1.10.1` | 5001 | RESTful API server, business logic processing |
167+
| **Web** | `langgenius/dify-web:1.10.1` | 3000 | Web UI frontend |
168+
| **Worker** | `langgenius/dify-api:1.10.1` | - | Background task processing (Celery) |
169+
| **Beat** | `langgenius/dify-api:1.10.1` | - | Periodic task scheduler (Celery Beat) |
170170
| **Sandbox** | `langgenius/dify-sandbox:0.2.12` | 8194 | Secure code execution environment |
171171
| **Plugin Daemon** | `langgenius/dify-plugin-daemon:0.4.1-local` | 5002, 5003 | Plugin management and execution |
172172
| **SSRF Proxy** | `ubuntu/squid:latest` | 3128 | External request security proxy |

charts/dify/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
image:
99
api:
1010
repository: langgenius/dify-api
11-
tag: "1.10.0"
11+
tag: "1.10.1"
1212
pullPolicy: IfNotPresent
1313
## Optionally specify an array of imagePullSecrets.
1414
## Secrets must be manually created in the namespace.
@@ -19,7 +19,7 @@ image:
1919

2020
web:
2121
repository: langgenius/dify-web
22-
tag: "1.10.0"
22+
tag: "1.10.1"
2323
pullPolicy: IfNotPresent
2424
## Optionally specify an array of imagePullSecrets.
2525
## Secrets must be manually created in the namespace.

ci/values/values-eso-external-es.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
image:
22
api:
33
repository: langgenius/dify-api
4-
tag: "1.10.0"
4+
tag: "1.10.1"
55
pullPolicy: IfNotPresent
66

77
web:
88
repository: langgenius/dify-web
9-
tag: "1.10.0"
9+
tag: "1.10.1"
1010
pullPolicy: IfNotPresent
1111

1212
sandbox:

ci/values/values-eso-external-pg.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
image:
66
api:
77
repository: langgenius/dify-api
8-
tag: "1.10.0"
8+
tag: "1.10.1"
99
pullPolicy: IfNotPresent
1010
## Optionally specify an array of imagePullSecrets.
1111
## Secrets must be manually created in the namespace.
@@ -16,7 +16,7 @@ image:
1616

1717
web:
1818
repository: langgenius/dify-web
19-
tag: "1.10.0"
19+
tag: "1.10.1"
2020
pullPolicy: IfNotPresent
2121
## Optionally specify an array of imagePullSecrets.
2222
## Secrets must be manually created in the namespace.

ci/values/values-eso-external-redis.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
image:
22
api:
33
repository: langgenius/dify-api
4-
tag: "1.10.0"
4+
tag: "1.10.1"
55
pullPolicy: IfNotPresent
66

77
web:
88
repository: langgenius/dify-web
9-
tag: "1.10.0"
9+
tag: "1.10.1"
1010
pullPolicy: IfNotPresent
1111

1212
sandbox:

ci/values/values-eso-external-s3-pg-es-redis.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
image:
22
api:
33
repository: langgenius/dify-api
4-
tag: "1.10.0"
4+
tag: "1.10.1"
55
pullPolicy: IfNotPresent
66

77
web:
88
repository: langgenius/dify-web
9-
tag: "1.10.0"
9+
tag: "1.10.1"
1010
pullPolicy: IfNotPresent
1111

1212
sandbox:

ci/values/values-eso-external-s3.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
image:
22
api:
33
repository: langgenius/dify-api
4-
tag: "1.10.0"
4+
tag: "1.10.1"
55
pullPolicy: IfNotPresent
66

77
web:
88
repository: langgenius/dify-web
9-
tag: "1.10.0"
9+
tag: "1.10.1"
1010
pullPolicy: IfNotPresent
1111

1212
sandbox:

ci/values/values-eso-otel.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
image:
22
api:
33
repository: langgenius/dify-api
4-
tag: "1.10.0"
4+
tag: "1.10.1"
55
pullPolicy: IfNotPresent
66

77
web:
88
repository: langgenius/dify-web
9-
tag: "1.10.0"
9+
tag: "1.10.1"
1010
pullPolicy: IfNotPresent
1111

1212
sandbox:

ci/values/values-eso.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
image:
22
api:
33
repository: langgenius/dify-api
4-
tag: "1.10.0"
4+
tag: "1.10.1"
55
pullPolicy: IfNotPresent
66

77
web:
88
repository: langgenius/dify-web
9-
tag: "1.10.0"
9+
tag: "1.10.1"
1010
pullPolicy: IfNotPresent
1111

1212
sandbox:

ci/values/values-legacy-external-es.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
image:
22
api:
33
repository: langgenius/dify-api
4-
tag: "1.10.0"
4+
tag: "1.10.1"
55
pullPolicy: IfNotPresent
66

77
web:
88
repository: langgenius/dify-web
9-
tag: "1.10.0"
9+
tag: "1.10.1"
1010
pullPolicy: IfNotPresent
1111

1212
sandbox:

0 commit comments

Comments
 (0)