Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docker): fix memory limit suffix in docker compose #13382

Merged
merged 1 commit into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/docker-compose-standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ services:
deploy:
resources:
limits:
memory: 28Gi
memory: 28G
reservations:
memory: 28Gi
memory: 28G

etcd-0:
image: "quay.io/coreos/etcd:v3.5.7"
Expand Down
16 changes: 8 additions & 8 deletions docker/docker-compose-with-hdfs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ services:
deploy:
resources:
limits:
memory: 2Gi
memory: 2G
reservations:
memory: 1Gi
memory: 1G
compute-node-0:
image: "ghcr.io/risingwavelabs/risingwave:RW_1.1_HADOOP2-x86_64"
command:
Expand Down Expand Up @@ -78,9 +78,9 @@ services:
deploy:
resources:
limits:
memory: 26Gi
memory: 26G
reservations:
memory: 26Gi
memory: 26G
etcd-0:
image: "quay.io/coreos/etcd:v3.5.7"
command:
Expand Down Expand Up @@ -167,9 +167,9 @@ services:
deploy:
resources:
limits:
memory: 2Gi
memory: 2G
reservations:
memory: 1Gi
memory: 1G
grafana-0:
image: "grafana/grafana-oss:latest"
command: []
Expand Down Expand Up @@ -242,9 +242,9 @@ services:
deploy:
resources:
limits:
memory: 2Gi
memory: 2G
reservations:
memory: 1Gi
memory: 1G
prometheus-0:
image: "prom/prometheus:latest"
command:
Expand Down
16 changes: 8 additions & 8 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ services:
deploy:
resources:
limits:
memory: 2Gi
memory: 2G
reservations:
memory: 1Gi
memory: 1G
compute-node-0:
<<: *image
command:
Expand Down Expand Up @@ -84,9 +84,9 @@ services:
deploy:
resources:
limits:
memory: 26Gi
memory: 26G
reservations:
memory: 26Gi
memory: 26G
etcd-0:
image: "quay.io/coreos/etcd:v3.5.7"
command:
Expand Down Expand Up @@ -174,9 +174,9 @@ services:
deploy:
resources:
limits:
memory: 2Gi
memory: 2G
reservations:
memory: 1Gi
memory: 1G
grafana-0:
image: "grafana/grafana-oss:latest"
command: []
Expand Down Expand Up @@ -250,9 +250,9 @@ services:
deploy:
resources:
limits:
memory: 2Gi
memory: 2G
reservations:
memory: 1Gi
memory: 1G
minio-0:
image: "quay.io/minio/minio:latest"
command:
Expand Down
Loading