Skip to content

Commit

Permalink
Merge pull request #1745 from sthaha/allow-power-meters-off
Browse files Browse the repository at this point in the history
chore(compose/dev): allow power meters to be disabled
  • Loading branch information
sthaha authored Aug 29, 2024
2 parents aa822ee + f87bbaa commit c60f793
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 0 deletions.
4 changes: 4 additions & 0 deletions manifests/compose/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,12 @@ services:
set -x;
/usr/bin/kepler \
-address "0.0.0.0:8888" \
-disable-power-meter=$$DISABLE_POWER_METER \
-v "8" \
-enable-gpu=false
environment:
- DISABLE_POWER_METER=${DISABLE_POWER_METER:-false}

networks:
kepler-network:
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
true
5 changes: 5 additions & 0 deletions manifests/compose/dev/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,13 @@ services:
set -x;
/usr/bin/kepler \
-address "0.0.0.0:8888" \
-disable-power-meter=$$DISABLE_POWER_METER \
-v "8" \
-enable-gpu=false
environment:
- DISABLE_POWER_METER=${DISABLE_POWER_METER:-false}

networks:
- kepler-network
cap_add:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
true

0 comments on commit c60f793

Please sign in to comment.