Files
truecharts/charts/stable/valheim/values.yaml
T
Dan b71eb0f9ef fix(valheim): fix open portal button (#4929)
* fix(valheim): remove unnecessary quotes

* fix(valheim): order variables consistently

Keep the top level boolean values for groups of settings ahead of the
remaining settings.

* fix(valheim): remove extra port

This port is no longer required:
  https://valheimbugs.featureupvote.com/suggestions/219538/please-clarify-is-port-2458-needed-for-dedicated-servers

* fix(valheim): include the portalLink directly

Move from the Include template to directly including the contents in
advance of changing the default "open" port.

* fix(valheim): fix open portal button

The "Open" link previously opened the STATUS_HTTP_PORT, which serves a
status.json generated by querying the Valheim server's query port.  Now
it opens the SUPERVISOR_HTTP_PORT which presents a status and control
web interface for the various processes running under the supervisor.

This seems much more useful than the blank default and JSON file
available in the other server.

* fix(valheim): bump minor version
2022-11-30 21:28:34 +02:00

72 lines
1.4 KiB
YAML

image:
repository: tccr.io/truecharts/valheim-server
tag: latest@sha256:d2b203c3e3d8ff766e9131a0eb69d67ded238f652acf0121bc350ff796bf1eeb
pullPolicy: IfNotPresent
secretEnv:
SUPERVISOR_HTTP_USER: admin
SUPERVISOR_HTTP_PASS: secret
SERVER_PASS: secret
env:
STATUS_HTTP: true
STATUS_HTTP_PORT: "{{ .Values.service.main.ports.main.port }}"
SUPERVISOR_HTTP: true
SUPERVISOR_HTTP_PORT: "{{ .Values.service.supervisor.ports.supervisor.port }}"
SERVER_NAME: My Server
SERVER_PORT: "{{ .Values.service.valheim.ports.valheim1.port }}"
WORLD_NAME: Dedicated
SERVER_PUBLIC: true
UPDATE_INTERVAL: 10800
BACKUPS: true
BACKUPS_INTERVAL: 43200
BACKUPS_DIRECTORY: /backups
BACKUPS_MAX_AGE: 3
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
podSecurityContext:
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 9010
supervisor:
enabled: true
ports:
supervisor:
enabled: true
port: 9011
valheim:
enabled: true
type: LoadBalancer
ports:
valheim1:
enabled: true
port: 2456
protocol: UDP
valheim2:
enabled: true
port: 2457
protocol: UDP
ingress:
supervisor:
autoLink: true
persistence:
config:
enabled: true
mountPath: /config
backups:
enabled: true
mountPath: /backups
portal:
enabled: true