From 81e6042bac25e8a831ddfa27e0a7e17f122b9884 Mon Sep 17 00:00:00 2001 From: Jack Shaw Date: Mon, 11 Nov 2024 17:05:15 +0000 Subject: [PATCH] fix: spaces_ec2 Juju 3.6 now defaults new machines to ubuntu@24.04. This was not supported by a charm. Fix this by: 1) specifying ubuntu@24.04 when adding a new machine (so this doesn't break in future) 2) Add support for ubuntu@24.04 to our test charm --- testcharms/charms/space-defender/manifest.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 testcharms/charms/space-defender/manifest.yaml diff --git a/testcharms/charms/space-defender/manifest.yaml b/testcharms/charms/space-defender/manifest.yaml new file mode 100644 index 00000000000..f8526f03d04 --- /dev/null +++ b/testcharms/charms/space-defender/manifest.yaml @@ -0,0 +1,16 @@ +bases: + - name: ubuntu + channel: 24.04/stable + architectures: + - amd64 + - arm64 + - name: ubuntu + channel: 22.04/stable + architectures: + - amd64 + - arm64 + - name: ubuntu + channel: 20.04/stable + architectures: + - amd64 + - arm64