We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76faa15 commit 0856565Copy full SHA for 0856565
tests/test-upgrade.py
@@ -142,9 +142,14 @@ def test_upgrade(self):
142
# Refresh the snap to the target
143
if upgrade_to.endswith(".snap"):
144
cmd = "sudo snap install {} --classic --dangerous".format(upgrade_to)
145
+ run_until_success(cmd)
146
+ cmd = "/snap/microk8s/current/connect-all-interfaces.sh"
147
148
+ time.sleep(20)
149
else:
150
cmd = "sudo snap refresh microk8s --channel={}".format(upgrade_to)
- run_until_success(cmd)
151
152
+
153
# Allow for the refresh to be processed
154
time.sleep(10)
155
wait_for_installation()
0 commit comments