File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 17
17
from packaging .version import Version
18
18
19
19
from lib .base_logger import logger
20
- from scripts .evergreen .release .agent_matrix import (
21
- get_supported_operator_versions ,
22
- )
23
20
from scripts .evergreen .release .images_signing import (
24
21
sign_image ,
25
22
verify_signature ,
32
29
from .optimized_operator_build import build_operator_image_fast
33
30
34
31
TRACER = trace .get_tracer ("evergreen-agent" )
35
- DEFAULT_NAMESPACE = "default"
36
32
37
33
38
34
@@ -507,10 +503,10 @@ def build_agent_default_case(build_configuration: BuildConfiguration):
507
503
with ProcessPoolExecutor (max_workers = max_workers ) as executor :
508
504
logger .info (f"running with factor of { max_workers } " )
509
505
print (f"======= Versions to build { agent_versions_to_build } =======" )
510
- for agent_version in agent_versions_to_build :
506
+ for idx , agent_version in enumerate ( agent_versions_to_build ) :
511
507
# We don't need to keep create and push the same image on every build.
512
508
# It is enough to create and push the non-operator suffixed images only during releases to ecr and quay.
513
- print (f"======= Building Agent { agent_version } ======= " )
509
+ print (f"======= Building Agent { agent_version } ( { idx } / { len ( agent_versions_to_build ) } ) " )
514
510
_build_agent_operator (
515
511
agent_version ,
516
512
build_configuration ,
You can’t perform that action at this time.
0 commit comments