Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
feat(stapel-to-buildah): implement 'from' stage
* New stapel builder method introduced into ContainerRuntime, not fully implemented yet. * pkg/build/stage/from implemented using new stapel builder. * refactored all StageBuilder related implementations and moved to pkg/container_runtime/stage_builder. Signed-off-by: Timofey Kirillov <timofey.kirillov@flant.com>
- Loading branch information
Showing
with
573 additions
and 377 deletions.
- +1 −1 cmd/werf/common/conveyor_options.go
- +10 −8 pkg/build/build_phase.go
- +14 −13 pkg/build/builder/ansible.go
- +5 −4 pkg/build/builder/builder.go
- +14 −13 pkg/build/builder/shell.go
- +0 −123 pkg/build/builder/stage_builder.go
- +5 −1 pkg/build/conveyor.go
- +33 −22 pkg/build/stage/base.go
- +1 −1 pkg/build/stage/before_install.go
- +1 −1 pkg/build/stage/before_setup.go
- +3 −0 pkg/build/stage/conveyor.go
- +6 −6 pkg/build/stage/data_test.go
- +7 −7 pkg/build/stage/dependencies.go
- +5 −5 pkg/build/stage/dependencies_test.go
- +5 −5 pkg/build/stage/docker_instructions.go
- +6 −6 pkg/build/stage/dockerfile.go
- +5 −5 pkg/build/stage/dockerfile_test.go
- +32 −17 pkg/build/stage/from.go
- +5 −5 pkg/build/stage/git.go
- +6 −7 pkg/build/stage/git_archive.go
- +5 −5 pkg/build/stage/git_mapping.go
- +1 −1 pkg/build/stage/git_mapping_test.go
- +7 −7 pkg/build/stage/git_patch.go
- +1 −1 pkg/build/stage/install.go
- +1 −1 pkg/build/stage/setup.go
- +6 −6 pkg/build/stage/stage_image.go
- +4 −0 pkg/build/stage/stubs_test.go
- +55 −1 pkg/container_runtime/buildah_runtime.go
- +6 −2 pkg/container_runtime/docker_server_runtime.go
- +0 −93 pkg/container_runtime/dockerfile_image_builder.go
- +4 −1 pkg/container_runtime/image_interface.go
- +19 −2 pkg/container_runtime/interface.go
- +3 −2 pkg/container_runtime/legacy_interface.go
- +6 −2 pkg/container_runtime/legacy_stage_image.go
- +10 −2 pkg/container_runtime/perf_check_container_runtime.go
- +110 −0 pkg/container_runtime/stage_builder/dockerfile_stage_builder.go
- +37 −0 pkg/container_runtime/stage_builder/legacy_stapel_stage_builder.go
- +52 −0 pkg/container_runtime/stage_builder/stage_builder.go
- +80 −0 pkg/container_runtime/stage_builder/stapel_stage_builder.go
- +1 −1 pkg/container_runtime/utils.go
- +1 −0 pkg/storage/repo_stages_storage.go
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.