Compare commits

..

1 Commits

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

This PR updates the README.md file with the current list of applications found in the k8s/ directory structure.
2026-05-04 17:13:29 +00:00
2 changed files with 20 additions and 4 deletions
+3 -3
View File
@@ -10,10 +10,10 @@ spec:
template:
type: Opaque
data:
client-id: oauth2-proxy
client-secret: |-
client_id: oauth2-proxy
client_secret: |-
{{ .client_secret }}
cookie-secret: |-
cookie_secret: |-
{{ .cookie_secret }}
data:
- secretKey: client_secret
+17 -1
View File
@@ -1,7 +1,6 @@
replicaCount: 1
config:
existingSecret: oauth2-proxy-creds
configFile: |-
provider = "keycloak-oidc"
provider_display_name = "Keycloak"
@@ -22,6 +21,23 @@ config:
code_challenge_method = "S256"
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:
enabled: true
className: traefik