Best Practices - Change cluster name and domain?

Hello,
I am building out production K8s clusters. One thing I have come across was the best practices around the cluster name (default: kubernetes) and domain (default: cluster.local).

My initial understanding of these was to change them to something meaningful like:

  • clustername: k8s-clst01
  • domain: k8s-domain01.local

This way, each cluster would have a unique name and if multiple cluster were going to be part of the same logical group, then they would share the domain name. If not, then increment domain name.

Situation to make me rethink:
I was recently building a new separate cluster (domain: k8s-domain02.local). I was asked if it was possible to move a statefulset from k8s-clst01.domain01.local to k8s-clst07.domain02.local.

btw…
I know about multi-cluster headless services and statefulset slices. Not enough to implement but aware they exist and basic concept. So not really an option here.

I immediately started to think how this would not work for certain applications (i.e. Cassandra). The Cassandra pods find each other via FQDN. In the destination K8s cluster, the domain would be different and this would break any possible migration I was thinking of (possible migrate using Kasten).

Questions:

  1. Is the best practice to change the cluster name to a unique name?
  2. Is the best practice to change the domain name, keeping the basic concept linked clusters will share the domain name?

If the answer is ‘yes’:
a. How to handle migrating stateful apps between clusters?

Cluster information:

Kubernetes version: v1.24.2
Cloud being used: bare-metal
Installation method: kubeadm
Host OS: Ubuntu 20.04
CNI and version: calico v3.24.0
CRI and version: containerd v1.5.9

No one with any insight into this question?

So after many hours researching this I have come to a conclusion.
I had wanted the cluster name and domain to be unique in preparation of joining clusters in the near future.
It seems a lot of 3rd party apps do not account for the name to change from default. It appears to be an oversight or lack of maturity within these projects.
So I would advise (at this point in time) to keep the name and domain default. When you need to join clusters later, then build net-new with the unique names and hopefully your apps have accounted for it.