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

Update memory limits #1931

Merged
merged 3 commits into from
Jan 22, 2025
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ the release.
([#1910](https://github.com/open-telemetry/opentelemetry-demo/pull/1910))
* [flagd-ui] fixed eslint ignore comment with useCallback
([#1923](https://github.com/open-telemetry/opentelemetry-demo/pull/1923))
* [chore] Add memory for frontend-proxy, kafka, grafana, opensearch
([#1931](https://github.com/open-telemetry/opentelemetry-demo/pull/1931))

## 1.12.0

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ services:
deploy:
resources:
limits:
memory: 50M
memory: 65M
restart: unless-stopped
ports:
- "${ENVOY_PORT}:${ENVOY_PORT}"
Expand Down Expand Up @@ -571,7 +571,7 @@ services:
deploy:
resources:
limits:
memory: 100M
memory: 120M
restart: unless-stopped
environment:
- "GF_INSTALL_PLUGINS=grafana-opensearch-datasource"
Expand Down Expand Up @@ -646,7 +646,7 @@ services:
deploy:
resources:
limits:
memory: 1G
memory: 1.1G
restart: unless-stopped
environment:
- cluster.name=demo-cluster
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ services:
deploy:
resources:
limits:
memory: 50M
memory: 65M
restart: unless-stopped
ports:
- "${ENVOY_PORT}:${ENVOY_PORT}"
Expand Down Expand Up @@ -651,7 +651,7 @@ services:
deploy:
resources:
limits:
memory: 600M
memory: 620M
restart: unless-stopped
environment:
- KAFKA_ADVERTISED_LISTENERS=PLAINTEXT://kafka:9092
Expand Down Expand Up @@ -717,7 +717,7 @@ services:
deploy:
resources:
limits:
memory: 100M
memory: 120M
restart: unless-stopped
environment:
- "GF_INSTALL_PLUGINS=grafana-opensearch-datasource"
Expand Down Expand Up @@ -792,7 +792,7 @@ services:
deploy:
resources:
limits:
memory: 1G
memory: 1.1G
restart: unless-stopped
environment:
- cluster.name=demo-cluster
Expand Down
Loading