REFACTOR(minio): integrate API ingress
- Add API ingress (s3.minio0213.kro.kr) to helm-values.yaml - Move storage-class.yaml, persistent-volumes.yaml to manifests/ - Move console-deployment.yaml to manifests/ - Create console-ingress.yaml in manifests/ for custom console
This commit is contained in:
35
minio/manifests/console-ingress.yaml
Normal file
35
minio/manifests/console-ingress.yaml
Normal file
@@ -0,0 +1,35 @@
|
||||
apiVersion: networking.k8s.io/v1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: minio-console
|
||||
namespace: minio
|
||||
annotations:
|
||||
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||
spec:
|
||||
ingressClassName: traefik
|
||||
tls:
|
||||
- hosts:
|
||||
- minio.minio0213.kro.kr
|
||||
- minio0213.kro.kr
|
||||
secretName: minio-console-tls
|
||||
rules:
|
||||
- host: minio.minio0213.kro.kr
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: minio-console-ui
|
||||
port:
|
||||
number: 9090
|
||||
- host: minio0213.kro.kr
|
||||
http:
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
backend:
|
||||
service:
|
||||
name: minio-console-ui
|
||||
port:
|
||||
number: 9090
|
||||
Reference in New Issue
Block a user