Esempio n. 1
0
 def test_delete_existing_happy_flow(self):
     args = DeletePreviewCommand.Args(
         username="******",
         password="******",
         git_user="******",
         git_email="GIT_EMAIL",
         organisation="ORGA",
         repository_name="REPO",
         git_provider=GitProvider.GITHUB,
         git_provider_url=None,
         preview_id="PREVIEW_ID",
         expect_preview_exists=False,
     )
     DeletePreviewCommand(args).execute()
     assert self.mock_manager.method_calls == [
         call.load_gitops_config(args, "ORGA", "REPO"),
         call.GitRepoApiFactory.create(args, "PREVIEW_TARGET_ORG",
                                       "PREVIEW_TARGET_REPO"),
         call.GitRepo(self.git_repo_api_mock),
         call.GitRepo.clone("target-branch"),
         call.logging.info("Preview folder name: %s",
                           "app-685912d3-preview"),
         call.GitRepo.get_full_file_path("app-685912d3-preview"),
         call.os.path.exists("/tmp/created-tmp-dir/app-685912d3-preview"),
         call.shutil.rmtree("/tmp/created-tmp-dir/app-685912d3-preview",
                            ignore_errors=True),
         call.GitRepo.commit(
             "GIT_USER", "GIT_EMAIL",
             "Delete preview environment for 'APP' and preview id 'PREVIEW_ID'."
         ),
         call.GitRepo.push(),
     ]
Esempio n. 2
0
    def test_delete_missing_happy_flow(self):
        self.os_mock.path.exists.return_value = False

        args = DeletePreviewCommand.Args(
            username="******",
            password="******",
            git_user="******",
            git_email="GIT_EMAIL",
            organisation="ORGA",
            repository_name="REPO",
            git_provider=GitProvider.GITHUB,
            git_provider_url=None,
            preview_id="PREVIEW_ID",
            expect_preview_exists=False,
        )
        DeletePreviewCommand(args).execute()
        assert self.mock_manager.method_calls == [
            call.load_gitops_config(args, "ORGA", "REPO"),
            call.GitRepoApiFactory.create(args, "PREVIEW_TARGET_ORG",
                                          "PREVIEW_TARGET_REPO"),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone("target-branch"),
            call.logging.info("Preview folder name: %s",
                              "app-685912d3-preview"),
            call.GitRepo.get_full_file_path("app-685912d3-preview"),
            call.os.path.exists("/tmp/created-tmp-dir/app-685912d3-preview"),
            call.logging.info(
                "No preview environment for '%s' and preview id '%s'. I'm done here.",
                "APP", "PREVIEW_ID"),
        ]
Esempio n. 3
0
    def test_delete_missing_but_expected_error(self):
        self.os_mock.path.exists.return_value = False

        args = DeletePreviewCommand.Args(
            username="******",
            password="******",
            git_user="******",
            git_email="GIT_EMAIL",
            organisation="ORGA",
            repository_name="REPO",
            git_provider=GitProvider.GITHUB,
            git_provider_url=None,
            preview_id="PREVIEW_ID",
            expect_preview_exists=True,  # we expect an existing preview
        )
        with pytest.raises(GitOpsException) as ex:
            DeletePreviewCommand(args).execute()
        self.assertEqual(
            str(ex.value),
            "There was no preview with name: app-685912d3-preview")

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(args, "ORGA", "REPO"),
            call.GitRepoApiFactory.create(args, "PREVIEW_TARGET_ORG",
                                          "PREVIEW_TARGET_REPO"),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone("target-branch"),
            call.logging.info("Preview folder name: %s",
                              "app-685912d3-preview"),
            call.GitRepo.get_full_file_path("app-685912d3-preview"),
            call.os.path.exists("/tmp/created-tmp-dir/app-685912d3-preview"),
        ]
Esempio n. 4
0
    def test_create_new_preview_invalid_chart_template(self):
        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/target-repo/my-app-685912d3-preview":
            False,  # doesn't exist yet -> expect create
            "/tmp/template-repo/.preview-templates/my-app": True,
        }[path]

        self.update_yaml_file_mock.side_effect = KeyError()

        try:
            CreatePreviewCommand(ARGS).execute()
            self.fail()
        except GitOpsException as ex:
            self.assertEqual(
                "Key 'name' not found in file: my-app-685912d3-preview/Chart.yaml",
                str(ex))

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TARGET_ORG",
                "PREVIEW_TARGET_REPO",
            ),
            call.GitRepo(self.target_git_repo_api_mock),
            call.GitRepo.clone(None),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TEMPLATE_ORG",
                "PREVIEW_TEMPLATE_REPO",
            ),
            call.GitRepo(self.template_git_repo_api_mock),
            call.GitRepo.clone("template-branch"),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/target-repo/my-app-685912d3-preview"),
            call.logging.info("Create new folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(".preview-templates/my-app"),
            call.os.path.isdir("/tmp/template-repo/.preview-templates/my-app"),
            call.logging.info("Using the preview template folder: %s",
                              ".preview-templates/my-app"),
            call.shutil.copytree(
                "/tmp/template-repo/.preview-templates/my-app",
                "/tmp/target-repo/my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/Chart.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/Chart.yaml", "name",
                "my-app-685912d3-preview"),
        ]
Esempio n. 5
0
    def test_create_preview_with_invalid_replacement_path(self):
        self.update_yaml_file_mock.side_effect = KeyError()

        try:
            CreatePreviewCommand(ARGS).execute()
            self.fail()
        except GitOpsException as ex:
            self.assertEqual(
                "Key 'name' not found in file: my-app-685912d3-preview/Chart.yaml",
                str(ex))

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TARGET_ORG",
                "PREVIEW_TARGET_REPO",
            ),
            call.GitRepo(self.target_git_repo_api_mock),
            call.GitRepo.clone(None),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TEMPLATE_ORG",
                "PREVIEW_TEMPLATE_REPO",
            ),
            call.GitRepo(self.template_git_repo_api_mock),
            call.GitRepo.clone("template-branch"),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/target-repo/my-app-685912d3-preview"),
            call.logging.info("Use existing folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/Chart.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/Chart.yaml",
                "name",
                "my-app-685912d3-preview",
            ),
        ]
Esempio n. 6
0
    def test_create_preview_for_unknown_template(self):
        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/target-repo/my-app-685912d3-preview": False,
            "/tmp/template-repo/.preview-templates/my-app":
            False,  # preview template missing -> expect error
        }[path]

        try:
            CreatePreviewCommand(ARGS).execute()
            self.fail()
        except GitOpsException as ex:
            self.assertEqual(
                "The preview template folder does not exist: .preview-templates/my-app",
                str(ex))

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TARGET_ORG",
                "PREVIEW_TARGET_REPO",
            ),
            call.GitRepo(self.target_git_repo_api_mock),
            call.GitRepo.clone(None),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TEMPLATE_ORG",
                "PREVIEW_TEMPLATE_REPO",
            ),
            call.GitRepo(self.template_git_repo_api_mock),
            call.GitRepo.clone("template-branch"),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/target-repo/my-app-685912d3-preview"),
            call.logging.info("Create new folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(".preview-templates/my-app"),
            call.os.path.isdir("/tmp/template-repo/.preview-templates/my-app"),
        ]
Esempio n. 7
0
    def test_missing_gitops_config_yaml_error(self):
        self.load_gitops_config_mock.side_effect = GitOpsException()

        args = DeletePreviewCommand.Args(
            username="******",
            password="******",
            git_user="******",
            git_email="GIT_EMAIL",
            organisation="ORGA",
            repository_name="REPO",
            git_provider=GitProvider.GITHUB,
            git_provider_url=None,
            preview_id="PREVIEW_ID",
            expect_preview_exists=True,  # we expect an existing preview
        )
        with pytest.raises(GitOpsException):
            DeletePreviewCommand(args).execute()
        assert self.mock_manager.method_calls == [
            call.load_gitops_config(args, "ORGA", "REPO"),
        ]
Esempio n. 8
0
    def test_create_preview_with_invalid_replacement_path(self):
        self.update_yaml_file_mock.side_effect = KeyError()

        try:
            CreatePreviewCommand(ARGS).execute()
            self.fail()
        except GitOpsException as ex:
            self.assertEqual(
                "Key 'image.tag' not found in file: my-app-685912d3-preview/values.yaml",
                str(ex))

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "TEAM_CONFIG_ORG",
                "TEAM_CONFIG_REPO",
            ),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone(),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/created-tmp-dir/my-app-685912d3-preview"),
            call.logging.info("Use existing folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/values.yaml",
                "image.tag",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
        ]
Esempio n. 9
0
    def test_preview_already_up_to_date(self):
        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/target-repo/my-app-685912d3-preview":
            True,  # already exists -> expect update
        }[path]

        self.update_yaml_file_mock.return_value = False  # nothing updated -> expect already up to date

        deployment_already_up_to_date_callback = Mock(return_value=None)

        command = CreatePreviewCommand(ARGS)
        command.register_callbacks(
            deployment_already_up_to_date_callback=
            deployment_already_up_to_date_callback,
            deployment_updated_callback=lambda route_host: self.fail(
                "should not be called"),
            deployment_created_callback=lambda route_host: self.fail(
                "should not be called"),
        )
        command.execute()

        deployment_already_up_to_date_callback.assert_called_once_with(
            "app.xy-685912d3.example.tld")

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TARGET_ORG",
                "PREVIEW_TARGET_REPO",
            ),
            call.GitRepo(self.target_git_repo_api_mock),
            call.GitRepo.clone(None),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TEMPLATE_ORG",
                "PREVIEW_TEMPLATE_REPO",
            ),
            call.GitRepo(self.template_git_repo_api_mock),
            call.GitRepo.clone("template-branch"),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/target-repo/my-app-685912d3-preview"),
            call.logging.info("Use existing folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/Chart.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/Chart.yaml", "name",
                "my-app-685912d3-preview"),
            call.logging.info("Keep property '%s' in '%s' value: %s", "name",
                              "Chart.yaml", "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/values.yaml",
                "image.tag",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.logging.info(
                "Keep property '%s' in '%s' value: %s",
                "image.tag",
                "values.yaml",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/values.yaml",
                "route.host", "app.xy-685912d3.example.tld"),
            call.logging.info("Keep property '%s' in '%s' value: %s",
                              "route.host", "values.yaml",
                              "app.xy-685912d3.example.tld"),
            call.logging.info(
                "The preview is already up-to-date. I'm done here."),
        ]
Esempio n. 10
0
    def test_create_new_preview_from_same_template_target_repo(self):
        gitops_config: GitOpsConfig = self.load_gitops_config_mock.return_value
        self.load_gitops_config_mock.return_value = GitOpsConfig(
            api_version=gitops_config.api_version,
            application_name=gitops_config.application_name,
            preview_host_template=gitops_config.preview_host_template,
            preview_template_organisation=gitops_config.
            preview_target_organisation,  # template = target
            preview_template_repository=gitops_config.
            preview_target_repository,  # template = target
            preview_template_path_template=gitops_config.
            preview_template_path_template,
            preview_template_branch=gitops_config.
            preview_target_branch,  # template = target
            preview_target_organisation=gitops_config.
            preview_target_organisation,
            preview_target_repository=gitops_config.preview_target_repository,
            preview_target_branch=gitops_config.preview_target_branch,
            preview_target_namespace_template=gitops_config.
            preview_target_namespace_template,
            preview_target_max_namespace_length=gitops_config.
            preview_target_max_namespace_length,
            replacements=gitops_config.replacements,
        )

        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/target-repo/my-app-685912d3-preview":
            False,  # doesn't exist yet -> expect create
            "/tmp/target-repo/.preview-templates/my-app": True,
        }[path]

        deployment_created_callback = Mock(return_value=None)

        command = CreatePreviewCommand(ARGS)
        command.register_callbacks(
            deployment_already_up_to_date_callback=lambda route_host: self.
            fail("should not be called"),
            deployment_updated_callback=lambda route_host: self.fail(
                "should not be called"),
            deployment_created_callback=deployment_created_callback,
        )
        command.execute()

        deployment_created_callback.assert_called_once_with(
            "app.xy-685912d3.example.tld")

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                {
                    "previewId": "PREVIEW_ID",
                    "previewIdHash": "685912d3",
                    "routeHost": "app.xy-685912d3.example.tld",
                    "namespace": "my-app-685912d3-preview",
                },
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "PREVIEW_TARGET_ORG",
                "PREVIEW_TARGET_REPO",
            ),  # only clone once for template and target
            call.GitRepo(self.target_git_repo_api_mock),
            call.GitRepo.clone(None),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/target-repo/my-app-685912d3-preview"),
            call.logging.info("Create new folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(".preview-templates/my-app"),
            call.os.path.isdir("/tmp/target-repo/.preview-templates/my-app"),
            call.logging.info("Using the preview template folder: %s",
                              ".preview-templates/my-app"),
            call.shutil.copytree("/tmp/target-repo/.preview-templates/my-app",
                                 "/tmp/target-repo/my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/Chart.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/Chart.yaml", "name",
                "my-app-685912d3-preview"),
            call.logging.info("Replaced property '%s' in '%s' with value: %s",
                              "name", "Chart.yaml", "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/values.yaml",
                "image.tag",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.logging.info(
                "Replaced property '%s' in '%s' with value: %s",
                "image.tag",
                "values.yaml",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/target-repo/my-app-685912d3-preview/values.yaml",
                "route.host", "app.xy-685912d3.example.tld"),
            call.logging.info(
                "Replaced property '%s' in '%s' with value: %s",
                "route.host",
                "values.yaml",
                "app.xy-685912d3.example.tld",
            ),
            call.GitRepo.commit(
                "GIT_USER",
                "GIT_EMAIL",
                "Create new preview environment for 'my-app' and git hash '3361723dbd91fcfae7b5b8b8b7d462fbc14187a9'.",
            ),
            call.GitRepo.push(),
        ]
Esempio n. 11
0
    def test_create_new_preview(self):
        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/created-tmp-dir/my-app-685912d3-preview":
            False,  # doesn't exist yet -> expect create
            "/tmp/created-tmp-dir/.preview-templates/my-app": True,
        }[path]

        deployment_created_callback = Mock(return_value=None)

        command = CreatePreviewCommand(ARGS)
        command.register_callbacks(
            deployment_already_up_to_date_callback=lambda route_host: self.
            fail("should not be called"),
            deployment_updated_callback=lambda route_host: self.fail(
                "should not be called"),
            deployment_created_callback=deployment_created_callback,
        )
        command.execute()

        deployment_created_callback.assert_called_once_with(
            "app.xy-685912d3.example.tld")

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                {
                    "previewId": "PREVIEW_ID",
                    "previewIdHash": "685912d3",
                    "routeHost": "app.xy-685912d3.example.tld",
                    "namespace": "my-app-685912d3-preview",
                },
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "TEAM_CONFIG_ORG",
                "TEAM_CONFIG_REPO",
            ),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone(),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/created-tmp-dir/my-app-685912d3-preview"),
            call.logging.info("Create new folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(".preview-templates/my-app"),
            call.os.path.isdir(
                "/tmp/created-tmp-dir/.preview-templates/my-app"),
            call.logging.info("Using the preview template folder: %s",
                              ".preview-templates/my-app"),
            call.shutil.copytree(
                "/tmp/created-tmp-dir/.preview-templates/my-app",
                "/tmp/created-tmp-dir/my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/Chart.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/Chart.yaml",
                "name", "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/values.yaml",
                "image.tag",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.logging.info("Replaced property '%s' with value: %s",
                              "image.tag",
                              "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/values.yaml",
                "route.host", "app.xy-685912d3.example.tld"),
            call.logging.info("Replaced property '%s' with value: %s",
                              "route.host", "app.xy-685912d3.example.tld"),
            call.GitRepo.commit(
                "GIT_USER",
                "GIT_EMAIL",
                "Create new preview environment for 'my-app' and git hash '3361723dbd91fcfae7b5b8b8b7d462fbc14187a9'.",
            ),
            call.GitRepo.push(),
        ]
Esempio n. 12
0
    def test_update_existing_preview(self):
        self.os_mock.path.isdir.side_effect = lambda path: {
            "/tmp/created-tmp-dir/my-app-685912d3-preview":
            True,  # already exists -> expect update
        }[path]

        deployment_updated_callback = Mock(return_value=None)

        command = CreatePreviewCommand(ARGS)
        command.register_callbacks(
            deployment_already_up_to_date_callback=lambda route_host: self.
            fail("should not be called"),
            deployment_updated_callback=deployment_updated_callback,
            deployment_created_callback=lambda route_host: self.fail(
                "should not be called"),
        )
        command.execute()

        deployment_updated_callback.assert_called_once_with(
            "app.xy-685912d3.example.tld")

        assert self.mock_manager.method_calls == [
            call.load_gitops_config(
                ARGS,
                "ORGA",
                "REPO",
            ),
            call.yaml_file_dump(
                INFO_YAML,
                "/tmp/gitopscli-preview-info.yaml",
            ),
            call.GitRepoApiFactory.create(
                ARGS,
                "TEAM_CONFIG_ORG",
                "TEAM_CONFIG_REPO",
            ),
            call.GitRepo(self.git_repo_api_mock),
            call.GitRepo.clone(),
            call.GitRepo.get_full_file_path("my-app-685912d3-preview"),
            call.os.path.isdir("/tmp/created-tmp-dir/my-app-685912d3-preview"),
            call.logging.info("Use existing folder for preview: %s",
                              "my-app-685912d3-preview"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/values.yaml",
                "image.tag",
                "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9",
            ),
            call.logging.info("Replaced property '%s' with value: %s",
                              "image.tag",
                              "3361723dbd91fcfae7b5b8b8b7d462fbc14187a9"),
            call.GitRepo.get_full_file_path(
                "my-app-685912d3-preview/values.yaml"),
            call.update_yaml_file(
                "/tmp/created-tmp-dir/my-app-685912d3-preview/values.yaml",
                "route.host", "app.xy-685912d3.example.tld"),
            call.logging.info("Replaced property '%s' with value: %s",
                              "route.host", "app.xy-685912d3.example.tld"),
            call.GitRepo.commit(
                "GIT_USER",
                "GIT_EMAIL",
                "Update preview environment for 'my-app' and git hash '3361723dbd91fcfae7b5b8b8b7d462fbc14187a9'.",
            ),
            call.GitRepo.push(),
        ]