minio UI管理端口是哪个?ingress 如何配置、
Minio UI的默认管理端口为9000。
在Kubernetes中,可以通过Ingress对象来配置Minio UI的访问。以下是一个示例Ingress配置:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: minio-ui
spec:
rules:
- host: minio.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: minio-ui
port:
name: http
在上面的配置中,我们将Minio UI绑定到了minio.example.com域名下,并将其暴露在根路径下。我们还指定了Minio UI服务的名称和端口。
注意:在使用Ingress之前,需要确保已经安装了Ingress控制器
原文地址: https://www.cveoy.top/t/topic/cnr2 著作权归作者所有。请勿转载和采集!