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

Remove resource limits on Compose file templates #51

Merged
merged 1 commit into from
Dec 3, 2024
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
31 changes: 0 additions & 31 deletions docker/docker-compose.license-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,6 @@ services:
# Invoke the API server
command: -v serve /api.toml

# Default resource limits. Increase as needed.
# For more details, see:
# https://developers.deepgram.com/docs/self-hosted-deployment-environments#hardware-specifications
deploy:
resources:
limits:
cpus: "1.80"
memory: 3800M

# Make sure the License Proxy is available for licensing
depends_on:
- license-proxy
Expand Down Expand Up @@ -64,19 +55,6 @@ services:
# Invoke the Engine service
command: -v serve /engine.toml

# Default resource limits. Increase as needed.
# For more details, see:
# https://developers.deepgram.com/docs/self-hosted-deployment-environments#hardware-specifications
deploy:
resources:
limits:
cpus: "3.80"
memory: 30G
reservations:
devices:
- capabilities: ["gpu"]
count: 1

# Make sure the License Proxy is available for licensing
depends_on:
- license-proxy
Expand All @@ -101,12 +79,3 @@ services:

# Invoke the License Proxy service
command: -v serve /license-proxy.toml

# Default resource limits. Increase as needed.
# For more details, see:
# https://developers.deepgram.com/docs/self-hosted-deployment-environments#hardware-specifications
deploy:
resources:
limits:
cpus: "1.00"
memory: 1G
22 changes: 0 additions & 22 deletions docker/docker-compose.standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,6 @@ services:
# Invoke the API server
command: -v serve /api.toml

# Default resource limits. Increase as needed.
# For more details, see:
# https://developers.deepgram.com/docs/self-hosted-deployment-environments#hardware-specifications
deploy:
resources:
limits:
cpus: "1.80"
memory: 3800M

# The speech engine service.
engine:
image: quay.io/deepgram/self-hosted-engine:release-241121
Expand All @@ -59,16 +50,3 @@ services:

# Invoke the Engine service
command: -v serve /engine.toml

# Default resource limits. Increase as needed.
# For more details, see:
# https://developers.deepgram.com/docs/self-hosted-deployment-environments#hardware-specifications
deploy:
resources:
limits:
cpus: "3.80"
memory: 30G
reservations:
devices:
- capabilities: ["gpu"]
count: 1
31 changes: 0 additions & 31 deletions podman/podman-compose.license-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,6 @@ services:
# Invoke the API server
command: -v serve /api.toml

# Default resource limits. Increase as needed.
# For more details, see:
# https://developers.deepgram.com/docs/self-hosted-deployment-environments#hardware-specifications
deploy:
resources:
limits:
cpus: "1.80"
memory: 3800M

# Make sure the License Proxy is available for licensing
depends_on:
- license-proxy
Expand Down Expand Up @@ -65,19 +56,6 @@ services:
# Invoke the Engine service
command: -v serve /engine.toml

# Default resource limits. Increase as needed.
# For more details, see:
# https://developers.deepgram.com/docs/self-hosted-deployment-environments#hardware-specifications
deploy:
resources:
limits:
cpus: "3.80"
memory: 30G
reservations:
devices:
- capabilities: ["gpu"]
count: 1

# Make sure the License Proxy is available for licensing
depends_on:
- license-proxy
Expand Down Expand Up @@ -105,12 +83,3 @@ services:

# Invoke the License Proxy service
command: -v serve /license-proxy.toml

# Default resource limits. Increase as needed.
# For more details, see:
# https://developers.deepgram.com/docs/self-hosted-deployment-environments#hardware-specifications
deploy:
resources:
limits:
cpus: "1.00"
memory: 1G
22 changes: 0 additions & 22 deletions podman/podman-compose.standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,6 @@ services:
# Invoke the API server
command: -v serve /api.toml

# Default resource limits. Increase as needed.
# For more details, see:
# https://developers.deepgram.com/docs/self-hosted-deployment-environments#hardware-specifications
deploy:
resources:
limits:
cpus: "1.80"
memory: 3800M

# The speech engine service.
engine:
image: quay.io/deepgram/self-hosted-engine:release-241121
Expand All @@ -60,16 +51,3 @@ services:

# Invoke the Engine service
command: -v serve /engine.toml

# Default resource limits. Increase as needed.
# For more details, see:
# https://developers.deepgram.com/docs/self-hosted-deployment-environments#hardware-specifications
deploy:
resources:
limits:
cpus: "3.80"
memory: 30G
reservations:
devices:
- capabilities: ["gpu"]
count: 1
Loading