Skip to content

Commit d2424a9

Browse files
committed
Fix for haproxy-ssh
1 parent 5466b08 commit d2424a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/kolla-images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ def get_openstack_release() -> str:
221221

222222
def validate(kolla_image_tags: KollaImageTags):
223223
"""Validate the kolla_image_tags variable."""
224-
tag_var_re = re.compile(r"^[a-z0-9_]+$")
224+
tag_var_re = re.compile(r"^[a-z0-9_-]+$")
225225
openstack_release = get_openstack_release()
226226
tag_res = {
227227
base_distro: re.compile(f"^{openstack_release}-{base_distro}-[\d]{{8}}T[\d]{{6}}$")

0 commit comments

Comments
 (0)