Why the service does not get an ClusterIP assigned?

2/13/2020

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: enter image description here

What am I doing wrong?

-- zero_coding
kubernetes
minio

1 Answer

2/14/2020

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.

-- anmol agrawal
Source: StackOverflow