Skip to content

Commit 843b383

Browse files
author
James Rhoat
authored
Merge pull request #41 from BongoEADGC6/main
2 parents 93cc63c + 072c5fb commit 843b383

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

charts/factorio-server-charts/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ sources:
2020
# This is the chart version. This version number should be incremented each time you make changes
2121
# to the chart and its templates, including the app version.
2222
# Versions are expected to follow Semantic Versioning (https://semver.org/)
23-
version: 1.2.4
23+
version: 1.2.5
2424

2525
# This is the version number of the application being deployed. This version number should be
2626
# incremented each time you make changes to the application. Versions are not expected to

charts/factorio-server-charts/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,7 @@ If you do run into any issues with mods, I will try to work with you on finding
283283
| `server_settings.maximum_segment_size_peer_count` | Minimum network messages segment count | `10` |
284284
| `rcon.external` | Enable RCON external access (deploy RCON service) | `true` |
285285
| `rcon.type` | RCON service type | `LoadBalancer` |
286+
| `rcon.serviceAnnotations` | RCON service annotations | `{}` |
286287
| `rcon.passwordSecret` | Existing secret containing a `password` data field | `""` |
287288
| `rcon.password` | Password for RCON, ignored if `rcon.passwordSecret` is set | `CHANGEMECHANGEME` |
288289
| `rcon.port` | RCON service external port | `30100` |

charts/factorio-server-charts/templates/rcon-service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
release: "{{ .Release.Name }}"
1010
heritage: "{{ .Release.Service }}"
1111
annotations:
12-
{{- range $key, $value := .Values.service.annotations }}
12+
{{- range $key, $value := .Values.rcon.serviceAnnotations }}
1313
{{ $key }}: {{ $value | quote }}
1414
{{- end }}
1515
spec:

charts/factorio-server-charts/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,14 +280,15 @@ server_settings:
280280

281281
## @param rcon.external Enable RCON external access (deploy RCON service)
282282
## @param rcon.type RCON service type
283+
## @param rcon.serviceAnnotations RCON service annotations
283284
## @param rcon.passwordSecret Existing secret containing a `password` data field
284285
## @param rcon.password Password for RCON, ignored if `rcon.passwordSecret` is set
285286
## @param rcon.port RCON service external port
286287
# Password and port for the rcon service
287288
rcon:
288289
external: true
289290
type: LoadBalancer
290-
291+
serviceAnnotations: {}
291292
# Existing secret containing a `password` data field
292293
passwordSecret: ""
293294

0 commit comments

Comments
 (0)