forked from billimek/k8s-gitops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalheim.yaml
86 lines (86 loc) · 2.22 KB
/
valheim.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
name: valheim
namespace: default
spec:
interval: 5m
chart:
spec:
# renovate: registryUrl=https://k8s-at-home.com/charts/
chart: valheim
version: 2.4.0
sourceRef:
kind: HelmRepository
name: k8s-at-home-charts
namespace: flux-system
interval: 5m
values:
image:
repository: lloesche/valheim-server
tag: latest
pullPolicy: Always
env:
SERVER_NAME: Billimek's Kubernetes Valheim
WORLD_NAME: enormthole
SERVER_PUBLIC: true
SUPERVISOR_HTTP: true
STATUS_HTTP: true
VALHEIM_PLUS: true
VPCFG_Server_enabled: true
VPCFG_Server_enforceMod: true
VPCFG_FireSource_enabled: true
VPCFG_FireSource_fires: true
VPCFG_Hud_enabled: true
VPCFG_Hud_showRequiredItems: true
VPCFG_Hud_experienceGainedNotifications: true
VPCFG_Hud_displayStaminaValue: true
VPCFG_Map_enabled: true
VPCFG_Map_shareMapProgression: true
VPCFG_Player_enabled: true
VPCFG_Player_deathPenaltyMultiplier: -85
TZ: America/New_York
# DNS_1: 8.8.8.8
# DNS_2: 8.8.4.4
persistence:
config:
enabled: true
mountPath: /config
storageClass: "rook-ceph-block"
size: 5Gi
service:
type: LoadBalancer
externalTrafficPolicy: Cluster
loadBalancerIP: 10.0.6.58
annotations:
metallb.universe.tf/allow-shared-ip: valheim
additionalServices:
- enabled: true
nameSuffix: supervisor
type: LoadBalancer
loadBalancerIP: 10.0.6.58
port:
port: 9001
name: supervisor
protocol: TCP
# targetPort: supervisor
annotations:
metallb.universe.tf/allow-shared-ip: valheim
additionalPorts:
- name: status
port: 80
protocol: TCP
targetPort: 80
resources:
requests:
memory: 4096Mi
cpu: 500m
limits:
memory: 8192Mi
podAnnotations:
backup.velero.io/backup-volumes: config
valuesFrom:
- kind: Secret
name: "valheim-helm-values"
optional: false