Fix kimai service configuration to use Ingress instead of LoadBalancer

This commit is contained in:
Jethro Cotton 2026-03-12 17:21:53 +13:00
parent cb0fd46d8b
commit 352d6accd7
3 changed files with 13 additions and 5 deletions

View file

@ -13,3 +13,8 @@ spec:
kind: HelmRepository kind: HelmRepository
name: robjuz name: robjuz
namespace: flux-system namespace: flux-system
valuesFrom:
- kind: ConfigMap
name: kimai-values
valuesKey: values.yaml

View file

@ -10,5 +10,5 @@ configMapGenerator:
files: files:
- values.yaml - values.yaml
#generatorOptions: generatorOptions:
# disableNameSuffixHash: true disableNameSuffixHash: true

View file

@ -3,7 +3,7 @@
ingress: ingress:
enabled: true enabled: true
className: nginx className: traefik
hosts: hosts:
- host: kimai.local - host: kimai.local
@ -25,3 +25,6 @@ mariadb:
database: kimai database: kimai
username: kimai username: kimai
password: kimai password: kimai
service:
type: ClusterIP