Compare commits

..

1 Commits

Author SHA1 Message Date
Gitea Actions Bot 9c0ea8f0bf Auto-update README with current k8s applications
Keycloak Terraform / Terraform (pull_request) Successful in 14s
Generated by CI/CD workflow on 2026-06-01 10:26:02

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-06-01 10:26:02 +00:00
6 changed files with 31 additions and 26 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ spec:
#OIDC_SESSION_SECRET: |- #OIDC_SESSION_SECRET: |-
# {{ .session_secret }} # {{ .session_secret }}
PG_STRING: |- PG_STRING: |-
postgresql://furumi_dev:{{ .pg_pass }}@psql.psql.svc/furumi_dev postgresql://furumi:{{ .pg_pass }}@psql.psql.svc/furumi
data: data:
# - secretKey: client_id # - secretKey: client_id
# sourceRef: # sourceRef:
+2 -2
View File
@@ -70,7 +70,7 @@ kind: Deployment
metadata: metadata:
name: gitea-runner name: gitea-runner
spec: spec:
replicas: 1 replicas: 2
selector: selector:
matchLabels: matchLabels:
app: gitea-runner app: gitea-runner
@@ -115,7 +115,7 @@ spec:
- key: kubernetes.io/hostname - key: kubernetes.io/hostname
operator: In operator: In
values: values:
#- uk-desktop.tail2fe2d.ts.net - uk-desktop.tail2fe2d.ts.net
- ai.tail2fe2d.ts.net - ai.tail2fe2d.ts.net
- weight: 50 - weight: 50
preference: preference:
+3 -2
View File
@@ -1,4 +1,5 @@
--- ---
image: &image 'pasarguard/node:v0.4.0'
apiVersion: apps/v1 apiVersion: apps/v1
kind: DaemonSet kind: DaemonSet
metadata: metadata:
@@ -46,7 +47,7 @@ spec:
mountPath: /scripts mountPath: /scripts
containers: containers:
- name: pasarguard-node - name: pasarguard-node
image: pasarguard/node:v0.4.0 image: *image
imagePullPolicy: Always imagePullPolicy: Always
command: command:
- /bin/sh - /bin/sh
@@ -219,4 +220,4 @@ roleRef:
subjects: subjects:
- kind: ServiceAccount - kind: ServiceAccount
name: pasarguard-node name: pasarguard-node
namespace: pasarguard namespace: pasarguard
+5 -1
View File
@@ -1,4 +1,5 @@
--- ---
image: &image 'pasarguard/panel:v4.0.2'
apiVersion: apps/v1 apiVersion: apps/v1
kind: Deployment kind: Deployment
metadata: metadata:
@@ -34,7 +35,7 @@ spec:
mountPath: /templates/subscription mountPath: /templates/subscription
containers: containers:
- name: pasarguard-web - name: pasarguard-web
image: pasarguard/panel:v4.0.2 image: *image
imagePullPolicy: Always imagePullPolicy: Always
envFrom: envFrom:
- secretRef: - secretRef:
@@ -75,6 +76,9 @@ apiVersion: v1
kind: Service kind: Service
metadata: metadata:
name: pasarguard name: pasarguard
annotations:
traefik.ingress.kubernetes.io/service.serversscheme: https
traefik.ingress.kubernetes.io/service.serverstransport: pasarguard-pasarguard-transport@kubernetescrd
spec: spec:
selector: selector:
app: pasarguard app: pasarguard
+20 -15
View File
@@ -4,23 +4,28 @@ kind: ServersTransport
metadata: metadata:
name: pasarguard-transport name: pasarguard-transport
spec: spec:
serverName: ps.hexor.cy
insecureSkipVerify: true insecureSkipVerify: true
--- ---
apiVersion: traefik.io/v1alpha1 apiVersion: networking.k8s.io/v1
kind: IngressRoute kind: Ingress
metadata: metadata:
name: pasarguard name: pasarguard-ingress
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: websecure
spec: spec:
entryPoints: ingressClassName: traefik
- websecure rules:
routes: - host: ps.hexor.cy
- match: Host(`ps.hexor.cy`) http:
kind: Rule paths:
services: - path: /
- name: pasarguard pathType: Prefix
port: 80 backend:
scheme: https service:
serversTransport: pasarguard-transport name: pasarguard
port:
number: 80
tls: tls:
secretName: pasarguard-tls - secretName: pasarguard-tls
hosts:
- ps.hexor.cy
-5
View File
@@ -41,11 +41,6 @@ oauth2_applications = {
post_logout_redirect_uris = ["https://gf.hexor.cy/*"] post_logout_redirect_uris = ["https://gf.hexor.cy/*"]
} }
FuruMusic = { FuruMusic = {
redirect_uris = ["https://music.hexor.cy/auth/oidc/callback"]
web_origins = ["https://music.hexor.cy"]
post_logout_redirect_uris = ["https://music.hexor.cy/*"]
}
FuruMusic-dev = {
redirect_uris = ["https://music-dev.hexor.cy/auth/oidc/callback", "http://127.0.0.1:3000/auth/oidc/callback", "http://10.0.5.103:3000/auth/oidc/callback"] redirect_uris = ["https://music-dev.hexor.cy/auth/oidc/callback", "http://127.0.0.1:3000/auth/oidc/callback", "http://10.0.5.103:3000/auth/oidc/callback"]
web_origins = ["https://music-dev.hexor.cy", "http://127.0.0.1:3000", "http://10.0.5.103:3000"] web_origins = ["https://music-dev.hexor.cy", "http://127.0.0.1:3000", "http://10.0.5.103:3000"]
post_logout_redirect_uris = ["https://music-dev.hexor.cy/*", "http://127.0.0.1:3000/*", "http://10.0.5.103:3000/*"] post_logout_redirect_uris = ["https://music-dev.hexor.cy/*", "http://127.0.0.1:3000/*", "http://10.0.5.103:3000/*"]