Compare commits

...

6 Commits

Author SHA1 Message Date
forust fe0c7067b6 Merge branch 'main' of ssh://gitssh.forust.xyz:2221/forust/homelab
ci / validate (push) Successful in 4s
ci / build (push) Has been skipped
ci / lint-prettier (push) Failing after 8s
ci / lint-ruff (push) Successful in 7s
ci / lint-yaml (push) Failing after 6s
ci / lint-dockerfiles (push) Successful in 4s
ci / deploy-userbot-panel (push) Has been skipped
2026-09-10 11:42:17 +02:00
forust d0f0843774 Merge branch 'sidetree' 2026-09-10 11:41:35 +02:00
forust 81a5b207ac Merge branch 'main' of ssh://gitssh.forust.xyz:2221/forust/homelab
ci / lint-prettier (push) Failing after 8s
ci / lint-ruff (push) Successful in 5s
ci / lint-yaml (push) Failing after 7s
ci / lint-dockerfiles (push) Successful in 4s
ci / validate (push) Successful in 5s
ci / build (push) Has been skipped
ci / deploy-userbot-panel (push) Has been skipped
2026-09-10 11:41:31 +02:00
forust e3d5970ae3 chore: remove untracked README.md
ci / lint-prettier (push) Failing after 11s
ci / lint-ruff (push) Successful in 5s
ci / lint-yaml (push) Failing after 7s
ci / lint-dockerfiles (push) Successful in 4s
ci / validate (push) Successful in 5s
ci / build (push) Has been skipped
ci / deploy-userbot-panel (push) Has been skipped
2026-09-10 11:39:20 +02:00
forust 85f05c26cb feat(edu): activate k8s management for edu-master 2026-09-10 00:55:22 +02:00
forust fcc7b0d611 ci(deploy): gate redeploy behind manual workflow_dispatch
ci / lint-prettier (push) Successful in 8s
ci / lint-ruff (push) Successful in 4s
ci / lint-yaml (push) Successful in 7s
ci / lint-dockerfiles (push) Successful in 4s
ci / validate (push) Successful in 5s
ci / build (push) Successful in 2s
ci / deploy-userbot-panel (push) Has been skipped
removes automatic redeploy on push to main; deploy now runs only on
explicit manual trigger
2026-09-06 20:55:40 +02:00
4 changed files with 95 additions and 6 deletions
-3
View File
@@ -1,9 +1,6 @@
name: deploy
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
-3
View File
@@ -1,9 +1,6 @@
name: deploy
on:
push:
branches:
- main
workflow_dispatch:
concurrency:
View File
+95
View File
@@ -0,0 +1,95 @@
---
apiVersion: v1
kind: Namespace
metadata:
name: esp32
labels:
app.kubernetes.io/name: esp32
---
apiVersion: v1
kind: Service
metadata:
name: esp
namespace: esp32
labels:
app.kubernetes.io/name: esp32
spec:
type: ClusterIP
ports:
- name: http
port: 80
targetPort: 80
---
apiVersion: v1
kind: Endpoints
metadata:
name: esp
namespace: esp32
labels:
app.kubernetes.io/name: esp32
subsets:
- addresses:
- ip: 192.168.88.88
ports:
- name: http
port: 80
---
apiVersion: traefik.io/v1alpha1
kind: Middleware
metadata:
name: strip-esp-headers
namespace: esp32
labels:
app.kubernetes.io/name: esp32
spec:
headers:
customRequestHeaders:
Cookie: ""
Referer: ""
Origin: ""
User-Agent: ""
Accept: ""
Accept-Encoding: ""
Accept-Language: ""
Upgrade-Insecure-Requests: ""
Cache-Control: ""
Pragma: ""
Connection: ""
Te: ""
Sec-Fetch-Dest: ""
Sec-Fetch-Mode: ""
Sec-Fetch-Site: ""
Sec-Fetch-User: ""
Sec-CH-UA: ""
Sec-CH-UA-Mobile: ""
Sec-CH-UA-Platform: ""
X-Forwarded-For: ""
X-Forwarded-Host: ""
X-Forwarded-Port: ""
X-Forwarded-Proto: ""
X-Forwarded-Server: ""
Forwarded: ""
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: esp
namespace: esp32
labels:
app.kubernetes.io/name: esp32
spec:
entryPoints:
- websecure
routes:
- match: Host(`esp.forust.xyz`)
kind: Rule
middlewares:
- name: strip-esp-headers
namespace: esp32
services:
- kind: Service
name: esp
namespace: esp32
port: 80
tls:
certResolver: letsencrypt