From 3fd1ad22f591faffdb2e1252d82e3f11e7b9e1f5 Mon Sep 17 00:00:00 2001 From: Sanya Kochhar Date: Mon, 23 Nov 2020 19:50:54 -0500 Subject: [PATCH] Remove extra part of readme Signed-off-by: Sanya Kochhar --- docs/patterns/observability/logs.md | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/docs/patterns/observability/logs.md b/docs/patterns/observability/logs.md index 3521958c2e..a3b6a13422 100644 --- a/docs/patterns/observability/logs.md +++ b/docs/patterns/observability/logs.md @@ -50,24 +50,3 @@ Once logs have been sent to Log Analytics, they can also be consumed by Applicat ``` You can now interact with your logs in either of these instances. - - -### Configuring Outbound Proxy Support for Fluent Bit -If you require outbound proxy support: - -1. In `values.yaml`: - - a) Change `enableProxySupport` to `true` - - b) Update the httpProxy and httpsProxy values to `"http://:"` - -2. In `/charts/osm/templates` create a new secret `proxy-config.yaml`: - ``` - apiVersion: v1 - kind: Secret - metadata: - name: proxy-config - stringData: - HTTP_PROXY: {{ .Values.OpenServiceMesh.fluentBit.httpProxy }} - HTTPS_PROXY: {{ .Values.OpenServiceMesh.fluentBit.httpsProxy }} - ```