Compare commits

..

1 Commits

Author SHA1 Message Date
Gitea Actions Bot ab1e0c9f2a Auto-update README with current k8s applications
Keycloak Terraform / Terraform (pull_request) Successful in 18s
Generated by CI/CD workflow on 2026-06-01 10:32:56

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-06-01 10:32:56 +00:00
4 changed files with 45 additions and 19 deletions
+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
+15 -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:
@@ -46,6 +47,10 @@ spec:
value: "8000" value: "8000"
- name: DOCS - name: DOCS
value: "true" value: "true"
- name: UVICORN_SSL_CERTFILE
value: "/app/tls/tls.crt"
- name: UVICORN_SSL_KEYFILE
value: "/app/tls/tls.key"
- name: CUSTOM_TEMPLATES_DIRECTORY - name: CUSTOM_TEMPLATES_DIRECTORY
value: "/code/app/templates/" value: "/code/app/templates/"
- name: SUBSCRIPTION_PAGE_TEMPLATE - name: SUBSCRIPTION_PAGE_TEMPLATE
@@ -55,9 +60,15 @@ spec:
containerPort: 8000 containerPort: 8000
protocol: TCP protocol: TCP
volumeMounts: volumeMounts:
- name: tls
mountPath: /app/tls
readOnly: true
- name: subscription-template - name: subscription-template
mountPath: /code/app/templates/subscription mountPath: /code/app/templates/subscription
volumes: volumes:
- name: tls
secret:
secretName: pasarguard-tls
- name: subscription-template - name: subscription-template
emptyDir: {} emptyDir: {}
--- ---
@@ -65,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
+27 -11
View File
@@ -1,15 +1,31 @@
---
apiVersion: traefik.io/v1alpha1 apiVersion: traefik.io/v1alpha1
kind: IngressRoute kind: ServersTransport
metadata: metadata:
name: pasarguard name: pasarguard-transport
spec: spec:
entryPoints: insecureSkipVerify: true
- websecure ---
routes: apiVersion: networking.k8s.io/v1
- match: Host(`ps.hexor.cy`) kind: Ingress
kind: Rule metadata:
services: name: pasarguard-ingress
- name: pasarguard annotations:
port: 80 traefik.ingress.kubernetes.io/router.entrypoints: websecure
spec:
ingressClassName: traefik
rules:
- host: ps.hexor.cy
http:
paths:
- path: /
pathType: Prefix
backend:
service:
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/*"]