Reputation: 34081
I am trying to deploy MinIO on K8s cluster and have followed the guide on https://github.com/minio/minio-operator/blob/master/README.md.
After the installation the MinIO services does not get a ClusterIP:
What am I doing wrong?
Upvotes: 2
Views: 5463
Reputation: 904
ClusterIp is "None" when you want to create a headless service. In your service template (yaml file) if clusterIp is set to "None" then cluster-ip is not assigned for your service.
If you need cluster-ip for your service then change your template and remove "clusterIP: None" field.
Upvotes: 6