Parametrize tailscale hostname

This commit is contained in:
2024-11-03 14:08:23 +00:00
parent 213f8ad117
commit 5281ee2f1b
4 changed files with 8 additions and 1 deletions

View File

@@ -14,6 +14,8 @@ spec:
helm:
valuesObject:
mainNamespace: {{ .Values.mainNamespace }}
tailscaleIngress:
hostName: {{ .Values.tailscaleIngress.hostName }}
destination:
server: https://kubernetes.default.svc # Targeting the current Kubernetes cluster
namespace: {{ .Values.mainNamespace }}

View File

@@ -1 +1,3 @@
mainNamespace: immich
tailscaleIngress:
hostName: "photos"

View File

@@ -13,4 +13,4 @@ spec:
ingressClassName: tailscale
tls:
- hosts:
- photos
- {{ .Values.tailscaleIngress.hostName }}

View File

@@ -4,3 +4,6 @@ immichDb:
dbClusterInstances: 3
dbClusterStorageClass:
dbClusterStorageSize: "10Gi"
tailscaleIngress:
hostName: "photos"