From 119010f7f299539e7be7e60b827f795a692a8fb2 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Fri, 27 Jan 2023 10:49:22 -0800 Subject: [PATCH] docs/Cluster-VictoriaMetrics.md: move Naive_cluster_scheme.png from the docs/assets/images/ folder into docs/ folder and add Cluster-VictoriaMetrics_ prefix to the image name The docs/assets folder should be used only for assets specific to docs generation at https://docs.victoriametrics.com, e.g. css, js and images. All the other assets related to specific docs should be placed in the same folder as the corresponding *.md file. These assets should have the same name prefix as the corresponding doc file name. This simplifies tracking the lifetime of these assets. For example, if the doc is removed, it is very easy to remove all assets associated with it with a simple `rm -rf docs/doc-name*` command. This also simplifies generating correct urls for doc-specific assets from both https://docs.victoriametrics.com and from https://github.com/VictoriaMetrics/VictoriaMetrics/blob/master/docs/ - just refer to the asset name without any directory prefixes. --- docs/Cluster-VictoriaMetrics.md | 2 +- ...g => Cluster-VictoriaMetrics_cluster-scheme.png} | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename docs/{assets/images/Naive_cluster_scheme.png => Cluster-VictoriaMetrics_cluster-scheme.png} (100%) diff --git a/docs/Cluster-VictoriaMetrics.md b/docs/Cluster-VictoriaMetrics.md index fd66e13b7..7a474efa9 100644 --- a/docs/Cluster-VictoriaMetrics.md +++ b/docs/Cluster-VictoriaMetrics.md @@ -37,7 +37,7 @@ Each service may scale independently and may run on the most suitable hardware. This is a [shared nothing architecture](https://en.wikipedia.org/wiki/Shared-nothing_architecture). It increases cluster availability, and simplifies cluster maintenance as well as cluster scaling. -![Naive cluster scheme](assets/images/Naive_cluster_scheme.png) +![Naive cluster scheme](Cluster-VictoriaMetrics_cluster-scheme.png) ## Multitenancy diff --git a/docs/assets/images/Naive_cluster_scheme.png b/docs/Cluster-VictoriaMetrics_cluster-scheme.png similarity index 100% rename from docs/assets/images/Naive_cluster_scheme.png rename to docs/Cluster-VictoriaMetrics_cluster-scheme.png