Skip to content

Commit 299fb9a

Browse files
committed
removed rcon
1 parent d3e0f2b commit 299fb9a

1 file changed

Lines changed: 32 additions & 1 deletion

File tree

  • nix-k8s-homelab/charts/servers/factorioVanilla/base

nix-k8s-homelab/charts/servers/factorioVanilla/base/values.yaml

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ port_fixer:
4242
# Note: Port forwarding for incoming traffic still needs to be set up properly for this to work.
4343
# For more info, check out:
4444
# - https://github.com/SQLJames/factorio-server-charts/issues/15
45-
enabled: true
45+
enabled: false
4646
image:
4747
repository: "ghcr.io/zcube/factorio-port-fixer"
4848
pullPolicy: Always
@@ -71,6 +71,37 @@ persistence:
7171
## If you have additional labels to apply to the volume
7272
labels: {}
7373

74+
## @param rcon.external Enable RCON external access (deploy RCON service)
75+
## @param rcon.type RCON service type
76+
## @param rcon.serviceAnnotations RCON service annotations
77+
## @param rcon.passwordSecret Existing secret containing a `rconpw` data field
78+
## @param rcon.password Password for RCON, ignored if `rcon.passwordSecret` is set
79+
## @param rcon.port RCON service external port
80+
# Password and port for the rcon service
81+
rcon:
82+
## Represents the dual-stack-ness requested or required by this Service. Possible values are
83+
## SingleStack, PreferDualStack or RequireDualStack.
84+
## The ipFamilies and clusterIPs fields depend on the value of this field.
85+
## Ref: https://kubernetes.io/docs/concepts/services-networking/dual-stack/
86+
ipFamilyPolicy: "SingleStack"
87+
88+
## List of IP families (e.g. IPv4, IPv6) assigned to the service. This field is usually assigned automatically
89+
## based on cluster configuration and the ipFamilyPolicy field.
90+
## Ref: https://kubernetes.io/docs/concepts/services-networking/dual-stack/
91+
ipFamilies:
92+
- IPv4
93+
external: false
94+
type: LoadBalancer
95+
serviceAnnotations: {}
96+
# Existing secret containing a `rconpw` data field
97+
passwordSecret: ""
98+
99+
# Password for rcon
100+
password: "CHANGEMECHANGEME"
101+
102+
# rcon port
103+
port: 30100
104+
74105
## @param factorioServer.save_name Factorio save name
75106
## @param factorioServer.generate_new_save Generate a new save if `save_name` is not found
76107
## @param factorioServer.update_mods_on_start Update mods on server start

0 commit comments

Comments
 (0)