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
sudo tar xjf /tmp/python-${{ matrix.python-version }}.tar.bz2 --directory /
42
-
#
43
-
# TODO: Some unit tests create helper scripts that use 'python3' as shebang; we should probably port them to Bash, but installing Python 3 as a workaround for now.
44
-
#
45
-
if [[ "${{ matrix.python-version }}" == "2.6" ]]; then
46
-
apt-get -y install python3
47
-
fi
48
-
#
49
-
# The virtual environments for 2.6 and 3.4 have dependencies on OpenSSL 1.0, which is not available beyond Ubuntu 16. We use this script to patch the environments.
50
-
#
51
-
if [[ "${{ matrix.python-version }}" =~ ^2\.6|3\.4$ ]]; then
sudo tar xjf /tmp/python-${{ matrix.python-version }}.tar.bz2 --directory /
71
+
#
72
+
# The virtual environments have dependencies on old versions of OpenSSL (e.g 1.0/1.1) which are not available on Ubuntu 24. We use this script to patch the environments.
73
+
#
74
+
if [[ "${{ matrix.use_virtual_environment}}" == "true" ]]; then
Copy file name to clipboardExpand all lines: README.md
+11-2Lines changed: 11 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@
3
3
4
4
## Linux distributions support
5
5
6
-
Our daily automation tests most of the [Linux distributions supported by Azure](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/endorsed-distros); the Agent can be
7
-
used on other distributions as well, but development, testing and support for those are done by the open source community.
6
+
The list of distros we officially support is maintained at: [Linux distributions supported by Azure](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/endorsed-distros). Our daily automation tests most of these distributions. The Agent can be
7
+
used on other distributions as well, but development, testing and support for those are done by the open source community. This repo contains community-driven support for some distributions which are not officially supported by Azure.
8
8
9
9
Testing is done using the develop branch, which can be unstable. For a stable build please use the master branch instead.
The list of extensions which will be excluded from cgroups limits. This should be comma separated.
655
655
656
+
#### __Protocol.EndpointDiscovery__
657
+
658
+
_Type: String_
659
+
_Default: dhcp_
660
+
661
+
Determines how the agent will discover the [WireServer endpoint](https://learn.microsoft.com/en-us/azure/virtual-network/what-is-ip-address-168-63-129-16).
662
+
Agent will use DHCP by default to discover the WireServer endpoint, but if this setting is 'static' the agent will use the known WireServer address (168.63.129.16).
663
+
Possible options are "dhcp" (default) or "static".
664
+
656
665
### Telemetry
657
666
658
667
WALinuxAgent collects usage data and sends it to Microsoft to help improve our products and services. The data collected is used to track service health and
# If user has DHCP disabled for their VM then the dhcp request will fail. The user can configure the agent to
157
+
# use the known wire server ip instead.
158
+
use_dhcp=conf.get_dhcp_discovery_enabled()
159
+
ifnotdhcp_availableornotuse_dhcp:
160
+
ifnotuse_dhcp:
161
+
logger.info("send_dhcp_req: DHCP usage for endpoint discovery is disabled (Protocol.EndpointDiscovery={0}). Will use known wireserver endpoint.".format(conf.get_protocol_endpoint_discovery()))
0 commit comments