Skip to content

Commit e6cb195

Browse files
committed
update: dify version to 1.2.0
1 parent 429c449 commit e6cb195

File tree

5 files changed

+27
-15
lines changed

5 files changed

+27
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Deploy [Dify](https://dify.ai/) on Kubernetes
88

99
> Star 🌟 if this repo helps you ~~
1010
11-
# This is version v1.1.3
11+
# This is version v1.2.0
1212

1313
**This branch will merge to main when dify 1.0 tested stable, now it's not.**
1414

@@ -55,7 +55,7 @@ kubectl apply -f dify-deployment.yaml
5555
```shell
5656
kubectl apply -f https://raw.githubusercontent.com/Winson-030/dify-kubernetes/main/dify-deployment.yaml
5757
```
58-
## version 1.1.3
58+
## version 1.2.0
5959
```
6060
kubectl apply -f https://raw.githubusercontent.com/Winson-030/dify-kubernetes/refs/heads/upgrade/dify-version-100/dify-deployment.yaml
6161
```
@@ -65,7 +65,7 @@ If cluster is not able to connect dockerhub directly(for most users in China), a
6565
```shell
6666
kubectl apply -f https://cdn.jsdelivr.net/gh/Winson-030/dify-kubernetes@main/dify-mirror-deployment.yaml
6767
```
68-
## version 1.1.3
68+
## version 1.2.0
6969
```
7070
kubectl apply -f https://cdn.jsdelivr.net/gh/Winson-030/dify-kubernetes@upgrade/dify-version-100/dify-mirror-deployment.yaml
7171
```

README_CN.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> 这个项目帮到你的话,点个星星 🌟 ~~
1010
11-
# 这是 1.1.3 版本
11+
# 这是 1.2.0 版本
1212

1313
## 开发计划
1414

@@ -44,7 +44,7 @@ kubectl apply -f dify-deployment.yaml
4444

4545
kubectl apply -f https://raw.githubusercontent.com/Winson-030/dify-kubernetes/main/dify-deployment.yaml
4646
```
47-
## version 1.1.3
47+
## version 1.2.0
4848
```
4949
kubectl apply -f https://raw.githubusercontent.com/Winson-030/dify-kubernetes/refs/heads/upgrade/dify-version-100/dify-deployment.yaml
5050
```
@@ -54,7 +54,7 @@ kubectl apply -f https://raw.githubusercontent.com/Winson-030/dify-kubernetes/re
5454
```shell
5555
kubectl apply -f https://cdn.jsdelivr.net/gh/Winson-030/dify-kubernetes@main/dify-mirror-deployment.yaml
5656
```
57-
## version 1.1.3
57+
## version 1.2.0
5858
```
5959
kubectl apply -f https://cdn.jsdelivr.net/gh/Winson-030/dify-kubernetes@upgrade/dify-version-100/dify-mirror-deployment.yaml
6060
```

README_JA.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> このリポジトリが役に立った場合は、スター 🌟 を付けてください ~~
1010
11-
# これはバージョンv1.1.3です
11+
# これはバージョンv1.2.0です
1212

1313
## 開発計画
1414

@@ -43,7 +43,7 @@ kubectl apply -f dify-deployment.yaml
4343
```shell
4444
kubectl apply -f https://raw.githubusercontent.com/Winson-030/dify-kubernetes/main/dify-deployment.yaml
4545
```
46-
## version 1.1.3
46+
## version 1.2.0
4747
```
4848
kubectl apply -f https://raw.githubusercontent.com/Winson-030/dify-kubernetes/refs/heads/upgrade/dify-version-100/dify-deployment.yaml
4949
```
@@ -53,7 +53,7 @@ kubectl apply -f https://raw.githubusercontent.com/Winson-030/dify-kubernetes/re
5353
```shell
5454
kubectl apply -f https://cdn.jsdelivr.net/gh/Winson-030/dify-kubernetes@main/dify-mirror-deployment.yaml
5555
```
56-
## version 1.1.3
56+
## version 1.2.0
5757
```
5858
kubectl apply -f https://cdn.jsdelivr.net/gh/Winson-030/dify-kubernetes@upgrade/dify-version-100/dify-mirror-deployment.yaml
5959
```

dify-deployment.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ spec:
714714
type: DirectoryOrCreate
715715
containers:
716716
- name: dify-api
717-
image: langgenius/dify-api:1.1.3
717+
image: langgenius/dify-api:1.2.0
718718
env:
719719
- name: MODE
720720
value: api
@@ -939,7 +939,7 @@ spec:
939939
type: DirectoryOrCreate
940940
containers:
941941
- name: dify-worker
942-
image: langgenius/dify-api:1.1.3
942+
image: langgenius/dify-api:1.2.0
943943
ports:
944944
- containerPort: 5001
945945
protocol: TCP
@@ -1128,7 +1128,7 @@ spec:
11281128
automountServiceAccountToken: false
11291129
containers:
11301130
- name: dify-web
1131-
image: langgenius/dify-web:1.1.3
1131+
image: langgenius/dify-web:1.2.0
11321132
env:
11331133
- name: EDITION
11341134
value: SELF_HOSTED
@@ -1163,6 +1163,12 @@ spec:
11631163
value: '10'
11641164
- name: 'MAX_ITERATIONS_NUM'
11651165
value: '5'
1166+
- name: 'ENABLE_WEBSITE_JINAREADER'
1167+
value: 'true'
1168+
- name: 'ENABLE_WEBSITE_FIRECRAWL'
1169+
value: 'true'
1170+
- name: 'ENABLE_WEBSITE_WATERCRAWL'
1171+
value: 'true'
11661172
resources:
11671173
requests:
11681174
cpu: 100m

dify-mirror-deployment.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ spec:
711711
type: DirectoryOrCreate
712712
containers:
713713
- name: dify-api
714-
image: dockerhub.icu/langgenius/dify-api:1.1.3
714+
image: dockerhub.icu/langgenius/dify-api:1.2.0
715715
env:
716716
- name: MODE
717717
value: api
@@ -926,7 +926,7 @@ spec:
926926
type: DirectoryOrCreate
927927
containers:
928928
- name: dify-worker
929-
image: dockerhub.icu/langgenius/dify-api:1.1.3
929+
image: dockerhub.icu/langgenius/dify-api:1.2.0
930930
ports:
931931
- containerPort: 5001
932932
protocol: TCP
@@ -1106,7 +1106,7 @@ spec:
11061106
automountServiceAccountToken: false
11071107
containers:
11081108
- name: dify-web
1109-
image: dockerhub.icu/langgenius/dify-web:1.1.3
1109+
image: dockerhub.icu/langgenius/dify-web:1.2.0
11101110
env:
11111111
- name: EDITION
11121112
value: SELF_HOSTED
@@ -1141,6 +1141,12 @@ spec:
11411141
value: '10'
11421142
- name: 'MAX_ITERATIONS_NUM'
11431143
value: '5'
1144+
- name: 'ENABLE_WEBSITE_JINAREADER'
1145+
value: 'true'
1146+
- name: 'ENABLE_WEBSITE_FIRECRAWL'
1147+
value: 'true'
1148+
- name: 'ENABLE_WEBSITE_WATERCRAWL'
1149+
value: 'true'
11441150
resources:
11451151
requests:
11461152
cpu: 100m

0 commit comments

Comments
 (0)