softshipper
softshipper

Reputation: 34081

Why the service does not get an ClusterIP assigned?

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?

Upvotes: 2

Views: 5463

Answers (1)

Anmol Agrawal
Anmol Agrawal

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

Related Questions