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:
Jupyterhub configuration file
c.KubeSpawner.pod_name_template = 'jupyter-{username}--{servername}'
manics
2
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.