@@ -145,6 +145,7 @@ mods:
145
145
# # @param factorioServer.generate_new_save Generate a new save if `save_name` is not found
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
+ # # @param factorioServer.rcon_port Factorio Server RCON port
148
149
factorioServer :
149
150
# name to use for the save file
150
151
save_name : " replaceMe"
@@ -156,6 +157,10 @@ factorioServer:
156
157
load_latest_save : true
157
158
# enables or disables the mods for DLC Space Age in mod-list.json
158
159
enable_space_age : true
160
+ # factorio game rcon port
161
+ # this port setting is typically for internal Kubernetes configuration only, and in most cases, it does not need to be modified.
162
+ # if it is necessary to change the rcon server port where you connect to it, update the "rcon.port" value accordingly.
163
+ rcon_port : 27015
159
164
160
165
import_save :
161
166
# enable save importer
@@ -290,15 +295,15 @@ server_settings:
290
295
# # @param rcon.external Enable RCON external access (deploy RCON service)
291
296
# # @param rcon.type RCON service type
292
297
# # @param rcon.serviceAnnotations RCON service annotations
293
- # # @param rcon.passwordSecret Existing secret containing a `password ` data field
298
+ # # @param rcon.passwordSecret Existing secret containing a `rconpw ` data field
294
299
# # @param rcon.password Password for RCON, ignored if `rcon.passwordSecret` is set
295
300
# # @param rcon.port RCON service external port
296
301
# Password and port for the rcon service
297
302
rcon :
298
303
external : true
299
304
type : LoadBalancer
300
305
serviceAnnotations : {}
301
- # Existing secret containing a `password ` data field
306
+ # Existing secret containing a `rconpw ` data field
302
307
passwordSecret : " "
303
308
304
309
# Password for rcon
0 commit comments