docs(update-version-pipeline): add diagram

This commit is contained in:
rschneider 2021-08-03 14:42:14 +02:00
parent 20bf5945c7
commit bb0f5f8f9d

View File

@ -10,6 +10,36 @@ This pipeline provides the jobs to increase the version, create a new tag and up
It can be extended to push a docker image to a docker registry. It can be extended to push a docker image to a docker registry.
== Overview diagram
[mermaid]
....
graph TB
.gitlab-ci.yml-->release-template.gitlab-ci.yml
release-template.gitlab-ci.yml-- release-->release.gitlab-ci.yml
release.gitlab-ci.yml-->pipelines/update-version-pipeline.gitlab-ci.yml
release.gitlab-ci.yml-->container-publish.gitlab-ci.yml
.gitlab-ci.yml--test-->container-scan.gitlab-ci.yml
subgraph project
.gitlab-ci.yml-->release.gitlab-ci.yml
end
subgraph Gitlab-CI-templates
release-template.gitlab-ci.yml
pipelines/update-version-pipeline.gitlab-ci.yml-->push-tag-and-version-template.gitlab-ci.yml
pipelines/update-version-pipeline.gitlab-ci.yml-->set-version-template.gitlab-ci.yml
set-version-template.gitlab-ci.yml-->exxcellent-increase-version-tool/increase-version
container-publish.gitlab-ci.yml-->.publish-image-kaniko
container-scan.gitlab-ci.yml
end
....
== Setup == Setup
This pipeline should be included as a child-pipeline in your gitlab-ci pipeline. This pipeline should be included as a child-pipeline in your gitlab-ci pipeline.