From 9facc1448581871d3d9d6f91fda0477c8ef4c3ba Mon Sep 17 00:00:00 2001 From: Ryan Cole Date: Tue, 5 Dec 2023 08:14:04 -0500 Subject: [PATCH] Revert "doc: document changes to snapshot preparation for integration service" --- architecture/integration-service.md | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/architecture/integration-service.md b/architecture/integration-service.md index c65392e6..17662748 100644 --- a/architecture/integration-service.md +++ b/architecture/integration-service.md @@ -210,26 +210,20 @@ The Integration service needs secrets mounted so that the `Environment Provision ### Image extraction details -Integration service is getting specific information about the image that's being built by the RHTAP build pipeline by parsing the expected Tekton results for the pipeline. +Integration service is getting specific information about the image that's being built by the RHTAP build pipeline by parsing the expected Tekton results for the pipeline. All of them are required to be present in order to correctly construct a Snapshot. Results are following: - - IMAGE_URL *required* + - IMAGE_URL - Represents image repository where the built image was pushed. Used to construct the component image reference. - - IMAGE_DIGEST *required* + - IMAGE_DIGEST - Digest of the image that was built. Used to construct the component image reference. - CHAINS-GIT_URL - - Git url of the target repository. + - Git url of the source repository. Added to the source section of the component within the Snapshot. - CHAINS-GIT_COMMIT - - The precise commit SHA that was fetched by git-clone task. + - The precise commit SHA that was fetched by git-clone task. Added to the source section of the component within the Snapshot. >All those results contributes to a snapshot preparation for a pipelinerun -Parameters are following: -- git-url *required* - - Git url of the source repository. Added to the source section of the component within the snapshot -- revision *required* - - The precise commit SHA that was fetched by git-clone task. Added to the source section of the component within the Snapshot. - ## Appendix