add minio tenant
This commit is contained in:
37
deploy/minio-tenant/ingress.yaml
Normal file
37
deploy/minio-tenant/ingress.yaml
Normal file
@@ -0,0 +1,37 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: minio-ingress
|
||||
namespace: minio-tenant
|
||||
annotations:
|
||||
kubernetes.io/ingress.class: nginx
|
||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
|
||||
nginx.ingress.kubernetes.io/ssl-passthrough: "true"
|
||||
spec:
|
||||
rules:
|
||||
- host: s3.minio.panic.haus
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: myminio
|
||||
port:
|
||||
number: 443
|
||||
- host: console.minio.panic.haus
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: myminio-console
|
||||
port:
|
||||
number: 9443
|
||||
tls:
|
||||
- hosts:
|
||||
- s3.minio.panic.haus
|
||||
- console.minio.panic.haus
|
||||
secretName: minio-tls
|
||||
Reference in New Issue
Block a user