Compare commits

..

3 Commits

Author SHA1 Message Date
Gitea Actions Bot 7d6f2b0063 Auto-update README with current k8s applications
Terraform / Terraform (pull_request) Failing after 4s
Generated by CI/CD workflow on 2026-05-04 17:20:35

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-05-04 17:20:35 +00:00
Ultradesu eb27dcf65b Added oauth2 proxy
Check with kubeconform / lint (push) Successful in 15s
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 24s
Auto-update README / Generate README and Create MR (push) Successful in 35s
2026-05-04 18:19:41 +01:00
Ultradesu e44cf95bb2 Added oauth2 proxy
Update Kubernetes Services Wiki / Generate and Update K8s Wiki (push) Successful in 13s
Check with kubeconform / lint (push) Successful in 21s
Auto-update README / Generate README and Create MR (push) Successful in 32s
2026-05-04 18:15:48 +01:00
4 changed files with 6 additions and 22 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ spec:
kind: Rule kind: Rule
middlewares: middlewares:
- name: keycloak-auth - name: keycloak-auth
namespace: oauth2-proxy namespace: kube-system
services: services:
- name: secret-reader - name: secret-reader
port: 80 port: 80
+3 -3
View File
@@ -10,10 +10,10 @@ spec:
template: template:
type: Opaque type: Opaque
data: data:
client_id: oauth2-proxy client-id: oauth2-proxy
client_secret: |- client-secret: |-
{{ .client_secret }} {{ .client_secret }}
cookie_secret: |- cookie-secret: |-
{{ .cookie_secret }} {{ .cookie_secret }}
data: data:
- secretKey: client_secret - secretKey: client_secret
+1 -1
View File
@@ -3,6 +3,7 @@ apiVersion: traefik.io/v1alpha1
kind: Middleware kind: Middleware
metadata: metadata:
name: keycloak-auth name: keycloak-auth
namespace: kube-system
spec: spec:
forwardAuth: forwardAuth:
address: http://oauth2-proxy.oauth2-proxy.svc:80/oauth2/auth address: http://oauth2-proxy.oauth2-proxy.svc:80/oauth2/auth
@@ -11,4 +12,3 @@ spec:
- X-Auth-Request-User - X-Auth-Request-User
- X-Auth-Request-Email - X-Auth-Request-Email
- X-Auth-Request-Groups - X-Auth-Request-Groups
- Authorization
+1 -17
View File
@@ -1,6 +1,7 @@
replicaCount: 1 replicaCount: 1
config: config:
existingSecret: oauth2-proxy-creds
configFile: |- configFile: |-
provider = "keycloak-oidc" provider = "keycloak-oidc"
provider_display_name = "Keycloak" provider_display_name = "Keycloak"
@@ -21,23 +22,6 @@ config:
code_challenge_method = "S256" code_challenge_method = "S256"
scope = "openid profile email" scope = "openid profile email"
extraEnv:
- name: OAUTH2_PROXY_CLIENT_ID
valueFrom:
secretKeyRef:
name: oauth2-proxy-creds
key: client_id
- name: OAUTH2_PROXY_CLIENT_SECRET
valueFrom:
secretKeyRef:
name: oauth2-proxy-creds
key: client_secret
- name: OAUTH2_PROXY_COOKIE_SECRET
valueFrom:
secretKeyRef:
name: oauth2-proxy-creds
key: cookie_secret
ingress: ingress:
enabled: true enabled: true
className: traefik className: traefik