feat(minio): add minio object storage deployment
This commit is contained in:
38
apps/minio/ingress.yaml
Normal file
38
apps/minio/ingress.yaml
Normal file
@@ -0,0 +1,38 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: minio-ingress
|
||||
namespace: minio
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: cloudflare-issuer
|
||||
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
||||
spec:
|
||||
ingressClassName: traefik
|
||||
tls:
|
||||
- hosts:
|
||||
- minio.apps.k3s.stabify.de
|
||||
- s3.apps.k3s.stabify.de
|
||||
secretName: minio-tls
|
||||
rules:
|
||||
# Console Access (Browser UI)
|
||||
- host: minio.apps.k3s.stabify.de
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: minio
|
||||
port:
|
||||
number: 9001
|
||||
# API Access (Apps like Outline, etc.)
|
||||
- host: s3.apps.k3s.stabify.de
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: minio
|
||||
port:
|
||||
number: 9000
|
||||
Reference in New Issue
Block a user