File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 33"""This pipeline script knows about the details of our Docker images
44and where to fetch and calculate parameters. It uses Sonar.py
55to produce the final images."""
6- from .build_context import BuildScenario
7-
86import json
97import os
108import shutil
3230from scripts .evergreen .release .sbom import generate_sbom , generate_sbom_for_cli
3331
3432from .build_configuration import BuildConfiguration
33+ from .build_context import BuildScenario
3534from .build_images import process_image
3635from .optimized_operator_build import build_operator_image_fast
3736
@@ -656,7 +655,7 @@ def build_multi_arch_agent_in_sonar(
656655 sign = build_configuration .sign ,
657656 )
658657
659-
658+ # TODO: why versions are wrong -> 13.35.0.9498-1_13.35.0.9498-1_6874c19d2aab5d0007820c51 ; duplicate
660659# TODO: figure out why I hit toomanyrequests: Rate exceeded with the new pipeline
661660def build_agent_default_case (build_configuration : BuildConfiguration ):
662661 """
@@ -708,7 +707,7 @@ def build_agent_default_case(build_configuration: BuildConfiguration):
708707
709708 queue_exception_handling (tasks_queue )
710709
711-
710+ # TODO: for now, release agents ECR release versions with image:version_version (duplicated)
712711def build_agent_on_agent_bump (build_configuration : BuildConfiguration ):
713712 """
714713 Build the agent matrix (operator version x agent version), triggered by PCT.
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ def from_environment(cls) -> "BuildContext":
4444 scenario = BuildScenario .PATCH
4545 logger .info (f"Build scenario: { scenario } (patch_id: { patch_id } )" )
4646 elif is_evg :
47- scenario = BuildScenario .MASTER
47+ scenario = BuildScenario .MASTER # TODO: ultimately we won't have RELEASE variant and master will push to staging
4848 logger .info (f"Build scenario: { scenario } (patch_id: { patch_id } )" )
4949 else :
5050 scenario = BuildScenario .DEVELOPMENT
You can’t perform that action at this time.
0 commit comments