Skip to content

Commit d65c8aa

Browse files
committed
Added the configuration to run the Space Exploration mod
removed comment
1 parent 50b9b9d commit d65c8aa

File tree

3 files changed

+159
-0
lines changed

3 files changed

+159
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ https://github.com/helm/chart-releaser-action
3333
To read the full documentation check the
3434
chart's [README.md](https://github.com/SQLJames/factorio-server-charts/blob/main/charts/factorio-server-charts/README.md)
3535

36+
## Examples Of Large mods
37+
38+
Values.yaml configuration of large [mods](./examples/):
39+
* [Space-Exploration](https://mods.factorio.com/mod/space-exploration)
40+
3641
## Changelog
3742

3843
### V1.1.0

examples/space-exploration/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Space-Exploration
2+
3+
The [Space-Exploration](https://mods.factorio.com/mod/space-exploration) mods requires an extended list of other [mods](https://spaceexploration.miraheze.org/wiki/Recommended_Mods#Required_Dependencies) to run properly. For more in-depth reference to the `values.yaml` check [issue 24](https://github.com/SQLJames/factorio-server-charts/issues/24)
Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
rcon:
2+
external: false
3+
# passwordSecret: 'test'
4+
5+
# nodeSelector:
6+
# kubernetes.io/hostname: space-exploration # this makes it easier for firewall rules and makes sure things dont change
7+
#
8+
resources:
9+
requests:
10+
cpu: 250m
11+
12+
# making sure the game doesnt auto update on redeploy
13+
# https://hub.docker.com/r/factoriotools/factorio/
14+
image:
15+
tag: stable
16+
17+
18+
persistence:
19+
enabled: true
20+
21+
factorioServer:
22+
save_name: "space-exploration"
23+
update_mods_on_start: true
24+
25+
#needed if playing online
26+
admin_list: [ ] # put your admins based on factorio names
27+
# - "john_doe"
28+
# - "jane_doe"
29+
30+
white_list: [ ] # put the people you want to play with you based on factorio names
31+
# - "john_doe"
32+
# - "jane_doe"
33+
#
34+
service:
35+
type: NodePort
36+
port: 31497
37+
38+
# externalIPs:
39+
# - "172.105.1.131"
40+
41+
server_settings:
42+
name: ''
43+
description: ''
44+
tags:
45+
- modded
46+
- helm
47+
- experimental
48+
- space-exploration
49+
50+
visibility:
51+
public: true
52+
require_user_verification: true
53+
autosave_only_on_server: false
54+
55+
account:
56+
# Existing secret containing a valid factorio.com username and either a password or a token
57+
# Example:
58+
#
59+
# apiVersion: v1
60+
# kind: Secret
61+
# metadata:
62+
# name: account-secret
63+
# data:
64+
# username: <username in base64>
65+
# password: <password in base64>
66+
#
67+
# accountSecret: account-secret
68+
# accountSecret: ''
69+
# Your factorio.com login credentials. Required for games with visibility public
70+
username: ''
71+
# password: ''
72+
# Authentication token. May be used instead of password above.
73+
token: ''
74+
75+
serverPassword:
76+
# password required to log into the factorio server
77+
game_password: ''
78+
# Existing Secret containing a `game_password` data entry
79+
passwordSecret: ''
80+
81+
mods:
82+
enabled: true
83+
# in order to use the mods portal you will need to specify the username and token in the server_settings.
84+
# name is determined by the url, it will be the last part of the url, not the title of the mod.
85+
portal:
86+
# https://spaceexploration.miraheze.org/wiki/Recommended_Mods#Required_Dependencies
87+
# Recommended
88+
- ModuleInserterSimplified
89+
- aai-vehicles-ironclad
90+
- grappling-gun
91+
- bullet-trails
92+
- equipment-gantry
93+
- textplates
94+
- combat-mechanics-overhaul
95+
- RecipeBook
96+
# QOL
97+
- even-distribution
98+
- AutoTrash
99+
- LogisticRequestManager
100+
- BottleneckLite
101+
# - Squeak Through
102+
- LogisticTrainNetwork
103+
# spaceX
104+
- alien-biomes
105+
- alien-biomes-hr-terrain
106+
- space-exploration-graphics
107+
- space-exploration-graphics-2
108+
- space-exploration-graphics-3
109+
- space-exploration-graphics-4
110+
- space-exploration-graphics-5
111+
- space-exploration-menu-simulations
112+
- shield-projector
113+
- aai-containers
114+
- aai-industry
115+
- aai-signal-transmission
116+
- simhelper
117+
- space-exploration-graphics
118+
- robot_attrition
119+
- informatron
120+
- jetpack
121+
- space-exploration-postprocess
122+
- space-exploration
123+
# unofficial section is meant to just allow you to download and place folders into the mods folder.
124+
# we will not check version compatibility automatically with these downloads.
125+
# you can encounter an error if the file names dont match what the mod is expecting for example
126+
#Error Util.cpp:83: Failed to load mod "Squeak-Through": Filename of mod
127+
# /factorio/mods/Squeak-Through.zip doesn't match the expected Squeak Through_1.8.2.zip (case sensitive!)
128+
unofficial:
129+
- url: "https://github.com/Suprcheese/Squeak-Through/archive/refs/tags/1.8.2.zip"
130+
name: "Squeak Through_1.8.2.zip"
131+
132+
# settings required for Space ex
133+
map_settings:
134+
pollution:
135+
enemy_attack_pollution_consumption_modifier: 0.5
136+
enemy_evolution:
137+
time_factor: 0.0000005
138+
destroy_factor: 0.0005
139+
pollution_factor: 0.00000025
140+
141+
map_gen_settings:
142+
water: 1.5
143+
starting_area: 2
144+
autoplace_controls:
145+
hot:
146+
size: 0.5
147+
cold:
148+
size: 0.5
149+
property_expression_names:
150+
control-setting:moisture:bias: '0.05'
151+
control-setting:aux:bias: '-0.35'

0 commit comments

Comments
 (0)