From 7650a874554fb90918eb91cd063f56b26071c2c1 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sun, 5 Apr 2026 20:59:47 -0500 Subject: [PATCH 1/2] feat: fix route, lables --- .../helm/postiz/templates/elasticsearch.yaml | 2 +- .../cl01tl/helm/postiz/templates/http-route.yaml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/clusters/cl01tl/helm/postiz/templates/elasticsearch.yaml b/clusters/cl01tl/helm/postiz/templates/elasticsearch.yaml index e1876794e..6ca89334c 100644 --- a/clusters/cl01tl/helm/postiz/templates/elasticsearch.yaml +++ b/clusters/cl01tl/helm/postiz/templates/elasticsearch.yaml @@ -6,7 +6,7 @@ metadata: labels: app.kubernetes.io/name: elasticsearch-postiz app.kubernetes.io/instance: {{ .Release.Name }} - app.kubernetes.io/part-of: {{ .Release.Name }}`` + app.kubernetes.io/part-of: {{ .Release.Name }} spec: # renovate: datasource=docker depName=elasticsearch version: 8.19.8@sha256:e6ef2af8db3269ffd075ebf5e605d62324345d646c4fa201654f648d1cad44a4 diff --git a/clusters/cl01tl/helm/postiz/templates/http-route.yaml b/clusters/cl01tl/helm/postiz/templates/http-route.yaml index 89111f547..90277c9d3 100644 --- a/clusters/cl01tl/helm/postiz/templates/http-route.yaml +++ b/clusters/cl01tl/helm/postiz/templates/http-route.yaml @@ -1,10 +1,10 @@ apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: - name: temporal-ui + name: postiz-temporal-web namespace: {{ .Release.Namespace }} labels: - app.kubernetes.io/name: temporal-ui + app.kubernetes.io/name: postiz-temporal-web app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/part-of: {{ .Release.Name }} spec: @@ -14,7 +14,7 @@ spec: name: traefik-gateway namespace: traefik hostnames: - - temporal-ui.alexlebens.net + - temporal-web.alexlebens.net rules: - matches: - path: @@ -23,7 +23,7 @@ spec: backendRefs: - group: '' kind: Service - name: temporal-ui + name: postiz-temporal-web port: 8080 weight: 100 @@ -31,10 +31,10 @@ spec: apiVersion: gateway.networking.k8s.io/v1 kind: HTTPRoute metadata: - name: temporal-frontend + name: postiz-temporal-frontend namespace: {{ .Release.Namespace }} labels: - app.kubernetes.io/name: temporal-frontend + app.kubernetes.io/name: postiz-temporal-frontend app.kubernetes.io/instance: {{ .Release.Name }} app.kubernetes.io/part-of: {{ .Release.Name }} spec: @@ -53,6 +53,6 @@ spec: backendRefs: - group: '' kind: Service - name: temporal-frontend - port: 80 + name: postiz-temporal-frontend + port: 7243 weight: 100 From fa7252a636029511a12acbe6a6ad9a0bb9f9ef59 Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Sun, 5 Apr 2026 21:08:24 -0500 Subject: [PATCH 2/2] feat: add support --- clusters/cl01tl/helm/blocky/values.yaml | 3 ++- clusters/cl01tl/helm/gatus/values.yaml | 6 ++++++ clusters/cl01tl/helm/homepage/values.yaml | 12 ++++++++++++ .../cl01tl/helm/postiz/templates/http-route.yaml | 4 ++-- hosts/ps08rp/blocky/config.yml | 3 ++- hosts/ps09rp/blocky/config.yml | 3 ++- 6 files changed, 26 insertions(+), 5 deletions(-) diff --git a/clusters/cl01tl/helm/blocky/values.yaml b/clusters/cl01tl/helm/blocky/values.yaml index d316ec069..55e6683a4 100644 --- a/clusters/cl01tl/helm/blocky/values.yaml +++ b/clusters/cl01tl/helm/blocky/values.yaml @@ -144,7 +144,8 @@ blocky: omni-tools IN CNAME traefik-cl01tl paperless-ngx IN CNAME traefik-cl01tl plex IN CNAME traefik-cl01tl - postiz IN CNAME traefik-cl01tl + postiz-temporal-web IN CNAME traefik-cl01tl + postiz-temporal-frontend IN CNAME traefik-cl01tl prometheus IN CNAME traefik-cl01tl prowlarr IN CNAME traefik-cl01tl qbittorrent IN CNAME traefik-cl01tl diff --git a/clusters/cl01tl/helm/gatus/values.yaml b/clusters/cl01tl/helm/gatus/values.yaml index 8d04398c3..c02f9415c 100644 --- a/clusters/cl01tl/helm/gatus/values.yaml +++ b/clusters/cl01tl/helm/gatus/values.yaml @@ -173,6 +173,12 @@ gatus: - name: home-assistant-code-server url: https://home-assistant-code-server.alexlebens.net <<: *defaults + - name: postiz-temporal-web + url: https://postiz-temporal-web.alexlebens.net + <<: *defaults + - name: postiz-temporal-frontend + url: https://postiz-temporal-frontend.alexlebens.net + <<: *defaults - name: argocd url: https://argocd.alexlebens.net <<: *defaults diff --git a/clusters/cl01tl/helm/homepage/values.yaml b/clusters/cl01tl/helm/homepage/values.yaml index 67f464f28..20f1cee41 100644 --- a/clusters/cl01tl/helm/homepage/values.yaml +++ b/clusters/cl01tl/helm/homepage/values.yaml @@ -344,6 +344,18 @@ homepage: href: https://home-assistant-code-server.alexlebens.net siteMonitor: http://home-assistant-code-server.home-assistant:8443 statusStyle: dot + - Temporal Web (Postiz): + icon: https://raw.githubusercontent.com/temporalio/documentation/47b489b69d7c7ee4c3a0880cc0faf11b5f4cdb2a/static/img/favicon.svg + description: Temporal Web + href: https://postiz-temporal-web.alexlebens.net + siteMonitor: http://postiz-temporal-web.postiz:8080 + statusStyle: dot + - Temporal Frontend (Postiz): + icon: https://raw.githubusercontent.com/temporalio/documentation/47b489b69d7c7ee4c3a0880cc0faf11b5f4cdb2a/static/img/favicon.svg + description: Temporal Frontend + href: https://postiz-temporal-frontend.alexlebens.net + siteMonitor: http://postiz-temporal-frontend.postiz:7243 + statusStyle: dot - Automation: - Continuous Deployment: icon: sh-argo-cd.webp diff --git a/clusters/cl01tl/helm/postiz/templates/http-route.yaml b/clusters/cl01tl/helm/postiz/templates/http-route.yaml index 90277c9d3..f62142a8e 100644 --- a/clusters/cl01tl/helm/postiz/templates/http-route.yaml +++ b/clusters/cl01tl/helm/postiz/templates/http-route.yaml @@ -14,7 +14,7 @@ spec: name: traefik-gateway namespace: traefik hostnames: - - temporal-web.alexlebens.net + - postiz-temporal-web.alexlebens.net rules: - matches: - path: @@ -44,7 +44,7 @@ spec: name: traefik-gateway namespace: traefik hostnames: - - temporal-frontend.alexlebens.net + - postiz-temporal-frontend.alexlebens.net rules: - matches: - path: diff --git a/hosts/ps08rp/blocky/config.yml b/hosts/ps08rp/blocky/config.yml index 4f92c22b0..5e3cc25df 100644 --- a/hosts/ps08rp/blocky/config.yml +++ b/hosts/ps08rp/blocky/config.yml @@ -121,7 +121,8 @@ customDNS: omni-tools IN CNAME traefik-cl01tl paperless-ngx IN CNAME traefik-cl01tl plex IN CNAME traefik-cl01tl - postiz IN CNAME traefik-cl01tl + postiz-temporal-web IN CNAME traefik-cl01tl + postiz-temporal-frontend IN CNAME traefik-cl01tl prometheus IN CNAME traefik-cl01tl prowlarr IN CNAME traefik-cl01tl qbittorrent IN CNAME traefik-cl01tl diff --git a/hosts/ps09rp/blocky/config.yml b/hosts/ps09rp/blocky/config.yml index c10efe2ce..168903ce3 100644 --- a/hosts/ps09rp/blocky/config.yml +++ b/hosts/ps09rp/blocky/config.yml @@ -142,7 +142,8 @@ customDNS: omni-tools IN CNAME traefik-cl01tl paperless-ngx IN CNAME traefik-cl01tl plex IN CNAME traefik-cl01tl - postiz IN CNAME traefik-cl01tl + postiz-temporal-web IN CNAME traefik-cl01tl + postiz-temporal-frontend IN CNAME traefik-cl01tl prometheus IN CNAME traefik-cl01tl prowlarr IN CNAME traefik-cl01tl qbittorrent IN CNAME traefik-cl01tl