Skip to content

Commit 592bde2

Browse files
authored
chore: update helm and docker-compose image version (#1036)
1 parent 2a1ba83 commit 592bde2

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

deploy/aperag/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ helm install aperag ./deploy/aperag
1717

1818
# Or with custom values
1919
helm install aperag ./deploy/aperag \
20-
--set image.tag=v0.5.0-alpha.21 \
21-
--set frontend.image.tag=v0.5.0-alpha.21
20+
--set image.tag=v0.5.0-alpha.41 \
21+
--set frontend.image.tag=v0.5.0-alpha.41
2222
```
2323

2424
## Environment Variables

deploy/aperag/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
image:
22
repository: "docker.io/apecloud/aperag" # Full image name including registry
3-
tag: "v0.5.0-alpha.34"
3+
tag: "v0.5.0-alpha.41"
44
pullPolicy: IfNotPresent
55

66
nameOverride: ""
@@ -186,7 +186,7 @@ api:
186186

187187
GRAPH_INDEX_KV_STORAGE: PGOpsSyncKVStorage
188188
GRAPH_INDEX_VECTOR_STORAGE: PGOpsSyncVectorStorage
189-
GRAPH_INDEX_GRAPH_STORAGE: Neo4JSyncStorage
189+
GRAPH_INDEX_GRAPH_STORAGE: PGOpsSyncGraphStorage
190190

191191
# Cache
192192
CACHE_ENABLED: "True"
@@ -255,7 +255,7 @@ frontend:
255255
replicaCount: 1
256256
image:
257257
repository: "docker.io/apecloud/aperag-frontend" # Full image name including registry
258-
tag: "v0.5.0-alpha.34"
258+
tag: "v0.5.0-alpha.41"
259259
pullPolicy: IfNotPresent
260260
resources: {}
261261
# We usually recommend not to specify default resources and to leave this as a conscious

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
build:
1515
context: .
1616
dockerfile: ./Dockerfile
17-
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.34}
17+
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.41}
1818
container_name: aperag-api
1919
depends_on:
2020
redis:
@@ -48,7 +48,7 @@ services:
4848
build:
4949
context: ./frontend
5050
dockerfile: ./Dockerfile
51-
image: ${REGISTRY:-docker.io}/apecloud/aperag-frontend:${VERSION:-v0.5.0-alpha.34}
51+
image: ${REGISTRY:-docker.io}/apecloud/aperag-frontend:${VERSION:-v0.5.0-alpha.41}
5252
container_name: aperag-frontend
5353
depends_on:
5454
api:
@@ -62,7 +62,7 @@ services:
6262
- "3000:3000"
6363

6464
celeryworker:
65-
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.34}
65+
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.41}
6666
build:
6767
context: .
6868
dockerfile: ./Dockerfile
@@ -90,7 +90,7 @@ services:
9090
command: ["/app/scripts/entrypoint.sh", "/app/scripts/start-celery-worker.sh"]
9191

9292
celerybeat:
93-
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.34}
93+
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.41}
9494
build:
9595
context: .
9696
dockerfile: ./Dockerfile
@@ -109,7 +109,7 @@ services:
109109

110110
flower:
111111
<<: *api
112-
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.34}
112+
image: ${REGISTRY:-docker.io}/apecloud/aperag:${VERSION:-v0.5.0-alpha.41}
113113
build:
114114
context: .
115115
dockerfile: ./Dockerfile

0 commit comments

Comments
 (0)