Compare commits

..

1 Commits

Author SHA1 Message Date
Gitea Actions Bot 46a5d381f3 Auto-update README with current k8s applications
Keycloak Terraform / Terraform (pull_request) Successful in 21s
Generated by CI/CD workflow on 2026-06-04 11:55:29

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-06-04 11:55:29 +00:00
3 changed files with 12 additions and 16 deletions
+5 -5
View File
@@ -22,7 +22,7 @@ spec:
entryPoints: entryPoints:
- websecure - websecure
routes: routes:
- match: Host(`proxy.hexor.cy`) - match: Host(`secret-reader.hexor.cy`)
kind: Rule kind: Rule
middlewares: middlewares:
- name: auth-proxy - name: auth-proxy
@@ -30,16 +30,16 @@ spec:
- name: secret-reader - name: secret-reader
port: 80 port: 80
tls: tls:
secretName: proxy-tls secretName: secret-reader-tls
--- ---
apiVersion: cert-manager.io/v1 apiVersion: cert-manager.io/v1
kind: Certificate kind: Certificate
metadata: metadata:
name: proxy-tls name: secret-reader-tls
spec: spec:
secretName: proxy-tls secretName: secret-reader-tls
issuerRef: issuerRef:
name: letsencrypt name: letsencrypt
kind: ClusterIssuer kind: ClusterIssuer
dnsNames: dnsNames:
- proxy.hexor.cy - secret-reader.hexor.cy
+2 -2
View File
@@ -2,8 +2,8 @@ clusterDomain: cluster.local
extraEnvVars: extraEnvVars:
GLOBAL_LOG_LEVEL: debug GLOBAL_LOG_LEVEL: debug
OAUTH_PROVIDER_NAME: keycloak OAUTH_PROVIDER_NAME: authentik
OPENID_PROVIDER_URL: https://auth.hexor.cy/auth/realms/hexor/.well-known/openid-configuration OPENID_PROVIDER_URL: https://idm.hexor.cy/application/o/openwebui/.well-known/openid-configuration
OPENID_REDIRECT_URI: https://ai.hexor.cy/oauth/oidc/callback OPENID_REDIRECT_URI: https://ai.hexor.cy/oauth/oidc/callback
WEBUI_URL: https://ai.hexor.cy WEBUI_URL: https://ai.hexor.cy
# Allows auto-creation of new users using OAuth. Must be paired with ENABLE_LOGIN_FORM=false. # Allows auto-creation of new users using OAuth. Must be paired with ENABLE_LOGIN_FORM=false.
+4 -8
View File
@@ -9,12 +9,12 @@ groups = [
proxy_applications = { proxy_applications = {
secret-reader = { secret-reader = {
domain = "proxy.hexor.cy" domain = "secret-reader.hexor.cy"
allowed_groups = ["hexor-admin", "app-pass"] allowed_groups = ["hexor-guest", "hexor-admin"]
} }
pass = { pass = {
domain = "pass.hexor.cy" domain = "pass.hexor.cy"
allowed_groups = ["hexor-admin", "app-pass"] allowed_groups = ["hexor-guest", "hexor-admin"]
} }
} }
@@ -40,11 +40,6 @@ oauth2_applications = {
web_origins = ["https://gf.hexor.cy"] web_origins = ["https://gf.hexor.cy"]
post_logout_redirect_uris = ["https://gf.hexor.cy/*"] post_logout_redirect_uris = ["https://gf.hexor.cy/*"]
} }
openwebui = {
redirect_uris = ["https://ai.hexor.cy/oauth/oidc/callback"]
web_origins = ["https://ai.hexor.cy"]
post_logout_redirect_uris = ["https://ai.hexor.cy/*"]
}
FuruMusic = { FuruMusic = {
redirect_uris = ["https://music.hexor.cy/auth/oidc/callback"] redirect_uris = ["https://music.hexor.cy/auth/oidc/callback"]
web_origins = ["https://music.hexor.cy"] web_origins = ["https://music.hexor.cy"]
@@ -61,3 +56,4 @@ oauth2_applications = {
post_logout_redirect_uris = ["https://pet.hexor.cy/*", "https://xn--l1acako8eb.xn--p1ai/*", "https://мурняня.рф/*"] post_logout_redirect_uris = ["https://pet.hexor.cy/*", "https://xn--l1acako8eb.xn--p1ai/*", "https://мурняня.рф/*"]
} }
} }