Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions charts/factorio-server-charts/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,9 @@ spec:
- pingpong3.factorio.com
- pingpong4.factorio.com
{{- end }}
{{- if .Values.additionalContainers }}
{{ toYaml .Values.additionalContainers | indent 6 }}
{{- end }}
{{- if .Values.nodeSelector }}
nodeSelector:
{{ toYaml .Values.nodeSelector | indent 8 }}
Expand Down
17 changes: 17 additions & 0 deletions charts/factorio-server-charts/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,23 @@ persistence:
## If you have additional labels to apply to the volume
labels: {}

#### Additional containers ####
### @section Additional Containers
# Specify any additional sidecar containers for the deployment here, such as log or metric collectors.
# See https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.34/#container-v1-core for the full Container
# reference.
additionalContainers: []
# - name: node_exporter
# image: quay.io/prometheus/node_exporter:v1.9.1
# command:
# - --collector.disable-defaults
# - --collector.textfile
# - --collector.textfile.directory=/factorio/script-output/
# ports:
# - name: metrics
# containerPort: 9100



#### Factorio application configuration ####
## @section Factorio Parameters
Expand Down