postinstall stuff (tailscale ingresses)
This commit is contained in:
62
immich-argocd-postInstall/templates/_helpers.tpl
Normal file
62
immich-argocd-postInstall/templates/_helpers.tpl
Normal file
@@ -0,0 +1,62 @@
|
||||
{{/*
|
||||
Expand the name of the chart.
|
||||
*/}}
|
||||
{{- define "immich-argocd-postInstall.name" -}}
|
||||
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Create a default fully qualified app name.
|
||||
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
||||
If release name contains chart name it will be used as a full name.
|
||||
*/}}
|
||||
{{- define "immich-argocd-postInstall.fullname" -}}
|
||||
{{- if .Values.fullnameOverride }}
|
||||
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
|
||||
{{- else }}
|
||||
{{- $name := default .Chart.Name .Values.nameOverride }}
|
||||
{{- if contains $name .Release.Name }}
|
||||
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
|
||||
{{- else }}
|
||||
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Create chart name and version as used by the chart label.
|
||||
*/}}
|
||||
{{- define "immich-argocd-postInstall.chart" -}}
|
||||
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Common labels
|
||||
*/}}
|
||||
{{- define "immich-argocd-postInstall.labels" -}}
|
||||
helm.sh/chart: {{ include "immich-argocd-postInstall.chart" . }}
|
||||
{{ include "immich-argocd-postInstall.selectorLabels" . }}
|
||||
{{- if .Chart.AppVersion }}
|
||||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
||||
{{- end }}
|
||||
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Selector labels
|
||||
*/}}
|
||||
{{- define "immich-argocd-postInstall.selectorLabels" -}}
|
||||
app.kubernetes.io/name: {{ include "immich-argocd-postInstall.name" . }}
|
||||
app.kubernetes.io/instance: {{ .Release.Name }}
|
||||
{{- end }}
|
||||
|
||||
{{/*
|
||||
Create the name of the service account to use
|
||||
*/}}
|
||||
{{- define "immich-argocd-postInstall.serviceAccountName" -}}
|
||||
{{- if .Values.serviceAccount.create }}
|
||||
{{- default (include "immich-argocd-postInstall.fullname" .) .Values.serviceAccount.name }}
|
||||
{{- else }}
|
||||
{{- default "default" .Values.serviceAccount.name }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
14
immich-argocd-postInstall/templates/filebrowser-ingress.yaml
Normal file
14
immich-argocd-postInstall/templates/filebrowser-ingress.yaml
Normal file
@@ -0,0 +1,14 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: ts-filebrowser
|
||||
spec:
|
||||
defaultBackend:
|
||||
service:
|
||||
name: filebrowser
|
||||
port:
|
||||
number: 10187
|
||||
ingressClassName: tailscale
|
||||
tls:
|
||||
- hosts:
|
||||
- {{ .Values.tailscaleIngresses.filebrowserHostName }}
|
||||
16
immich-argocd-postInstall/templates/immich-ingress.yaml
Normal file
16
immich-argocd-postInstall/templates/immich-ingress.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: ts-immich
|
||||
annotations:
|
||||
tailscale.com/funnel: "true"
|
||||
spec:
|
||||
defaultBackend:
|
||||
service:
|
||||
name: immich-server
|
||||
port:
|
||||
name: http
|
||||
ingressClassName: tailscale
|
||||
tls:
|
||||
- hosts:
|
||||
- {{ .Values.tailscaleIngresses.immichHostName }}
|
||||
Reference in New Issue
Block a user