From 6ef9c21853191d0bc9cf5a376707b36ac344488d Mon Sep 17 00:00:00 2001 From: gongnan Date: Fri, 8 Oct 2021 11:29:26 +0800 Subject: [PATCH] openeuler fix regex bug in kolla-build.conf --- kolla/common/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kolla/common/config.py b/kolla/common/config.py index aa910be6..39bc5745 100755 --- a/kolla/common/config.py +++ b/kolla/common/config.py @@ -224,7 +224,7 @@ _CLI_OPTS = [ ' push properly')), cfg.IntOpt('retries', short='r', default=3, min=0, help='The number of times to retry while building'), - cfg.MultiOpt('regex', types.String(), positional=True, + cfg.MultiOpt('regex', types.String(), positional=True, required=False, help=('Build only images matching regex and its' ' dependencies')), cfg.StrOpt('registry', -- Gitee