FEAT(authelia): add oidc config

- for authelia sso (secrets from...
This commit is contained in:
2026-01-02 00:00:39 +09:00
parent 11adb91e19
commit 758149fb99
3 changed files with 48 additions and 3 deletions

View File

@@ -0,0 +1,45 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: minio-console
namespace: minio
labels:
app: minio-console
spec:
replicas: 1
selector:
matchLabels:
app: minio-console
template:
metadata:
labels:
app: minio-console
spec:
containers:
- name: console
image: ghcr.io/georgmangold/console:v1.9.1
ports:
- containerPort: 9090
name: http
env:
- name: CONSOLE_MINIO_SERVER
value: "http://minio.minio.svc.cluster.local:9000"
resources:
requests:
cpu: 10m
memory: 64Mi
limits:
memory: 128Mi
---
apiVersion: v1
kind: Service
metadata:
name: minio-console
namespace: minio
spec:
selector:
app: minio-console
ports:
- port: 9090
targetPort: 9090
name: http

View File

@@ -30,7 +30,6 @@ metadata:
namespace: minio
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.middlewares: authelia-authelia-auth@kubernetescrd
spec:
ingressClassName: traefik
tls:
@@ -48,7 +47,7 @@ spec:
service:
name: minio-console
port:
number: 9001
number: 9090
- host: minio0213.kro.kr
http:
paths:
@@ -58,4 +57,4 @@ spec:
service:
name: minio-console
port:
number: 9001
number: 9090

View File

@@ -5,3 +5,4 @@ resources:
- persistent-volumes.yaml
- vault/minio-root-password.yaml
- ingress.yaml
- console-deployment.yaml