From f0f040d87c77a90e42344f3ae324d227cef0bb60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=C3=B6tzinger?= Date: Thu, 27 May 2021 16:44:14 +0200 Subject: [PATCH 1/4] Update Readme --- Readme.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Readme.md b/Readme.md index 9cc3a6e..d24f693 100644 --- a/Readme.md +++ b/Readme.md @@ -1,6 +1,11 @@ # AOE Techonology Radar ## Build radar +Install dependencies with `yarn` +(Check node version compatibility) + +Then build the radar: + ``` yarn aoe_technology_radar ``` From ddc9fa6b2048b0cdd286d18b78f1ec7d03b1597f Mon Sep 17 00:00:00 2001 From: Kevin Schu Date: Tue, 29 Jun 2021 11:36:50 +0200 Subject: [PATCH 2/4] added service-mesh --- radar/2021-01-01/service-mesh.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 radar/2021-01-01/service-mesh.md diff --git a/radar/2021-01-01/service-mesh.md b/radar/2021-01-01/service-mesh.md new file mode 100755 index 0000000..777905b --- /dev/null +++ b/radar/2021-01-01/service-mesh.md @@ -0,0 +1,20 @@ +--- +title: "Service Mesh" +ring: assess +quadrant: platforms-and-aoe-services + +--- +**Service Mesh** is a solution which makes service to service communications more comfortable and more secure in large microservice architectures. +It decouples the routing part from the microservices which allows a service mesh implementation to offer features like: +- Service Discovery (canary routing, a-b testing, etc.) +- Resilience (circuit breaking, timeouts, etc.) +- Observability (route metrics, traffic logging, etc.) +- End-to-end encryption (mTLS) + +service mesh implementations: +- [Istio](https://istio.io/) +- [Open Service Mesh](https://openservicemesh.io/) +- [Kuma](https://kuma.io/) +- and many more... + +At AOE we are using service meshes in multiple projects and are assessing best-practises and service mesh implementations. \ No newline at end of file From 14ce9d80218263d2681cce58d129d0c5a8fb6b5e Mon Sep 17 00:00:00 2001 From: Kevin Schu Date: Tue, 29 Jun 2021 11:43:55 +0200 Subject: [PATCH 3/4] added fluentd --- radar/2021-01-01/fluentd.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 radar/2021-01-01/fluentd.md diff --git a/radar/2021-01-01/fluentd.md b/radar/2021-01-01/fluentd.md new file mode 100755 index 0000000..de504a6 --- /dev/null +++ b/radar/2021-01-01/fluentd.md @@ -0,0 +1,9 @@ +--- +title: "Fluentd" +ring: assess +quadrant: tools + +--- +**Fluentd** is a great tool to gather logs, transform them into any required format and distribute them to any logging backend. + +At AOE we use fluentd in different contexts, but mostly to gather logs from kubernetes clusters into data backends like Elasticsearch. From 7fe6748dd0e2ba387c0852ddccc83589549ca43f Mon Sep 17 00:00:00 2001 From: bmsuseluda Date: Wed, 30 Jun 2021 09:37:47 +0200 Subject: [PATCH 4/4] Update service-mesh.md --- radar/2021-01-01/service-mesh.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radar/2021-01-01/service-mesh.md b/radar/2021-01-01/service-mesh.md index 777905b..13e8e27 100755 --- a/radar/2021-01-01/service-mesh.md +++ b/radar/2021-01-01/service-mesh.md @@ -4,7 +4,7 @@ ring: assess quadrant: platforms-and-aoe-services --- -**Service Mesh** is a solution which makes service to service communications more comfortable and more secure in large microservice architectures. +**Service Mesh** is a solution which makes service to service communication more comfortable and more secure in large microservice architectures. It decouples the routing part from the microservices which allows a service mesh implementation to offer features like: - Service Discovery (canary routing, a-b testing, etc.) - Resilience (circuit breaking, timeouts, etc.) @@ -17,4 +17,4 @@ service mesh implementations: - [Kuma](https://kuma.io/) - and many more... -At AOE we are using service meshes in multiple projects and are assessing best-practises and service mesh implementations. \ No newline at end of file +At AOE we are using service meshes in multiple projects and are assessing best-practices and service mesh implementations.