Activity log for bug #1706752

Date Who What changed Old value New value Message
2017-07-26 19:36:12 Scott Moser bug added bug
2017-07-26 19:36:26 Scott Moser bug task added cloud-init
2017-07-26 19:36:58 Scott Moser cloud-init: status New Fix Committed
2017-07-26 19:37:00 Scott Moser cloud-init: importance Undecided Medium
2017-07-26 19:37:03 Scott Moser cloud-init (Ubuntu): status New Fix Released
2017-07-26 19:37:06 Scott Moser cloud-init (Ubuntu): importance Undecided Medium
2017-07-26 19:37:16 Scott Moser nominated for series Ubuntu Artful
2017-07-26 19:37:16 Scott Moser bug task added cloud-init (Ubuntu Artful)
2017-07-26 19:37:16 Scott Moser nominated for series Ubuntu Zesty
2017-07-26 19:37:16 Scott Moser bug task added cloud-init (Ubuntu Zesty)
2017-07-26 19:37:16 Scott Moser nominated for series Ubuntu Xenial
2017-07-26 19:37:16 Scott Moser bug task added cloud-init (Ubuntu Xenial)
2017-07-26 19:37:28 Scott Moser cloud-init (Ubuntu Xenial): status New Confirmed
2017-07-26 19:37:31 Scott Moser cloud-init (Ubuntu Zesty): status New Confirmed
2017-07-26 19:37:33 Scott Moser cloud-init (Ubuntu Xenial): importance Undecided Medium
2017-07-26 19:37:36 Scott Moser cloud-init (Ubuntu Zesty): importance Undecided Medium
2017-08-01 21:04:41 Scott Moser description This is fixed in cloud-init via commit 00b678c61a. Fix eni rendering for bridge params that require repeated key for values. There are a few bridge parameters which require repeating the key with each value in the list when rendering eni. Extend the network unittests to cover all of the known bridge parameters and check we render eni and netplan correctly. ProblemType: Bug DistroRelease: Ubuntu 17.04 Package: cloud-init 0.7.9-90-g61eb03fe-0ubuntu1 ProcVersionSignature: Ubuntu 4.10.0-26.30-generic 4.10.17 Uname: Linux 4.10.0-26-generic x86_64 NonfreeKernelModules: zfs zunicode zavl zcommon znvpair ApportVersion: 2.20.4-0ubuntu4.5 Architecture: amd64 Date: Wed Jul 26 19:33:36 2017 PackageArchitecture: all ProcEnviron: TERM=xterm-256color PATH=(custom, no user) LANG=C.UTF-8 SourcePackage: cloud-init UpgradeStatus: No upgrade log present (probably fresh install) This is fixed in cloud-init via commit 00b678c61a. Fix eni rendering for bridge params that require repeated key for values. There are a few bridge parameters which require repeating the key with each value in the list when rendering eni. Extend the network unittests to cover all of the known bridge parameters and check we render eni and netplan correctly. ProblemType: Bug DistroRelease: Ubuntu 17.04 Package: cloud-init 0.7.9-90-g61eb03fe-0ubuntu1 ProcVersionSignature: Ubuntu 4.10.0-26.30-generic 4.10.17 Uname: Linux 4.10.0-26-generic x86_64 NonfreeKernelModules: zfs zunicode zavl zcommon znvpair ApportVersion: 2.20.4-0ubuntu4.5 Architecture: amd64 Date: Wed Jul 26 19:33:36 2017 PackageArchitecture: all ProcEnviron:  TERM=xterm-256color  PATH=(custom, no user)  LANG=C.UTF-8 SourcePackage: cloud-init UpgradeStatus: No upgrade log present (probably fresh install)
2017-08-01 21:10:26 Chad Smith description This is fixed in cloud-init via commit 00b678c61a. Fix eni rendering for bridge params that require repeated key for values. There are a few bridge parameters which require repeating the key with each value in the list when rendering eni. Extend the network unittests to cover all of the known bridge parameters and check we render eni and netplan correctly. ProblemType: Bug DistroRelease: Ubuntu 17.04 Package: cloud-init 0.7.9-90-g61eb03fe-0ubuntu1 ProcVersionSignature: Ubuntu 4.10.0-26.30-generic 4.10.17 Uname: Linux 4.10.0-26-generic x86_64 NonfreeKernelModules: zfs zunicode zavl zcommon znvpair ApportVersion: 2.20.4-0ubuntu4.5 Architecture: amd64 Date: Wed Jul 26 19:33:36 2017 PackageArchitecture: all ProcEnviron:  TERM=xterm-256color  PATH=(custom, no user)  LANG=C.UTF-8 SourcePackage: cloud-init UpgradeStatus: No upgrade log present (probably fresh install) === Begin SRU Template === [Impact] ENI rendering of bridge configuration options for bridge_pathcost, bridge_portprio and bridge_waitport would be limited to a single key/val pair. Now support multi-line key values for these configuration options. [Test Case] if [ ! -f lxc-proposed-snapshot ]; then   wget https://git.launchpad.net/~smoser/cloud-init/+git/sru-info/plain/bin/lxc-proposed-snapshot -O lxc-proposed-snapshot   chmod 755 lxc-proposed-snapshot fi ## get render tool $ wget https://git.launchpad.net/~cloud-init-dev/cloud-init/plain/tools/net-convert.py -O net-convert.py ## write the network_data.json $ cat >network_data.yaml <<EOF version: 1 config: - type: physical name: eth0 mac_address: "c0:d6:9f:2c:e8:80" - type: physical name: eth1 mac_address: "aa:d6:9f:2c:e8:80" - type: bridge name: br0 bridge_interfaces: - eth0 - eth1 params: bridge_ageing: 250 bridge_bridgeprio: 22 bridge_fd: 1 bridge_gcint: 2 bridge_hello: 1 bridge_maxage: 10 bridge_maxwait: 0 bridge_pathcost: - eth0 50 - eth1 75 bridge_portprio: - eth0 28 - eth1 14 bridge_stp: 'off' bridge_waitport: - 1 eth0 - 2 eth1 EOF for release in xenial zesty; do         ref=$release-proposed;         echo "$release START --------------";         ./lxc-proposed-snapshot --proposed --publish $release $ref;         lxc start test-$release; lxc file push net-convert.py test-$release/net-convery.py; lxc file push network_data.yaml test-$release/network_data.yaml; for k in eni netplan; do lxc exec test-$release -- python3 /net-convert.py \ --network-data=net-config.yaml --kind=yaml \ --output-kind=$k --mac=eth0,c0:d6:9f:2c:e8:80 \ --directory=out.d ; done lxc exec test-$release -- cat out.d/etc/network/interfaces lxc exec test-$release -- cat out.d/etc/netplan/50-cloud-init.yaml done [Regression Potential] Fairly low, this feature adds support for multi-line keys for 3 specific bridge configuration options bridge_pathcost, bridge_portprio and bridge_waitport. Prior releases didn't have this support and would have only allowed for a single configuration value for the key. Now the configuration is properly rendered for multiple-interfaces. [Other Info] Upstream commit at https://git.launchpad.net/cloud-init/commit/?id=00b678c61 This is fixed in cloud-init via commit 00b678c61a.     Fix eni rendering for bridge params that require repeated key for values.     There are a few bridge parameters which require repeating the key with each     value in the list when rendering eni. Extend the network unittests to cover     all of the known bridge parameters and check we render eni and netplan     correctly. ProblemType: Bug DistroRelease: Ubuntu 17.04 Package: cloud-init 0.7.9-90-g61eb03fe-0ubuntu1 ProcVersionSignature: Ubuntu 4.10.0-26.30-generic 4.10.17 Uname: Linux 4.10.0-26-generic x86_64 NonfreeKernelModules: zfs zunicode zavl zcommon znvpair ApportVersion: 2.20.4-0ubuntu4.5 Architecture: amd64 Date: Wed Jul 26 19:33:36 2017 PackageArchitecture: all ProcEnviron:  TERM=xterm-256color  PATH=(custom, no user)  LANG=C.UTF-8 SourcePackage: cloud-init UpgradeStatus: No upgrade log present (probably fresh install)
2017-08-04 14:19:01 Scott Moser description === Begin SRU Template === [Impact] ENI rendering of bridge configuration options for bridge_pathcost, bridge_portprio and bridge_waitport would be limited to a single key/val pair. Now support multi-line key values for these configuration options. [Test Case] if [ ! -f lxc-proposed-snapshot ]; then   wget https://git.launchpad.net/~smoser/cloud-init/+git/sru-info/plain/bin/lxc-proposed-snapshot -O lxc-proposed-snapshot   chmod 755 lxc-proposed-snapshot fi ## get render tool $ wget https://git.launchpad.net/~cloud-init-dev/cloud-init/plain/tools/net-convert.py -O net-convert.py ## write the network_data.json $ cat >network_data.yaml <<EOF version: 1 config: - type: physical name: eth0 mac_address: "c0:d6:9f:2c:e8:80" - type: physical name: eth1 mac_address: "aa:d6:9f:2c:e8:80" - type: bridge name: br0 bridge_interfaces: - eth0 - eth1 params: bridge_ageing: 250 bridge_bridgeprio: 22 bridge_fd: 1 bridge_gcint: 2 bridge_hello: 1 bridge_maxage: 10 bridge_maxwait: 0 bridge_pathcost: - eth0 50 - eth1 75 bridge_portprio: - eth0 28 - eth1 14 bridge_stp: 'off' bridge_waitport: - 1 eth0 - 2 eth1 EOF for release in xenial zesty; do         ref=$release-proposed;         echo "$release START --------------";         ./lxc-proposed-snapshot --proposed --publish $release $ref;         lxc start test-$release; lxc file push net-convert.py test-$release/net-convery.py; lxc file push network_data.yaml test-$release/network_data.yaml; for k in eni netplan; do lxc exec test-$release -- python3 /net-convert.py \ --network-data=net-config.yaml --kind=yaml \ --output-kind=$k --mac=eth0,c0:d6:9f:2c:e8:80 \ --directory=out.d ; done lxc exec test-$release -- cat out.d/etc/network/interfaces lxc exec test-$release -- cat out.d/etc/netplan/50-cloud-init.yaml done [Regression Potential] Fairly low, this feature adds support for multi-line keys for 3 specific bridge configuration options bridge_pathcost, bridge_portprio and bridge_waitport. Prior releases didn't have this support and would have only allowed for a single configuration value for the key. Now the configuration is properly rendered for multiple-interfaces. [Other Info] Upstream commit at https://git.launchpad.net/cloud-init/commit/?id=00b678c61 This is fixed in cloud-init via commit 00b678c61a.     Fix eni rendering for bridge params that require repeated key for values.     There are a few bridge parameters which require repeating the key with each     value in the list when rendering eni. Extend the network unittests to cover     all of the known bridge parameters and check we render eni and netplan     correctly. ProblemType: Bug DistroRelease: Ubuntu 17.04 Package: cloud-init 0.7.9-90-g61eb03fe-0ubuntu1 ProcVersionSignature: Ubuntu 4.10.0-26.30-generic 4.10.17 Uname: Linux 4.10.0-26-generic x86_64 NonfreeKernelModules: zfs zunicode zavl zcommon znvpair ApportVersion: 2.20.4-0ubuntu4.5 Architecture: amd64 Date: Wed Jul 26 19:33:36 2017 PackageArchitecture: all ProcEnviron:  TERM=xterm-256color  PATH=(custom, no user)  LANG=C.UTF-8 SourcePackage: cloud-init UpgradeStatus: No upgrade log present (probably fresh install) === Begin SRU Template === [Impact] ENI rendering of bridge configuration options for bridge_pathcost, bridge_portprio and bridge_waitport would be limited to a single key/val pair. Now support multi-line key values for these configuration options. [Test Case] if [ ! -f lxc-proposed-snapshot ]; then   wget https://git.launchpad.net/~smoser/cloud-init/+git/sru-info/plain/bin/lxc-proposed-snapshot -O lxc-proposed-snapshot   chmod 755 lxc-proposed-snapshot fi ## get render tool $ wget https://git.launchpad.net/~cloud-init-dev/cloud-init/plain/tools/net-convert.py -O net-convert.py ## write the network_data.json $ cat >network_data.yaml <<EOF version: 1 config:     - type: physical       name: eth0       mac_address: "c0:d6:9f:2c:e8:80"     - type: physical       name: eth1       mac_address: "aa:d6:9f:2c:e8:80"     - type: bridge       name: br0       bridge_interfaces:         - eth0         - eth1       params:         bridge_ageing: 250         bridge_bridgeprio: 22         bridge_fd: 1         bridge_gcint: 2         bridge_hello: 1         bridge_maxage: 10         bridge_maxwait: 0         bridge_pathcost:           - eth0 50           - eth1 75         bridge_portprio:           - eth0 28           - eth1 14         bridge_stp: 'off'         bridge_waitport:           - 1 eth0           - 2 eth1 EOF for release in xenial zesty; do         ref=$release-proposed;         echo "$release START --------------";         ./lxc-proposed-snapshot --proposed --publish $release $ref;         lxc start test-$release;         lxc file push net-convert.py test-$release/net-convery.py;         lxc file push network_data.yaml test-$release/network_data.yaml;         for k in eni netplan; do             lxc exec test-$release -- python3 /net-convert.py \             --network-data=net-config.yaml --kind=yaml \             --output-kind=$k --mac=eth0,c0:d6:9f:2c:e8:80 \             --directory=out.d ;         done         lxc exec test-$release -- cat out.d/etc/network/interfaces         lxc exec test-$release -- cat out.d/etc/netplan/50-cloud-init.yaml done [Regression Potential] Fairly low, this feature adds support for multi-line keys for 3 specific bridge configuration options bridge_pathcost, bridge_portprio and bridge_waitport. Prior releases didn't have this support and would have only allowed for a single configuration value for the key. Now the configuration is properly rendered for multiple-interfaces. [Other Info] Upstream commit at   https://git.launchpad.net/cloud-init/commit/?id=00b678c61 This is fixed in cloud-init via commit 00b678c61a.  Fix eni rendering for bridge params that require repeated key for values.  There are a few bridge parameters which require repeating the key with each  value in the list when rendering eni. Extend the network unittests to cover  all of the known bridge parameters and check we render eni and netplan  correctly. ProblemType: Bug DistroRelease: Ubuntu 17.04 Package: cloud-init 0.7.9-90-g61eb03fe-0ubuntu1 ProcVersionSignature: Ubuntu 4.10.0-26.30-generic 4.10.17 Uname: Linux 4.10.0-26-generic x86_64 NonfreeKernelModules: zfs zunicode zavl zcommon znvpair ApportVersion: 2.20.4-0ubuntu4.5 Architecture: amd64 Date: Wed Jul 26 19:33:36 2017 PackageArchitecture: all ProcEnviron:  TERM=xterm-256color  PATH=(custom, no user)  LANG=C.UTF-8 SourcePackage: cloud-init UpgradeStatus: No upgrade log present (probably fresh install)
2017-08-23 12:29:05 Chris J Arges cloud-init (Ubuntu Xenial): status Confirmed Fix Committed
2017-08-23 12:29:08 Chris J Arges bug added subscriber Ubuntu Stable Release Updates Team
2017-08-23 12:29:11 Chris J Arges bug added subscriber SRU Verification
2017-08-23 12:29:14 Chris J Arges tags amd64 apport-bug uec-images zesty amd64 apport-bug uec-images verification-needed verification-needed-xenial zesty
2017-08-23 12:32:12 Chris J Arges cloud-init (Ubuntu Zesty): status Confirmed Fix Committed
2017-08-23 12:32:16 Chris J Arges tags amd64 apport-bug uec-images verification-needed verification-needed-xenial zesty amd64 apport-bug uec-images verification-needed verification-needed-xenial verification-needed-zesty zesty
2017-08-28 22:09:34 Chad Smith tags amd64 apport-bug uec-images verification-needed verification-needed-xenial verification-needed-zesty zesty amd64 apport-bug uec-images verification-done-xenial verification-done-zesty zesty
2017-09-13 01:26:05 Launchpad Janitor cloud-init (Ubuntu Xenial): status Fix Committed Fix Released
2017-09-13 01:27:06 Chris Halse Rogers removed subscriber Ubuntu Stable Release Updates Team
2017-09-13 01:27:27 Launchpad Janitor cloud-init (Ubuntu Zesty): status Fix Committed Fix Released
2017-09-22 21:09:46 Scott Moser cloud-init: status Fix Committed Fix Released
2023-05-11 04:15:16 James Falcon bug watch added https://github.com/canonical/cloud-init/issues/2961