cluster

Infrastructure files for Nordgedanken and Midnightthoughts.
git clone git://archive.git.mtrnord.blog/MTRNord/cluster.git
Log | Files | Refs | README

commit 4ac3dd6fe2e1eff46874bbc02c978585e91200c7
parent 03efbdea74850678022889a190cc28e99fcd7272
Author: MTRNord <MTRNord@users.noreply.github.com>
Date:   Sat,  3 Jan 2026 18:50:05 +0100

meow

Signed-off-by: MTRNord <MTRNord@users.noreply.github.com>

Diffstat:
Aapps/talos_cluster/convex/cors_middleware.yaml | 15+++++++++++++++
Mapps/talos_cluster/convex/deployment.yaml | 9++++-----
Mapps/talos_cluster/convex/kustomization.yaml | 1+
3 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/apps/talos_cluster/convex/cors_middleware.yaml b/apps/talos_cluster/convex/cors_middleware.yaml @@ -0,0 +1,15 @@ +apiVersion: traefik.io/v1alpha1 +kind: Middleware +metadata: + name: convex-headers + namespace: convex +spec: + headers: + accessControlAllowMethods: + - "*" + accessControlAllowHeaders: + - "*" + accessControlAllowOriginList: + - "*" + addVaryHeader: true + accessControlAllowCredentials: true diff --git a/apps/talos_cluster/convex/deployment.yaml b/apps/talos_cluster/convex/deployment.yaml @@ -43,9 +43,9 @@ spec: value: "1" - name: "DISABLE_BEACON" value: "1" + - name: "ACTIONS_USER_TIMEOUT_SECS" + value: "20" # Unused - # - name: "ACTIONS_USER_TIMEOUT_SECS" - # value: "" # - name: "AWS_ACCESS_KEY_ID" # value: "" # - name: "AWS_REGION" @@ -115,9 +115,8 @@ spec: env: - name: "NEXT_PUBLIC_DEPLOYMENT_URL" value: "https://convex.mtrnord.blog" - # Unused - #- name: "NEXT_PUBLIC_LOAD_MONACO_INTERNALLY" - # value: "" + - name: "NEXT_PUBLIC_LOAD_MONACO_INTERNALLY" + value: "true" resources: limits: {} requests: diff --git a/apps/talos_cluster/convex/kustomization.yaml b/apps/talos_cluster/convex/kustomization.yaml @@ -5,3 +5,4 @@ resources: - pvc.yaml - pg-secret.yaml - deployment.yaml + - cors_middleware.yaml