cloud-init:ubuntu/devel

Last commit made on 2024-04-08
Get this branch:
git clone -b ubuntu/devel https://git.launchpad.net/cloud-init
Members of cloud-init Commiters can upload to this branch. Log in for directions.

Branch merges

Branch information

Name:
ubuntu/devel
Repository:
lp:cloud-init

Recent commits

65b3c32... by James Falcon

Remove old LP reference from changelog

3726436... by James Falcon

update changelog (new upstream snapshot)

41fc96d... by James Falcon

merge from upstream/main at 23.4-299-ge1c19a59

e1c19a5... by James Falcon

chore: Handle all level 1 TiCS security violations (#5103)

Ignore these bandit violations as we're not dealing with untrusted
input. Violations ignored in this commit are:
 B314: xml_bad_ElementTree
 B318: xml_bad_mindom
 B405: import_xml_etree
 B406: import_xml_sax
 B408: import_xml_minidom
 B603: subprocess_without_shell_equals_true

cdbbd17... by James Falcon

fix: Always use single datasource if specified (#5098)

This change may require a user to add `None` to the `datasource_list`
defined in `/etc/cloud/cloud.cfg[.d]` if they have a customized
datasource_list and want the DataSourceNone fallback behavior.

ds-identify would automatically append "None" to the datasource_list
if a single entry was provided in /etc/cloud/cloud.cfg[.d].
This wasn't a problem in the past as the python code would detect
a single datasource along with None as an indication to automatically
use that datasource. Since the python code no longer does that,
we should ensure that one specified datasource results in one specified
datasource after ds-identify has run.

Fixes GH-5091

ad61ae1... by Brett Holman

fix(tests): Leaked mocks (#5097)

Fixes: GH-5094
Fixes: GH-5095

d53623e... by Brett Holman

fix(rhel)!: Fix network boot order in upstream cloud-init

BREAKING_CHANGE: Use NetworkManager renderer by default for RHEL family
Fixes GH-3781

9a7674a... by Brett Holman

fix(rhel): Fix network ordering in sysconfig

NM_CONTROLLED=true allows cloud-init to wait until network devices are online.

9753749... by Brett Holman

feat: Use NetworkManager renderer by default in RHEL family

180a623... by James Falcon

fix: Allow caret at the end of apt package (#5099)