aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormichaelbirnstiehl <michael.birnstiehl@sonarsource.com>2021-11-17 09:19:29 -0600
committersonartech <sonartech@sonarsource.com>2021-11-18 20:03:33 +0000
commiteecc9f5dfadb540e9782582d51eb0497d1634449 (patch)
tree1e0a4dbbb1facacc90cf35b42131a23f40ed3d89
parenta50b8b55b714fb0feb8e95abe44149ed82db9a04 (diff)
downloadsonarqube-eecc9f5dfadb540e9782582d51eb0497d1634449.tar.gz
sonarqube-eecc9f5dfadb540e9782582d51eb0497d1634449.zip
DOCS delete the architecture and integration page
-rw-r--r--server/sonar-docs/src/pages/architecture/architecture-integration.md40
1 files changed, 0 insertions, 40 deletions
diff --git a/server/sonar-docs/src/pages/architecture/architecture-integration.md b/server/sonar-docs/src/pages/architecture/architecture-integration.md
deleted file mode 100644
index 5dac3b80a58..00000000000
--- a/server/sonar-docs/src/pages/architecture/architecture-integration.md
+++ /dev/null
@@ -1,40 +0,0 @@
----
-title: Architecture and Integration
-url: /architecture/architecture-integration/
----
-## Overview
-The SonarQube Platform is made of 4 components:
-![SonarQube Platform.](/images/architecture-scanning.png)
-
-1. One SonarQube Server starting 3 main processes:
- * Web Server for developers, managers to browse quality snapshots and configure the SonarQube instance
- * Search Server based on Elasticsearch to back searches from the UI
- * Compute Engine Server in charge of processing code analysis reports and saving them in the SonarQube Database
-2. One SonarQube Database to store:
- * the configuration of the SonarQube instance (security, plugins settings, etc.)
- * the quality snapshots of projects, views, etc.
-3. Multiple SonarQube Plugins installed on the server, possibly including language, SCM, integration, authentication, and governance plugins
-4. One or more SonarScanners running on your Build / Continuous Integration Servers to analyze projects
-
-## Integration
-The following schema shows how SonarQube integrates with other DevOps Platform tools and where the various components of SonarQube are used.
-![SonarQube Integration.](/images/architecture-integrate.png)
-
-1. Developers code in their IDEs and use [SonarLint](https://sonarlint.org) to run local analysis.
-2. Developers push their code into their favourite SCM : git, SVN, TFVC, ...
-3. The Continuous Integration Server triggers an automatic build, and the execution of the SonarScanner required to run the SonarQube analysis.
-4. The analysis report is sent to the SonarQube Server for processing.
-5. SonarQube Server processes and stores the analysis report results in the SonarQube Database, and displays the results in the UI.
-6. Developers review, comment, challenge their Issues to manage and reduce their Technical Debt through the SonarQube UI.
-7. Managers receive Reports from the analysis.
-Ops use APIs to automate configuration and extract data from SonarQube.
-Ops use JMX to monitor SonarQube Server.
-
-## About Machines and Locations
-* The SonarQube Platform cannot have more than one SonarQube Server (although the Server can be installed [as a cluster](/setup/install-cluster/)) and one SonarQube Database.
-* For optimal performance, each component (server, database, scanners) should be installed on a separate machine, and the server machine(s) should be dedicated.
-* SonarScanners scale by adding machines.
-* All machines must be time synchronized.
-* The SonarQube Server and the SonarQube Database must be located in the same network
-* SonarScanners don't need to be on the same network as the SonarQube Server.
-* There is **no communication** between **SonarScanners** and the **SonarQube Database**.