@@ -145,6 +145,7 @@ mods:
145145# # @param factorioServer.generate_new_save Generate a new save if `save_name` is not found
146146# # @param factorioServer.update_mods_on_start Update mods on server start
147147# # @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
148149factorioServer :
149150 # name to use for the save file
150151 save_name : " replaceMe"
@@ -156,6 +157,10 @@ factorioServer:
156157 load_latest_save : true
157158 # enables or disables the mods for DLC Space Age in mod-list.json
158159 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
159164
160165import_save :
161166 # enable save importer
@@ -290,15 +295,15 @@ server_settings:
290295# # @param rcon.external Enable RCON external access (deploy RCON service)
291296# # @param rcon.type RCON service type
292297# # @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
294299# # @param rcon.password Password for RCON, ignored if `rcon.passwordSecret` is set
295300# # @param rcon.port RCON service external port
296301# Password and port for the rcon service
297302rcon :
298303 external : true
299304 type : LoadBalancer
300305 serviceAnnotations : {}
301- # Existing secret containing a `password ` data field
306+ # Existing secret containing a `rconpw ` data field
302307 passwordSecret : " "
303308
304309 # Password for rcon
0 commit comments