You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## You have to expose factorio on a NodePort and map a port between 30000 and 32767, but the nativ port ist 34197. So you have always to specify the port in factorio.
25
+
## The best way ist to define a ClusterIP service and define one or more externalIPs. Of course this IPs must be avaiable on the node the factorio runs the pod!
17
26
service:
18
-
type: LoadBalancer
19
-
port: 30000
20
-
# Compute Resources required by the operator container
21
-
resources: # +doc-gen:break
27
+
type: ClusterIP
28
+
port: 34197
29
+
## If you are able in your cluster to map an external IP, set it here
30
+
# externalIPs:
31
+
# - "192.168.0.1"
32
+
# - "192.168.0.2"
33
+
## If you use "type: NodePort" set the port to a value you like in the range of 30000-32767. Leave it blank for a random port
34
+
# nodePort: ""
35
+
## Examples:
36
+
## NodePort setup
37
+
# type: NodePort
38
+
# nodePort: ""
39
+
## ClusterIp setup
40
+
# ClusterIP:
41
+
# port: 34197
42
+
## LoadBalancer setup
43
+
# type: LoadBalancer
44
+
45
+
46
+
## Compute Resources required by the operator container
47
+
resources:
48
+
## We have to ensure that factorio have enough computing resources avaiable. We set here an absolute minimum
49
+
## Keep in mind that big factorio base can consume a lot of memory and cpu
22
50
requests:
23
51
memory: 512Mi
24
52
cpu: 500m
25
-
# Node labels for pod assignment
26
-
# Example:
27
-
# nodeSelector:
53
+
## If you like to limit factiorio resources
54
+
# limits:
55
+
# memory: 1024Mi
56
+
# cpu: 1000m
57
+
58
+
# Node labels for pod assignment. Remove the curly braces!
59
+
nodeSelector: {}
28
60
# beta.kubernetes.io/os: linux
29
61
# beta.kubernetes.io/arch: amd64
30
-
nodeSelector: {} # +doc-gen:break
62
+
# kubernetes.io/hostname: your-cool-hostname
63
+
64
+
## Strategy used to replace old pods
65
+
## IMPORTANT: use with care, it is suggested to leave as that for upgrade purposes
0 commit comments