You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resolve proxy to inject using http package (#6675)
* resolve proxy to inject using http package
* unit tests
* golint
* golint
* changelog fragment
* changelog fragment
* move environment manipulation, trying to fix test run in CI
* fix unit test, localhost never goes through environment proxy
* use internal function to be able to unit test the behavior
* make lint happy
* fix build
* update NOTICE
(cherry picked from commit be179d8)
# - breaking-change: a change to previously-documented behavior
3
+
# - deprecation: functionality that is being removed in a later release
4
+
# - bug-fix: fixes a problem in a previous version
5
+
# - enhancement: extends functionality but does not break or fix existing behavior
6
+
# - feature: new functionality
7
+
# - known-issue: problems that we are aware of in a given version
8
+
# - security: impacts on the security of a product or a user’s deployment.
9
+
# - upgrade: important information for someone upgrading from a prior version
10
+
# - other: does not fit into any of the other categories
11
+
kind: bug-fix
12
+
13
+
# Change summary; a 80ish characters long description of the change.
14
+
summary: environment-proxy-injection-fix
15
+
16
+
# Long description; in case the summary is not enough to describe the change
17
+
# this field accommodate a description without length limits.
18
+
# NOTE: This field will be rendered only for breaking-change and known-issue kinds at the moment.
19
+
description: When injecting environment proxy into Elastic Defend config the Agent should use http library to resolve the proxy settings to ensure consistency across all components.
20
+
21
+
# Affected component; usually one of "elastic-agent", "fleet-server", "filebeat", "metricbeat", "auditbeat", "all", etc.
22
+
component: elastic-agent
23
+
24
+
# PR URL; optional; the PR number that added the changeset.
25
+
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added.
26
+
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number.
27
+
# Please provide it if you are adding a fragment for a different PR.
// injectProxyURL will inject the a proxy_url into the passed map if there is no existing key and there is an appropriate proxy through defined as an env var.
61
62
//
62
-
// The 1st item of the passed hosts list is checked to see if it starts with https or http and the corresponding proxy var is used.
63
-
// Nothing is injected if the *_PROXY env var is empty, the map contains proxy_url: "", or the map has proxy_disable: true.
64
-
// If no hosts are passed, then the HTTPS_PROXY value is used over the HTTP_PROXY value if it's defined.
63
+
// Go http client is used to determine the proxy URL, to ensure consistent behavior across all components.
64
+
// Traffic through proxy is preferred if the proxy is defined for any of the hosts.
0 commit comments