Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Move back to os_distro Ubuntu (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnGarbutt authored Nov 15, 2023
1 parent c17b9ae commit b5c5c0d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion magnum_capi_helm/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def provides(self):
"server_type": "vm",
# NOTE(johngarbutt) we don't depend on a specific OS,
# we depend on kubeadm images with cloud-init
"os": "capi-kubeadm-cloudinit",
"os": "ubuntu",
"coe": "kubernetes",
},
]
Expand Down
2 changes: 1 addition & 1 deletion magnum_capi_helm/tests/test_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_provides(self):
[
{
"server_type": "vm",
"os": "capi-kubeadm-cloudinit",
"os": "ubuntu",
"coe": "kubernetes",
}
],
Expand Down
4 changes: 1 addition & 3 deletions magnum_capi_helm/tests/test_magnum_capi_helm.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,5 @@

class TestMagnumDriverLoads(base.TestCase):
def test_get_driver(self):
cluster_driver = common.Driver.get_driver(
"vm", "capi-kubeadm-cloudinit", "kubernetes"
)
cluster_driver = common.Driver.get_driver("vm", "ubuntu", "kubernetes")
self.assertIsInstance(cluster_driver, driver.Driver)

0 comments on commit b5c5c0d

Please sign in to comment.