-
-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make server streaming configurable (#231)
- Loading branch information
Showing
5 changed files
with
54 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
env: | ||
# Environmental variables as below can be passed in this yaml block | ||
AUTOPAUSE: "true" | ||
MAXPLAYERS: 3 | ||
|
||
service: | ||
main: # Example setup for a LoadBalancer with an external IP | ||
# MetalLB for example could be used if a Loadbalancer is not provided by your provider | ||
type: LoadBalancer # Setting an external IP for simple port forwarding | ||
externalTrafficPolicy: Cluster | ||
loadBalancerIP: "192.168.2.200" # IP of the satisfactory server | ||
|
||
persistence: | ||
config: # Config/save data stored here | ||
enabled: true | ||
|
||
server-cache: # Game files stored here | ||
# This is seperated to allow for backing up only game/config data | ||
enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters