Merge "Allow <project_id>, <project_name>, <user_id> and <user_name> as DNS label"

This commit is contained in:
Zuul 2019-10-27 11:49:56 +00:00 committed by Gerrit Code Review
commit 7e95f32e34
1 changed files with 4 additions and 1 deletions

View File

@ -328,8 +328,11 @@ VXLAN_ENCAP_OVERHEAD = 30
# For DNS extension
DNS_DOMAIN_DEFAULT = 'openstacklocal.'
DNS_LABEL_KEYWORDS = ['project_id', 'project_name', 'user_name', 'user_id']
DNS_LABEL_MAX_LEN = 63
DNS_LABEL_REGEX = "^[a-z0-9-]{1,%d}$" % DNS_LABEL_MAX_LEN
DNS_LABEL_REGEX = "^([a-z0-9-]{1,%d}|%s)$" % (
DNS_LABEL_MAX_LEN,
'<' + '>|<'.join(DNS_LABEL_KEYWORDS) + '>')
# max value for TCP, UDP, SCTP ports
PORT_MAX = 2**16 - 1