From 77805f1f2d1013ea70f6996943ffd893e3429222 Mon Sep 17 00:00:00 2001
From: Chris MacNaughton <chris.macnaughton@canonical.com>
Date: Fri, 5 Apr 2019 17:15:42 +0200
Subject: [PATCH] Sync charm-helpers to enable Ubuntu Disco

Change-Id: I26f89d37c72c84e86392f51922c66787ac59c809
---
 hooks/charmhelpers/contrib/openstack/amulet/deployment.py | 1 +
 hooks/charmhelpers/core/host_factory/ubuntu.py            | 1 +
 2 files changed, 2 insertions(+)

diff --git a/hooks/charmhelpers/contrib/openstack/amulet/deployment.py b/hooks/charmhelpers/contrib/openstack/amulet/deployment.py
index d1270a73..8e57467b 100644
--- a/hooks/charmhelpers/contrib/openstack/amulet/deployment.py
+++ b/hooks/charmhelpers/contrib/openstack/amulet/deployment.py
@@ -312,6 +312,7 @@ class OpenStackAmuletDeployment(AmuletDeployment):
             ('artful', 'pike'),
             ('bionic', 'queens'),
             ('cosmic', 'rocky'),
+            ('disco', 'stein'),
         ])
         if self.openstack:
             os_origin = self.openstack.split(':')[1]
diff --git a/hooks/charmhelpers/core/host_factory/ubuntu.py b/hooks/charmhelpers/core/host_factory/ubuntu.py
index a3162fac..0ee2b660 100644
--- a/hooks/charmhelpers/core/host_factory/ubuntu.py
+++ b/hooks/charmhelpers/core/host_factory/ubuntu.py
@@ -23,6 +23,7 @@ UBUNTU_RELEASES = (
     'artful',
     'bionic',
     'cosmic',
+    'disco',
 )