Jupyterhub user server : The filled server name is inconsistent with the generated pod name?

Hi !

The name of my customized server name is inconsistent with that of kubernetes generated pod name. What is the specific method of name conversion?

Problem phenomenon:


image

Jupyterhub configuration file

c.KubeSpawner.pod_name_template = 'jupyter-{username}--{servername}'

Names are escaped to avoid clashes which would result in different users having the same pod name, the details are in

@manics Thank you very much.