在安装Kubernetes集群的过程中,我遇到了命名吊舱的问题。
如何在容器名称中添加部署它的节点的名称?
我的守护程序集示例:
Object.values
答案 0 :(得分:1)
命名约定属于DNS标签的RFC 1123 definition。
Starting from v1.4 names must not be longer than 253 characters.
Name should be expressed by the regular expression: [a-z0-9]([-a-z0-9]*[a-z0-9])?
Underscore "_" is not allowed.
您可以在GitHub中查看checking container names,defining acceptable names的适用代码。