File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed
charts/factorio-server-charts Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
+ ### V2.0.1
4
+
5
+ #### Non-Breaking Changes
6
+
7
+ - Added ` enable_space_age ` field to values.yaml to enable or disable Space Age DLC
8
+
3
9
### V2.0.0
4
10
5
11
#### Breaking Changes
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ sources:
20
20
# This is the chart version. This version number should be incremented each time you make changes
21
21
# to the chart and its templates, including the app version.
22
22
# Versions are expected to follow Semantic Versioning (https://semver.org/)
23
- version : 2.0.0
23
+ version : 2.0.1
24
24
25
25
# This is the version number of the application being deployed. This version number should be
26
26
# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change @@ -167,6 +167,8 @@ spec:
167
167
value : {{ .Values.factorioServer.generate_new_save | quote }}
168
168
- name : LOAD_LATEST_SAVE
169
169
value : {{ .Values.factorioServer.load_latest_save | quote }}
170
+ - name : DLC_SPACE_AGE
171
+ value : {{ .Values.factorioServer.enable_space_age | quote }}
170
172
- name : CONFIG
171
173
value : /factorio/configs
172
174
{{- if .Values.nodeSelector }}
Original file line number Diff line number Diff line change @@ -146,14 +146,16 @@ mods:
146
146
# # @param factorioServer.update_mods_on_start Update mods on server start
147
147
# # @param factorioServer.load_latest_save Lets the game know if you want to load the latest save
148
148
factorioServer :
149
- # specify a save name
149
+ # name to use for the save file
150
150
save_name : " replaceMe"
151
- # Generate a New Save
151
+ # generate a new save if one does not exist before starting the server
152
152
generate_new_save : true
153
- # Update mods on start
153
+ # if mods should be updated before starting the server
154
154
update_mods_on_start : false
155
- # lets the game know if you want to load the latest save
155
+ # load latest when true. Otherwise load SAVE_NAME
156
156
load_latest_save : true
157
+ # enables or disables the mods for DLC Space Age in mod-list.json
158
+ enable_space_age : true
157
159
158
160
import_save :
159
161
# enable save importer
You can’t perform that action at this time.
0 commit comments