1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276 | 2017-08-23 00:12:09,740 [DEBUG] conjure-up/_unspecified_spell - app.py:251 - LXD version: 2.14, Juju version: 2.3-alpha1-xenial-amd64, conjure-up version: 2.3-alpha1
2017-08-23 00:12:09,826 [INFO] conjure-up/_unspecified_spell - events.py:174 - Watching for shutdown
2017-08-23 00:12:09,908 [DEBUG] conjure-up/_unspecified_spell - events.py:56 - Awaiting Shutdown at conjureup/events.py:177
2017-08-23 00:12:28,273 [INFO] conjure-up/_unspecified_spell - eventloop: ev.py:40 - Stopping eventloop
2017-08-23 00:12:28,279 [DEBUG] conjure-up/_unspecified_spell - events.py:56 - Setting Shutdown at conjureup/events.py:146
2017-08-23 00:12:28,282 [DEBUG] conjure-up/_unspecified_spell - events.py:56 - Received Shutdown at conjureup/events.py:177
2017-08-23 00:12:28,282 [INFO] conjure-up/_unspecified_spell - events.py:181 - Shutting down
2017-08-23 00:12:58,389 [DEBUG] conjure-up/_unspecified_spell - app.py:251 - LXD version: 2.14, Juju version: 2.3-alpha1-xenial-amd64, conjure-up version: 2.3-alpha1
2017-08-23 00:12:58,452 [INFO] conjure-up/_unspecified_spell - events.py:174 - Watching for shutdown
2017-08-23 00:12:58,534 [DEBUG] conjure-up/_unspecified_spell - events.py:56 - Awaiting Shutdown at conjureup/events.py:177
2017-08-23 00:13:43,960 [DEBUG] conjure-up/openstack-novalxd - download.py:60 - Path is local filesystem, copying /snap/conjure-up/625/spells/openstack-novalxd to /home/jbrazier/.cache/conjure-up/openstack-novalxd
2017-08-23 00:13:58,645 [DEBUG] conjure-up/openstack-novalxd - utils.py:617 - Parsing 2: enp5s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1d:09:0a:dc:49 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.10/24 brd 192.168.1.255 scope global enp5s0
valid_lft forever preferred_lft forever
inet 192.168.1.20/24 brd 192.168.1.255 scope global secondary enp5s0:1
valid_lft forever preferred_lft forever
inet 192.168.1.21/24 brd 192.168.1.255 scope global secondary enp5s0:2
valid_lft forever preferred_lft forever
inet6 fe80::21d:9ff:fe0a:dc49/64 scope link
valid_lft forever preferred_lft forever
for IPv4 address
2017-08-23 00:13:58,662 [DEBUG] conjure-up/openstack-novalxd - utils.py:617 - Parsing 3: enp7s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 00:1d:09:0a:dc:4b brd ff:ff:ff:ff:ff:ff
for IPv4 address
2017-08-23 00:13:59,648 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_lxd_init_auto of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f1679985c88>>
2017-08-23 00:13:59,854 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_lxc_config of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f1679985c88>>
2017-08-23 00:14:00,148 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_lxd_storage of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f1679985c88>>
2017-08-23 00:14:00,264 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: functools.partial(<bound method BaseLXDSetupController.setup_bridge_network of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f1679985c88>>, None)
2017-08-23 00:14:00,382 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: <bound method BaseLXDSetupController.setup_unused_bridge_network of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f1679985c88>>
2017-08-23 00:14:00,506 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_default_profile of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f1679985c88>>
2017-08-23 00:14:12,664 [DEBUG] conjure-up/openstack-novalxd - step.py:99 - Contents: (<Padding selectable flow widget <AttrMap selectable flow widget <PlainButton selectable flow widget 'Next'> attr_map={None: 'button_primary'} focus_map={None: 'button_primary focus'}> align='right' width=('relative', 20)>, ('weight', 1))
2017-08-23 00:14:12,665 [DEBUG] conjure-up/openstack-novalxd - step.py:99 - Contents: (<Text flow widget ''>, ('weight', 1))
2017-08-23 00:14:28,675 [INFO] conjure-up/openstack-novalxd - common.py:79 - Bootstrapping Juju controller.
2017-08-23 00:14:28,677 [DEBUG] conjure-up/openstack-novalxd - juju.py:140 - Bootstrapping to set region: {}
2017-08-23 00:14:28,681 [DEBUG] conjure-up/openstack-novalxd - juju.py:177 - bootstrap cmd: ['juju', 'bootstrap', 'localhost/localhost', 'conjure-up-localhost-37a', '--default-model', 'conjure-openstack-novalx-390', '--config', 'image-stream=daily', '--bootstrap-series', 'xenial', '--credential', 'conjure-localhost-283']
2017-08-23 00:14:28,734 [DEBUG] conjure-up/openstack-novalxd - juju.py:186 - waiting for proc
2017-08-23 00:17:56,128 [DEBUG] conjure-up/openstack-novalxd - juju.py:188 - proc done
2017-08-23 00:17:56,155 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting ModelAvailable at conjureup/juju.py:194 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 00:17:56,156 [INFO] conjure-up/openstack-novalxd - common.py:79 - Bootstrap complete.
2017-08-23 00:17:56,157 [INFO] conjure-up/openstack-novalxd - juju.py:119 - Connecting to model conjure-up-localhost-37a:conjure-openstack-novalx-390...
2017-08-23 00:17:56,197 [INFO] conjure-up/openstack-novalxd - websocket: connection.py:163 - Driver connected to juju wss://10.217.245.57:17070/model/8911fbec-ec1e-46be-8cce-3ececa218c1a/api
2017-08-23 00:17:56,251 [INFO] conjure-up/openstack-novalxd - websocket: connection.py:377 - Authenticated
2017-08-23 00:17:56,278 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting ModelConnected at conjureup/juju.py:122 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 00:17:56,279 [INFO] conjure-up/openstack-novalxd - juju.py:123 - Connected
2017-08-23 00:17:56,280 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting Bootstrapped at conjureup/controllers/bootstrap/common.py:68 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 00:17:57,259 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting ModelConnected at conjureup/controllers/deploy/common.py:10
2017-08-23 00:17:57,261 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Received ModelConnected at conjureup/controllers/deploy/common.py:10
2017-08-23 00:17:57,597 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting ModelConnected at conjureup/controllers/deploy/common.py:50 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 00:17:57,599 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Received ModelConnected at conjureup/controllers/deploy/common.py:50 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 00:17:57,599 [INFO] conjure-up/openstack-novalxd - step.py:63 - Running step: pre-deploy.
2017-08-23 00:17:57,933 [DEBUG] conjure-up/openstack-novalxd - step.py:103 - Storing environment
2017-08-23 00:17:57,939 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting ModelConnected at conjureup/controllers/deploy/gui.py:33
2017-08-23 00:17:57,940 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Received ModelConnected at conjureup/controllers/deploy/gui.py:33
2017-08-23 00:17:57,950 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting DeploymentComplete at conjureup/controllers/deploy/common.py:59 in task _wait_for_applications at conjureup/controllers/deploy/gui.py:88
2017-08-23 00:17:58,009 [DEBUG] conjure-up/openstack-novalxd - step.py:109 - Executing script: /home/jbrazier/.cache/conjure-up/openstack-novalxd/steps/00_pre-deploy
2017-08-23 00:17:58,194 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting PreDeployComplete at conjureup/controllers/deploy/common.py:55 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 00:17:58,197 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:0 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,200 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:1 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,203 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:10 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,206 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:11 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,208 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:12 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,210 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:13 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,213 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:14 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,215 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:15 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,218 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:2 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,220 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:3 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,222 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:4 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,224 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:5 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,227 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:6 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,229 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:7 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,231 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:8 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,233 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:9 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:17:58,234 [INFO] conjure-up/openstack-novalxd - juju.py:577 - Adding machines: 0: (xenial, ), 1: (xenial, ), 10: (xenial, ), 11: (xenial, ), 12: (xenial, ), 13: (xenial, ), 14: (xenial, ), 15: (xenial, ), 2: (xenial, ), 3: (xenial, ), 4: (xenial, ), 5: (xenial, ), 6: (xenial, ), 7: (xenial, ), 8: (xenial, ), 9: (xenial, )
2017-08-23 00:18:05,185 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:0 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,188 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:0 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,190 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:1 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,192 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:1 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,195 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:10 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,197 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:10 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,199 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:11 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,201 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:11 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,203 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:12 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,206 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:12 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,208 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:13 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,210 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:13 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,212 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:14 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,215 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:14 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,217 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:15 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,219 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:15 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,221 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:2 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,223 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:2 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,226 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:3 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,228 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:3 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,230 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:4 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,232 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:4 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,235 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:5 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,237 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:5 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,239 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:6 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,242 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:6 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,244 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:7 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,246 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:7 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,248 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:8 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,251 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:8 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,253 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:9 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,255 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:9 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,255 [INFO] conjure-up/openstack-novalxd - juju.py:597 - Added machines: 0, 1, 10, 11, 12, 13, 14, 15, 2, 3, 4, 5, 6, 7, 8, 9
2017-08-23 00:18:05,256 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application ceph-mon
2017-08-23 00:18:05,258 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:ceph-mon at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,258 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application ceph-osd
2017-08-23 00:18:05,261 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:ceph-osd at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,261 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application ceph-radosgw
2017-08-23 00:18:05,263 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:ceph-radosgw at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,263 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application glance
2017-08-23 00:18:05,265 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:glance at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,266 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application keystone
2017-08-23 00:18:05,268 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:keystone at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,268 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application lxd
2017-08-23 00:18:05,270 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:lxd at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,270 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application mysql
2017-08-23 00:18:05,273 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:mysql at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,273 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application neutron-api
2017-08-23 00:18:05,275 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:neutron-api at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,275 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application neutron-gateway
2017-08-23 00:18:05,278 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:neutron-gateway at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,278 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application neutron-openvswitch
2017-08-23 00:18:05,280 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:neutron-openvswitch at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,280 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application nova-cloud-controller
2017-08-23 00:18:05,283 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:nova-cloud-controller at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,283 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application nova-compute
2017-08-23 00:18:05,285 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:nova-compute at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,285 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application ntp
2017-08-23 00:18:05,287 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:ntp at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,288 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application openstack-dashboard
2017-08-23 00:18:05,290 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:openstack-dashboard at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,290 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application rabbitmq-server
2017-08-23 00:18:05,292 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:rabbitmq-server at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 00:18:05,293 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying neutron-api...
2017-08-23 00:18:05,294 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'neutron-api',
'config': {'neutron-security-groups': True,
'overlay-network-type': 'gre vxlan'},
'constraints': {},
'entity_url': 'cs:neutron-api-251',
'num_units': 1,
'to': None}
2017-08-23 00:18:05,297 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying ceph-mon...
2017-08-23 00:18:05,302 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'ceph-mon',
'config': {'fsid': '5a791d94-980b-11e4-b6f6-3c970e8b1cf7',
'monitor-secret': 'AQAi5a9UeJXUExAA+By9u+GPhl8/XiUQ4nwI3A=='},
'constraints': {},
'entity_url': 'cs:ceph-mon-11',
'num_units': 3,
'to': None}
2017-08-23 00:18:05,307 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying neutron-gateway...
2017-08-23 00:18:05,312 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'neutron-gateway',
'config': {'ext-port': 'eth1'},
'constraints': {},
'entity_url': 'cs:neutron-gateway-237',
'num_units': 1,
'to': None}
2017-08-23 00:18:05,318 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying neutron-openvswitch...
2017-08-23 00:18:05,320 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'neutron-openvswitch',
'config': {},
'constraints': {},
'entity_url': 'cs:neutron-openvswitch-242',
'num_units': 0,
'to': None}
2017-08-23 00:18:05,322 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying nova-cloud-controller...
2017-08-23 00:18:05,326 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'nova-cloud-controller',
'config': {'console-access-protocol': 'novnc', 'network-manager': 'Neutron'},
'constraints': {},
'entity_url': 'cs:nova-cloud-controller-299',
'num_units': 1,
'to': None}
2017-08-23 00:18:05,330 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying nova-compute...
2017-08-23 00:18:05,333 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'nova-compute',
'config': {'enable-live-migration': False,
'enable-resize': False,
'virt-type': 'lxd'},
'constraints': {},
'entity_url': 'cs:nova-compute-271',
'num_units': 1,
'to': None}
2017-08-23 00:18:05,340 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying ntp...
2017-08-23 00:18:05,341 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'ntp',
'config': {},
'constraints': {},
'entity_url': 'cs:ntp-18',
'num_units': 0,
'to': None}
2017-08-23 00:18:05,348 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying glance...
2017-08-23 00:18:05,350 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'glance',
'config': {},
'constraints': {},
'entity_url': 'cs:glance-258',
'num_units': 1,
'to': None}
2017-08-23 00:18:05,360 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting RelationsAdded:ntp at conjureup/juju.py:704
2017-08-23 00:18:05,360 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying openstack-dashboard...
2017-08-23 00:18:05,361 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'openstack-dashboard',
'config': {},
'constraints': {},
'entity_url': 'cs:openstack-dashboard-248',
'num_units': 1,
'to': None}
2017-08-23 00:18:05,363 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying ceph-radosgw...
2017-08-23 00:18:05,366 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'ceph-radosgw',
'config': {},
'constraints': {},
'entity_url': 'cs:ceph-radosgw-250',
'num_units': 1,
'to': None}
2017-08-23 00:18:05,369 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying rabbitmq-server...
2017-08-23 00:18:05,373 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'rabbitmq-server',
'config': {},
'constraints': {},
'entity_url': 'cs:rabbitmq-server-64',
'num_units': 1,
'to': None}
2017-08-23 00:18:05,377 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying ceph-osd...
2017-08-23 00:18:05,378 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'ceph-osd',
'config': {'osd-devices': '/srv/osd', 'use-direct-io': False},
'constraints': {},
'entity_url': 'cs:ceph-osd-245',
'num_units': 3,
'to': None}
2017-08-23 00:18:05,384 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying keystone...
2017-08-23 00:18:05,386 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'keystone',
'config': {'admin-password': 'openstack'},
'constraints': {},
'entity_url': 'cs:keystone-267',
'num_units': 1,
'to': None}
2017-08-23 00:18:05,391 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying lxd...
2017-08-23 00:18:05,392 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'lxd',
'config': {'block-devices': 'None'},
'constraints': {},
'entity_url': 'cs:lxd-12',
'num_units': 0,
'to': None}
2017-08-23 00:18:05,399 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying mysql...
2017-08-23 00:18:05,401 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'mysql',
'config': {'innodb-buffer-pool-size': '50%', 'max-connections': 20000},
'constraints': {},
'entity_url': 'cs:percona-cluster-253',
'num_units': 1,
'to': None}
2017-08-23 00:18:05,418 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,420 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:mysql at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,422 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:neutron-api at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,424 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,426 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:rabbitmq-server at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,428 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:neutron-gateway at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,430 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:neutron-api at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,432 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:neutron-openvswitch at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,434 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:nova-cloud-controller at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,436 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,438 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:ceph-mon at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,440 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:ceph-osd at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,442 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:rabbitmq-server at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,444 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,446 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:ceph-mon at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,449 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:ceph-radosgw at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,451 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:openstack-dashboard at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,453 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,455 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,457 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:rabbitmq-server at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,459 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,461 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:ceph-mon at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,463 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,465 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:glance at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,468 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,470 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:mysql at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,472 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:lxd at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:05,474 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 00:18:15,708 [ERROR] conjure-up/openstack-novalxd - root: charmstore.py:77 - Request timed out: https://api.jujucharms.com/charmstore/v5/neutron-gateway-237/meta/any?include=bundle-machine-count&include=bundle-metadata&include=bundle-unit-count&include=bundles-containing&include=charm-config&include=charm-metadata&include=common-info&include=extra-info&include=owner&include=revision-info&include=published&include=stats&include=resources&include=supported-series&include=terms timeout: 5
2017-08-23 00:18:21,793 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting Error at conjureup/events.py:150
2017-08-23 00:18:21,796 [ERROR] conjure-up/openstack-novalxd - events.py:162 - Unhandled exception in <Task finished coro=<do_deploy() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/controllers/deploy/common.py:9> exception=JujuAPIError('cannot retrieve charm "cs:lxd-12": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/lxd-12/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
Traceback (most recent call last):
File "/snap/conjure-up/625/lib/python3.6/site-packages/conjureup/controllers/deploy/common.py", line 43, in do_deploy
await asyncio.gather(*tasks)
File "/snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py", line 655, in deploy_service
app_inst = await app.juju.client.deploy(**deploy_args)
File "/snap/conjure-up/625/lib/python3.6/site-packages/juju/model.py", line 1114, in deploy
await client_facade.AddCharm(channel, entity_id)
File "/snap/conjure-up/625/lib/python3.6/site-packages/juju/client/facade.py", line 392, in wrapper
reply = await f(*args, **kwargs)
File "/snap/conjure-up/625/lib/python3.6/site-packages/juju/client/_client1.py", line 1259, in AddCharm
reply = await self.rpc(msg)
File "/snap/conjure-up/625/lib/python3.6/site-packages/juju/client/facade.py", line 514, in rpc
result = await self.connection.rpc(msg, encoder=TypeEncoder)
File "/snap/conjure-up/625/lib/python3.6/site-packages/juju/client/connection.py", line 267, in rpc
raise JujuAPIError(result)
juju.errors.JujuAPIError: cannot retrieve charm "cs:lxd-12": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/lxd-12/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout
2017-08-23 00:18:21,832 [DEBUG] conjure-up/openstack-novalxd - __init__.py:21 - Showing dialog for exception: cannot retrieve charm "cs:lxd-12": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/lxd-12/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout
2017-08-23 00:24:43,147 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting Shutdown at conjureup/events.py:146
2017-08-23 00:24:43,149 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Received Shutdown at conjureup/events.py:177
2017-08-23 00:24:43,150 [INFO] conjure-up/openstack-novalxd - events.py:181 - Shutting down
2017-08-23 00:24:43,151 [INFO] conjure-up/openstack-novalxd - app_config.py:184 - Storing conjure-up state
2017-08-23 00:24:43,177 [INFO] conjure-up/openstack-novalxd - app_config.py:188 - State saved in model config
2017-08-23 00:24:43,178 [INFO] conjure-up/openstack-novalxd - events.py:191 - Disconnecting model
2017-08-23 00:24:43,184 [INFO] conjure-up/openstack-novalxd - events.py:193 - Disconnected
2017-08-23 00:24:43,185 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d6b1cd8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,185 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167cc27fd8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,186 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167cb89078>()]> cb=[gather.<locals>._done_callback(21)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,186 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d262618>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,187 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167d2e5f18>()]> cb=[gather.<locals>._done_callback(13)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,187 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167cc27e88>()]> cb=[gather.<locals>._done_callback(29)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,187 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<DeployController._wait_for_applications() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/controllers/deploy/gui.py:88> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d27e618>()]>>
2017-08-23 00:24:43,188 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d297828>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,188 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:nova-cloud-controller-299": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/nova-cloud-controller-299/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,188 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:ceph-osd-245": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ceph-osd-245/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,189 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,189 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167cc43168>()]> cb=[gather.<locals>._done_callback(7)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,189 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,190 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:neutron-openvswitch-242": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/neutron-openvswitch-242/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,190 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d33fd68>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,190 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:rabbitmq-server-64": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/rabbitmq-server-64/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,190 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,190 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,191 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167cc43a68>()]> cb=[gather.<locals>._done_callback(11)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,191 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:keystone-267": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/keystone-267/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,191 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:lxd-12": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/lxd-12/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,191 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d297378>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,191 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d6b4798>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,192 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167d3024c8>()]> cb=[gather.<locals>._done_callback(19)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,192 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,192 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d2e5858>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,192 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167d302408>()]> cb=[gather.<locals>._done_callback(17)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,192 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167cc27348>()]> cb=[gather.<locals>._done_callback(27)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,193 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,193 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:ceph-radosgw-250": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ceph-radosgw-250/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,193 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d6b4138>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,193 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:neutron-gateway-237": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/neutron-gateway-237/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:51688->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,193 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,194 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:ceph-mon-11": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ceph-mon-11/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,194 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:openstack-dashboard-248": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/openstack-dashboard-248/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,194 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d6b4b28>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,194 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,194 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<set_relations() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:670> result=None>
2017-08-23 00:24:43,194 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d297fa8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,195 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167d013078>()]> cb=[gather.<locals>._done_callback(15)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,195 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,195 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,195 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,195 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,196 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,196 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:glance-258": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/glance-258/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,196 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,196 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,196 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d33f678>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,196 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:ntp-18": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ntp-18/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,197 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f167d3517f8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,197 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167cc435b8>()]> cb=[gather.<locals>._done_callback(9)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,197 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:neutron-api-251": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/neutron-api-251/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,197 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167cb89678>()]> cb=[gather.<locals>._done_callback(23)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,197 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167cb897c8>()]> cb=[gather.<locals>._done_callback(5)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,198 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:percona-cluster-253": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/percona-cluster-253/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 00:24:43,198 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,198 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f167cb89528>()]> cb=[gather.<locals>._done_callback(3)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 00:24:43,198 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<WebSocketCommonProtocol.run() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/websockets/protocol.py:408> result=None>
2017-08-23 00:24:43,198 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:nova-compute-271": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/nova-compute-271/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.57:49233->10.217.245.1:53: i/o timeout',)>
2017-08-23 08:59:29,173 [DEBUG] conjure-up/_unspecified_spell - app.py:251 - LXD version: 2.14, Juju version: 2.3-alpha1-xenial-amd64, conjure-up version: 2.3-alpha1
2017-08-23 08:59:29,236 [INFO] conjure-up/_unspecified_spell - events.py:174 - Watching for shutdown
2017-08-23 08:59:29,319 [DEBUG] conjure-up/_unspecified_spell - events.py:56 - Awaiting Shutdown at conjureup/events.py:177
2017-08-23 09:01:04,360 [DEBUG] conjure-up/openstack-novalxd - download.py:60 - Path is local filesystem, copying /snap/conjure-up/625/spells/openstack-novalxd to /home/jbrazier/.cache/conjure-up/openstack-novalxd
2017-08-23 09:02:03,235 [DEBUG] conjure-up/openstack-novalxd - utils.py:617 - Parsing 2: enp5s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1d:09:0a:dc:49 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.10/24 brd 192.168.1.255 scope global enp5s0
valid_lft forever preferred_lft forever
inet 192.168.1.20/24 brd 192.168.1.255 scope global secondary enp5s0:1
valid_lft forever preferred_lft forever
inet 192.168.1.21/24 brd 192.168.1.255 scope global secondary enp5s0:2
valid_lft forever preferred_lft forever
inet6 fe80::21d:9ff:fe0a:dc49/64 scope link
valid_lft forever preferred_lft forever
for IPv4 address
2017-08-23 09:02:03,252 [DEBUG] conjure-up/openstack-novalxd - utils.py:617 - Parsing 3: enp7s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 00:1d:09:0a:dc:4b brd ff:ff:ff:ff:ff:ff
for IPv4 address
2017-08-23 09:02:04,230 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_lxd_init_auto of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f3cbad8ccc0>>
2017-08-23 09:02:04,460 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_lxc_config of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f3cbad8ccc0>>
2017-08-23 09:02:04,590 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_lxd_storage of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f3cbad8ccc0>>
2017-08-23 09:02:04,714 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: functools.partial(<bound method BaseLXDSetupController.setup_bridge_network of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f3cbad8ccc0>>, None)
2017-08-23 09:02:04,842 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: <bound method BaseLXDSetupController.setup_unused_bridge_network of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f3cbad8ccc0>>
2017-08-23 09:02:04,962 [DEBUG] conjure-up/openstack-novalxd - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_default_profile of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f3cbad8ccc0>>
2017-08-23 09:02:11,835 [DEBUG] conjure-up/openstack-novalxd - step.py:99 - Contents: (<Padding selectable flow widget <AttrMap selectable flow widget <PlainButton selectable flow widget 'Next'> attr_map={None: 'button_primary'} focus_map={None: 'button_primary focus'}> align='right' width=('relative', 20)>, ('weight', 1))
2017-08-23 09:02:11,837 [DEBUG] conjure-up/openstack-novalxd - step.py:99 - Contents: (<Text flow widget ''>, ('weight', 1))
2017-08-23 09:02:57,526 [INFO] conjure-up/openstack-novalxd - common.py:79 - Bootstrapping Juju controller.
2017-08-23 09:02:57,527 [DEBUG] conjure-up/openstack-novalxd - juju.py:140 - Bootstrapping to set region: {}
2017-08-23 09:02:57,534 [DEBUG] conjure-up/openstack-novalxd - juju.py:177 - bootstrap cmd: ['juju', 'bootstrap', 'localhost/localhost', 'conjure-up-localhost-22c', '--default-model', 'conjure-openstack-novalx-2cb', '--config', 'image-stream=daily', '--bootstrap-series', 'xenial', '--credential', 'conjure-localhost-283']
2017-08-23 09:02:57,688 [DEBUG] conjure-up/openstack-novalxd - juju.py:186 - waiting for proc
2017-08-23 09:06:25,868 [DEBUG] conjure-up/openstack-novalxd - juju.py:188 - proc done
2017-08-23 09:06:25,891 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting ModelAvailable at conjureup/juju.py:194 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 09:06:25,892 [INFO] conjure-up/openstack-novalxd - common.py:79 - Bootstrap complete.
2017-08-23 09:06:25,892 [INFO] conjure-up/openstack-novalxd - juju.py:119 - Connecting to model conjure-up-localhost-22c:conjure-openstack-novalx-2cb...
2017-08-23 09:06:25,935 [INFO] conjure-up/openstack-novalxd - websocket: connection.py:163 - Driver connected to juju wss://10.217.245.134:17070/model/dc908d85-33b3-4a16-8ec0-55140bc523f7/api
2017-08-23 09:06:25,997 [INFO] conjure-up/openstack-novalxd - websocket: connection.py:377 - Authenticated
2017-08-23 09:06:26,031 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting ModelConnected at conjureup/juju.py:122 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 09:06:26,031 [INFO] conjure-up/openstack-novalxd - juju.py:123 - Connected
2017-08-23 09:06:26,033 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting Bootstrapped at conjureup/controllers/bootstrap/common.py:68 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 09:06:26,122 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting ModelConnected at conjureup/controllers/deploy/common.py:10
2017-08-23 09:06:26,123 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Received ModelConnected at conjureup/controllers/deploy/common.py:10
2017-08-23 09:06:26,428 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting ModelConnected at conjureup/controllers/deploy/common.py:50 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 09:06:26,430 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Received ModelConnected at conjureup/controllers/deploy/common.py:50 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 09:06:26,430 [INFO] conjure-up/openstack-novalxd - step.py:63 - Running step: pre-deploy.
2017-08-23 09:06:26,750 [DEBUG] conjure-up/openstack-novalxd - step.py:103 - Storing environment
2017-08-23 09:06:26,757 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting ModelConnected at conjureup/controllers/deploy/gui.py:33
2017-08-23 09:06:26,759 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Received ModelConnected at conjureup/controllers/deploy/gui.py:33
2017-08-23 09:06:26,769 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting DeploymentComplete at conjureup/controllers/deploy/common.py:59 in task _wait_for_applications at conjureup/controllers/deploy/gui.py:88
2017-08-23 09:06:26,816 [DEBUG] conjure-up/openstack-novalxd - step.py:109 - Executing script: /home/jbrazier/.cache/conjure-up/openstack-novalxd/steps/00_pre-deploy
2017-08-23 09:06:26,940 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting PreDeployComplete at conjureup/controllers/deploy/common.py:55 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 09:06:26,943 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:0 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,946 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:1 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,948 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:10 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,950 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:11 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,952 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:12 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,955 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:13 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,957 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:14 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,959 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:15 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,961 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:2 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,964 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:3 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,966 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:4 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,969 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:5 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,971 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:6 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,973 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:7 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,976 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:8 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,978 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachinePending:9 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:26,978 [INFO] conjure-up/openstack-novalxd - juju.py:577 - Adding machines: 0: (xenial, ), 1: (xenial, ), 10: (xenial, ), 11: (xenial, ), 12: (xenial, ), 13: (xenial, ), 14: (xenial, ), 15: (xenial, ), 2: (xenial, ), 3: (xenial, ), 4: (xenial, ), 5: (xenial, ), 6: (xenial, ), 7: (xenial, ), 8: (xenial, ), 9: (xenial, )
2017-08-23 09:06:34,277 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:0 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,280 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:0 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,282 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:1 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,284 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:1 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,287 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:10 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,289 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:10 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,291 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:11 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,293 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:11 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,295 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:12 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,298 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:12 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,300 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:13 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,302 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:13 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,305 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:14 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,307 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:14 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,309 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:15 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,311 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:15 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,314 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:2 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,316 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:2 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,318 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:3 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,320 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:3 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,323 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:4 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,325 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:4 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,327 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:5 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,330 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:5 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,332 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:6 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,334 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:6 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,337 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:7 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,339 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:7 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,341 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:8 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,344 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:8 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,346 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Clearing MachinePending:9 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,348 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting MachineCreated:9 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,348 [INFO] conjure-up/openstack-novalxd - juju.py:597 - Added machines: 0, 1, 10, 11, 12, 13, 14, 15, 2, 3, 4, 5, 6, 7, 8, 9
2017-08-23 09:06:34,349 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application ceph-mon
2017-08-23 09:06:34,351 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:ceph-mon at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,351 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application ceph-osd
2017-08-23 09:06:34,354 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:ceph-osd at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,354 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application ceph-radosgw
2017-08-23 09:06:34,356 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:ceph-radosgw at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,357 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application glance
2017-08-23 09:06:34,359 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:glance at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,359 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application keystone
2017-08-23 09:06:34,361 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:keystone at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,362 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application lxd
2017-08-23 09:06:34,364 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:lxd at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,364 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application mysql
2017-08-23 09:06:34,366 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:mysql at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,367 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application neutron-api
2017-08-23 09:06:34,369 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:neutron-api at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,369 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application neutron-gateway
2017-08-23 09:06:34,371 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:neutron-gateway at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,372 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application neutron-openvswitch
2017-08-23 09:06:34,374 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:neutron-openvswitch at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,374 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application nova-cloud-controller
2017-08-23 09:06:34,376 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:nova-cloud-controller at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,377 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application nova-compute
2017-08-23 09:06:34,379 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:nova-compute at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,379 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application ntp
2017-08-23 09:06:34,381 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:ntp at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,382 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application openstack-dashboard
2017-08-23 09:06:34,384 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:openstack-dashboard at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,384 [INFO] conjure-up/openstack-novalxd - juju.py:602 - Machines available for application rabbitmq-server
2017-08-23 09:06:34,386 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting AppMachinesCreated:rabbitmq-server at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 09:06:34,388 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying mysql...
2017-08-23 09:06:34,388 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'mysql',
'config': {'innodb-buffer-pool-size': '50%', 'max-connections': 20000},
'constraints': {},
'entity_url': 'cs:percona-cluster-253',
'num_units': 1,
'to': None}
2017-08-23 09:06:34,391 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying neutron-api...
2017-08-23 09:06:34,396 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'neutron-api',
'config': {'neutron-security-groups': True,
'overlay-network-type': 'gre vxlan'},
'constraints': {},
'entity_url': 'cs:neutron-api-251',
'num_units': 1,
'to': None}
2017-08-23 09:06:34,406 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying neutron-gateway...
2017-08-23 09:06:34,407 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'neutron-gateway',
'config': {'ext-port': 'eth1'},
'constraints': {},
'entity_url': 'cs:neutron-gateway-237',
'num_units': 1,
'to': None}
2017-08-23 09:06:34,412 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying neutron-openvswitch...
2017-08-23 09:06:34,414 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'neutron-openvswitch',
'config': {},
'constraints': {},
'entity_url': 'cs:neutron-openvswitch-242',
'num_units': 0,
'to': None}
2017-08-23 09:06:34,420 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying nova-cloud-controller...
2017-08-23 09:06:34,422 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'nova-cloud-controller',
'config': {'console-access-protocol': 'novnc', 'network-manager': 'Neutron'},
'constraints': {},
'entity_url': 'cs:nova-cloud-controller-299',
'num_units': 1,
'to': None}
2017-08-23 09:06:34,429 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying nova-compute...
2017-08-23 09:06:34,431 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'nova-compute',
'config': {'enable-live-migration': False,
'enable-resize': False,
'virt-type': 'lxd'},
'constraints': {},
'entity_url': 'cs:nova-compute-271',
'num_units': 1,
'to': None}
2017-08-23 09:06:34,438 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying ceph-mon...
2017-08-23 09:06:34,440 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'ceph-mon',
'config': {'fsid': '5a791d94-980b-11e4-b6f6-3c970e8b1cf7',
'monitor-secret': 'AQAi5a9UeJXUExAA+By9u+GPhl8/XiUQ4nwI3A=='},
'constraints': {},
'entity_url': 'cs:ceph-mon-11',
'num_units': 3,
'to': None}
2017-08-23 09:06:34,446 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying ntp...
2017-08-23 09:06:34,448 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'ntp',
'config': {},
'constraints': {},
'entity_url': 'cs:ntp-18',
'num_units': 0,
'to': None}
2017-08-23 09:06:34,454 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying glance...
2017-08-23 09:06:34,456 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'glance',
'config': {},
'constraints': {},
'entity_url': 'cs:glance-258',
'num_units': 1,
'to': None}
2017-08-23 09:06:34,465 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting RelationsAdded:ntp at conjureup/juju.py:704
2017-08-23 09:06:34,466 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying openstack-dashboard...
2017-08-23 09:06:34,466 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'openstack-dashboard',
'config': {},
'constraints': {},
'entity_url': 'cs:openstack-dashboard-248',
'num_units': 1,
'to': None}
2017-08-23 09:06:34,468 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying ceph-radosgw...
2017-08-23 09:06:34,472 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'ceph-radosgw',
'config': {},
'constraints': {},
'entity_url': 'cs:ceph-radosgw-250',
'num_units': 1,
'to': None}
2017-08-23 09:06:34,479 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying rabbitmq-server...
2017-08-23 09:06:34,480 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'rabbitmq-server',
'config': {},
'constraints': {},
'entity_url': 'cs:rabbitmq-server-64',
'num_units': 1,
'to': None}
2017-08-23 09:06:34,484 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying ceph-osd...
2017-08-23 09:06:34,486 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'ceph-osd',
'config': {'osd-devices': '/srv/osd', 'use-direct-io': False},
'constraints': {},
'entity_url': 'cs:ceph-osd-245',
'num_units': 3,
'to': None}
2017-08-23 09:06:34,493 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying keystone...
2017-08-23 09:06:34,495 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'keystone',
'config': {'admin-password': 'openstack'},
'constraints': {},
'entity_url': 'cs:keystone-267',
'num_units': 1,
'to': None}
2017-08-23 09:06:34,499 [INFO] conjure-up/openstack-novalxd - juju.py:650 - Deploying lxd...
2017-08-23 09:06:34,501 [DEBUG] conjure-up/openstack-novalxd - juju.py:653 - {'application_name': 'lxd',
'config': {'block-devices': 'None'},
'constraints': {},
'entity_url': 'cs:lxd-12',
'num_units': 0,
'to': None}
2017-08-23 09:06:34,519 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,522 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:mysql at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,524 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,526 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:neutron-api at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,528 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:neutron-gateway at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,530 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:rabbitmq-server at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,532 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:neutron-openvswitch at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,534 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:neutron-api at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,536 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:nova-cloud-controller at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,538 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,540 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:ceph-osd at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,543 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:ceph-mon at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,545 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,547 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:rabbitmq-server at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,549 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:ceph-mon at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,551 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:ceph-radosgw at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,553 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,555 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:openstack-dashboard at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,557 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:rabbitmq-server at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,560 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,562 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,564 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:ceph-mon at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,566 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:glance at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,568 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,570 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:mysql at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,572 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:keystone at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,574 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:lxd at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:34,576 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/625/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 09:06:50,026 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting Error at conjureup/events.py:150
2017-08-23 09:06:50,029 [ERROR] conjure-up/openstack-novalxd - events.py:162 - Unhandled exception in <Task finished coro=<do_deploy() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/controllers/deploy/common.py:9> exception=JujuAPIError('cannot retrieve charm "cs:nova-cloud-controller-299": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/nova-cloud-controller-299/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
Traceback (most recent call last):
File "/snap/conjure-up/625/lib/python3.6/site-packages/conjureup/controllers/deploy/common.py", line 43, in do_deploy
await asyncio.gather(*tasks)
File "/snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py", line 655, in deploy_service
app_inst = await app.juju.client.deploy(**deploy_args)
File "/snap/conjure-up/625/lib/python3.6/site-packages/juju/model.py", line 1114, in deploy
await client_facade.AddCharm(channel, entity_id)
File "/snap/conjure-up/625/lib/python3.6/site-packages/juju/client/facade.py", line 392, in wrapper
reply = await f(*args, **kwargs)
File "/snap/conjure-up/625/lib/python3.6/site-packages/juju/client/_client1.py", line 1259, in AddCharm
reply = await self.rpc(msg)
File "/snap/conjure-up/625/lib/python3.6/site-packages/juju/client/facade.py", line 514, in rpc
result = await self.connection.rpc(msg, encoder=TypeEncoder)
File "/snap/conjure-up/625/lib/python3.6/site-packages/juju/client/connection.py", line 267, in rpc
raise JujuAPIError(result)
juju.errors.JujuAPIError: cannot retrieve charm "cs:nova-cloud-controller-299": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/nova-cloud-controller-299/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout
2017-08-23 09:06:50,070 [DEBUG] conjure-up/openstack-novalxd - __init__.py:21 - Showing dialog for exception: cannot retrieve charm "cs:nova-cloud-controller-299": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/nova-cloud-controller-299/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout
2017-08-23 09:14:17,361 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Setting Shutdown at conjureup/events.py:146
2017-08-23 09:14:17,364 [DEBUG] conjure-up/openstack-novalxd - events.py:56 - Received Shutdown at conjureup/events.py:177
2017-08-23 09:14:17,365 [INFO] conjure-up/openstack-novalxd - events.py:181 - Shutting down
2017-08-23 09:14:17,367 [INFO] conjure-up/openstack-novalxd - app_config.py:184 - Storing conjure-up state
2017-08-23 09:14:17,991 [INFO] conjure-up/openstack-novalxd - app_config.py:188 - State saved in model config
2017-08-23 09:14:17,992 [INFO] conjure-up/openstack-novalxd - events.py:191 - Disconnecting model
2017-08-23 09:14:17,998 [INFO] conjure-up/openstack-novalxd - events.py:193 - Disconnected
2017-08-23 09:14:17,999 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe6c8588>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:17,999 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe496708>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,000 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe6c89d8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,000 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe040c78>()]> cb=[gather.<locals>._done_callback(9)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,000 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe43e648>()]> cb=[gather.<locals>._done_callback(23)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,001 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe793918>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,001 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe496228>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,002 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe6da7f8>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,002 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:percona-cluster-253": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/percona-cluster-253/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,002 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:keystone-267": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/keystone-267/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,002 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:ceph-mon-11": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ceph-mon-11/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,003 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe496798>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,003 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbead5768>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,003 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe6c8498>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,003 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe0407c8>()]> cb=[gather.<locals>._done_callback(7)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,003 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe43e828>()]> cb=[gather.<locals>._done_callback(3)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,004 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,004 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe76bd08>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,004 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe040678>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,004 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe040528>()]> cb=[gather.<locals>._done_callback(29)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,005 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe43e948>()]> cb=[gather.<locals>._done_callback(21)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,005 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:nova-compute-271": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/nova-compute-271/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,005 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,005 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,005 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,006 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:rabbitmq-server-64": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/rabbitmq-server-64/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,006 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:nova-cloud-controller-299": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/nova-cloud-controller-299/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,006 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe6c85b8>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,006 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,006 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe484168>()]> cb=[gather.<locals>._done_callback(19)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,007 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:ceph-osd-245": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ceph-osd-245/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,007 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<WebSocketCommonProtocol.run() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/websockets/protocol.py:408> result=None>
2017-08-23 09:14:18,007 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<DeployController._wait_for_applications() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/controllers/deploy/gui.py:88> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe6da348>()]>>
2017-08-23 09:14:18,007 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:ceph-radosgw-250": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ceph-radosgw-250/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,007 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:neutron-openvswitch-242": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/neutron-openvswitch-242/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,007 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe6c8dc8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,008 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,008 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,008 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe6c8eb8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,008 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe441df8>()]> cb=[gather.<locals>._done_callback(27)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,009 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe4846a8>()]> cb=[gather.<locals>._done_callback(17)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,009 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe6c8f78>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,009 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,009 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,009 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:openstack-dashboard-248": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/openstack-dashboard-248/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,010 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:neutron-api-251": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/neutron-api-251/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,010 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe6c8d08>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,010 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<set_relations() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:670> result=None>
2017-08-23 09:14:18,010 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe059168>()]> cb=[gather.<locals>._done_callback(11)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,010 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,011 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe48e948>()]> cb=[gather.<locals>._done_callback(13)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,011 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:ntp-18": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ntp-18/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,011 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:neutron-gateway-237": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/neutron-gateway-237/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,011 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,011 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,012 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:glance-258": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/glance-258/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,012 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbf240d98>()]> cb=[gather.<locals>._done_callback(15)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,012 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:lxd-12": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/lxd-12/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.134:44448->10.217.245.1:53: i/o timeout',)>
2017-08-23 09:14:18,012 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 09:14:18,012 [DEBUG] conjure-up/openstack-novalxd - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/625/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f3cbe8138e8>()]> cb=[gather.<locals>._done_callback(5)() at /snap/conjure-up/625/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:09:42,334 [DEBUG] conjure-up/_unspecified_spell - app.py:251 - LXD version: 2.14, Juju version: 2.3-alpha1-xenial-amd64, conjure-up version: 2.3-alpha1
2017-08-23 17:09:42,397 [INFO] conjure-up/_unspecified_spell - events.py:174 - Watching for shutdown
2017-08-23 17:09:42,504 [DEBUG] conjure-up/_unspecified_spell - events.py:56 - Awaiting Shutdown at conjureup/events.py:177
2017-08-23 17:10:14,681 [DEBUG] conjure-up/kubernetes-core - download.py:60 - Path is local filesystem, copying /snap/conjure-up/629/spells/kubernetes-core to /home/jbrazier/.cache/conjure-up/kubernetes-core
2017-08-23 17:10:14,698 [DEBUG] conjure-up/kubernetes-core - utils.py:420 - Pulling bundle for kubernetes-core from channel: stable
2017-08-23 17:11:52,590 [DEBUG] conjure-up/kubernetes-core - utils.py:617 - Parsing 2: enp5s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1d:09:0a:dc:49 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.10/24 brd 192.168.1.255 scope global enp5s0
valid_lft forever preferred_lft forever
inet 192.168.1.20/24 brd 192.168.1.255 scope global secondary enp5s0:1
valid_lft forever preferred_lft forever
inet 192.168.1.21/24 brd 192.168.1.255 scope global secondary enp5s0:2
valid_lft forever preferred_lft forever
inet6 fe80::21d:9ff:fe0a:dc49/64 scope link
valid_lft forever preferred_lft forever
for IPv4 address
2017-08-23 17:11:52,609 [DEBUG] conjure-up/kubernetes-core - utils.py:617 - Parsing 3: enp7s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 00:1d:09:0a:dc:4b brd ff:ff:ff:ff:ff:ff
for IPv4 address
2017-08-23 17:11:53,404 [DEBUG] conjure-up/kubernetes-core - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_lxd_init_auto of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f4111487a20>>
2017-08-23 17:11:53,680 [DEBUG] conjure-up/kubernetes-core - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_lxc_config of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f4111487a20>>
2017-08-23 17:11:53,860 [DEBUG] conjure-up/kubernetes-core - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_lxd_storage of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f4111487a20>>
2017-08-23 17:11:53,992 [DEBUG] conjure-up/kubernetes-core - common.py:102 - LXD Init: functools.partial(<bound method BaseLXDSetupController.setup_bridge_network of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f4111487a20>>, None)
2017-08-23 17:11:54,159 [DEBUG] conjure-up/kubernetes-core - common.py:102 - LXD Init: <bound method BaseLXDSetupController.setup_unused_bridge_network of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f4111487a20>>
2017-08-23 17:11:54,319 [DEBUG] conjure-up/kubernetes-core - common.py:102 - LXD Init: <bound method BaseLXDSetupController.set_default_profile of <conjureup.controllers.lxdsetup.gui.LXDSetupController object at 0x7f4111487a20>>
2017-08-23 17:14:25,138 [DEBUG] conjure-up/kubernetes-core - step.py:99 - Contents: (<Padding selectable flow widget <AttrMap selectable flow widget <PlainButton selectable flow widget 'Next'> attr_map={None: 'button_primary'} focus_map={None: 'button_primary focus'}> align='right' width=('relative', 20)>, ('weight', 1))
2017-08-23 17:14:25,233 [DEBUG] conjure-up/kubernetes-core - step.py:99 - Contents: (<Text flow widget ''>, ('weight', 1))
2017-08-23 17:14:25,432 [INFO] conjure-up/kubernetes-core - gui.py:74 - Ignoring placement spec because we are deploying to LXD: ['lxd:0']
2017-08-23 17:14:25,432 [INFO] conjure-up/kubernetes-core - gui.py:74 - Ignoring placement spec because we are deploying to LXD: ['0']
2017-08-23 17:14:25,432 [INFO] conjure-up/kubernetes-core - gui.py:74 - Ignoring placement spec because we are deploying to LXD: ['0']
2017-08-23 17:14:25,432 [INFO] conjure-up/kubernetes-core - gui.py:74 - Ignoring placement spec because we are deploying to LXD: ['1']
2017-08-23 17:16:07,502 [INFO] conjure-up/kubernetes-core - common.py:79 - Bootstrapping Juju controller.
2017-08-23 17:16:07,503 [DEBUG] conjure-up/kubernetes-core - juju.py:140 - Bootstrapping to set region: {}
2017-08-23 17:16:07,503 [DEBUG] conjure-up/kubernetes-core - juju.py:177 - bootstrap cmd: ['juju', 'bootstrap', 'localhost/localhost', 'conjure-up-localhost-220', '--default-model', 'conjure-kubernetes-core-04c', '--config', 'image-stream=daily', '--bootstrap-series', 'xenial']
2017-08-23 17:16:07,543 [DEBUG] conjure-up/kubernetes-core - juju.py:186 - waiting for proc
2017-08-23 17:19:37,732 [DEBUG] conjure-up/kubernetes-core - juju.py:188 - proc done
2017-08-23 17:19:37,759 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting ModelAvailable at conjureup/juju.py:194 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 17:19:37,759 [INFO] conjure-up/kubernetes-core - common.py:79 - Bootstrap complete.
2017-08-23 17:19:37,760 [INFO] conjure-up/kubernetes-core - juju.py:119 - Connecting to model conjure-up-localhost-220:conjure-kubernetes-core-04c...
2017-08-23 17:19:37,808 [INFO] conjure-up/kubernetes-core - websocket: connection.py:163 - Driver connected to juju wss://10.217.245.244:17070/model/69d4756f-72c8-4240-8e81-88d83319caa0/api
2017-08-23 17:19:37,858 [INFO] conjure-up/kubernetes-core - websocket: connection.py:377 - Authenticated
2017-08-23 17:19:37,899 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting ModelConnected at conjureup/juju.py:122 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 17:19:37,900 [INFO] conjure-up/kubernetes-core - juju.py:123 - Connected
2017-08-23 17:19:37,902 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting Bootstrapped at conjureup/controllers/bootstrap/common.py:68 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 17:19:38,185 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting ModelConnected at conjureup/controllers/deploy/common.py:10
2017-08-23 17:19:38,186 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Received ModelConnected at conjureup/controllers/deploy/common.py:10
2017-08-23 17:19:38,512 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting ModelConnected at conjureup/controllers/deploy/common.py:50 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 17:19:38,514 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Received ModelConnected at conjureup/controllers/deploy/common.py:50 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 17:19:38,514 [INFO] conjure-up/kubernetes-core - step.py:63 - Running step: pre-deploy.
2017-08-23 17:19:38,836 [DEBUG] conjure-up/kubernetes-core - step.py:103 - Storing environment
2017-08-23 17:19:38,843 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting ModelConnected at conjureup/controllers/deploy/gui.py:33
2017-08-23 17:19:38,845 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Received ModelConnected at conjureup/controllers/deploy/gui.py:33
2017-08-23 17:19:38,851 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting DeploymentComplete at conjureup/controllers/deploy/common.py:59 in task _wait_for_applications at conjureup/controllers/deploy/gui.py:88
2017-08-23 17:19:38,885 [DEBUG] conjure-up/kubernetes-core - step.py:109 - Executing script: /home/jbrazier/.cache/conjure-up/kubernetes-core/steps/00_pre-deploy
2017-08-23 17:19:39,417 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting PreDeployComplete at conjureup/controllers/deploy/common.py:55 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 17:19:39,420 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting MachinePending:0 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:39,423 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting MachinePending:1 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:39,426 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting MachinePending:2 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:39,428 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting MachinePending:3 at conjureup/juju.py:560 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:39,428 [INFO] conjure-up/kubernetes-core - juju.py:577 - Adding machines: 0: (xenial, ), 1: (xenial, ), 2: (xenial, ), 3: (xenial, )
2017-08-23 17:19:41,263 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Clearing MachinePending:0 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,266 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting MachineCreated:0 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,268 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Clearing MachinePending:1 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,271 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting MachineCreated:1 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,273 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Clearing MachinePending:2 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,275 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting MachineCreated:2 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,278 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Clearing MachinePending:3 at conjureup/juju.py:588 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,280 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting MachineCreated:3 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,280 [INFO] conjure-up/kubernetes-core - juju.py:597 - Added machines: 0, 1, 2, 3
2017-08-23 17:19:41,281 [INFO] conjure-up/kubernetes-core - juju.py:602 - Machines available for application easyrsa
2017-08-23 17:19:41,283 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting AppMachinesCreated:easyrsa at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,283 [INFO] conjure-up/kubernetes-core - juju.py:602 - Machines available for application etcd
2017-08-23 17:19:41,286 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting AppMachinesCreated:etcd at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,286 [INFO] conjure-up/kubernetes-core - juju.py:602 - Machines available for application flannel
2017-08-23 17:19:41,288 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting AppMachinesCreated:flannel at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,288 [INFO] conjure-up/kubernetes-core - juju.py:602 - Machines available for application kubernetes-master
2017-08-23 17:19:41,292 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting AppMachinesCreated:kubernetes-master at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,292 [INFO] conjure-up/kubernetes-core - juju.py:602 - Machines available for application kubernetes-worker
2017-08-23 17:19:41,295 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting AppMachinesCreated:kubernetes-worker at conjureup/juju.py:604 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 17:19:41,296 [INFO] conjure-up/kubernetes-core - juju.py:650 - Deploying kubernetes-worker...
2017-08-23 17:19:41,296 [DEBUG] conjure-up/kubernetes-core - juju.py:653 - {'application_name': 'kubernetes-worker',
'config': {'channel': '1.7/stable'},
'constraints': {},
'entity_url': 'cs:~containers/xenial/kubernetes-worker-40',
'num_units': 1,
'to': None}
2017-08-23 17:19:41,299 [INFO] conjure-up/kubernetes-core - juju.py:650 - Deploying easyrsa...
2017-08-23 17:19:41,304 [DEBUG] conjure-up/kubernetes-core - juju.py:653 - {'application_name': 'easyrsa',
'config': {},
'constraints': {},
'entity_url': 'cs:~containers/xenial/easyrsa-12',
'num_units': 1,
'to': None}
2017-08-23 17:19:41,307 [INFO] conjure-up/kubernetes-core - juju.py:650 - Deploying flannel...
2017-08-23 17:19:41,315 [DEBUG] conjure-up/kubernetes-core - juju.py:653 - {'application_name': 'flannel',
'config': {},
'constraints': {},
'entity_url': 'cs:~containers/xenial/flannel-20',
'num_units': 0,
'to': None}
2017-08-23 17:19:41,321 [INFO] conjure-up/kubernetes-core - juju.py:650 - Deploying etcd...
2017-08-23 17:19:41,323 [DEBUG] conjure-up/kubernetes-core - juju.py:653 - {'application_name': 'etcd',
'config': {},
'constraints': {},
'entity_url': 'cs:~containers/xenial/etcd-40',
'num_units': 1,
'to': None}
2017-08-23 17:19:41,329 [INFO] conjure-up/kubernetes-core - juju.py:650 - Deploying kubernetes-master...
2017-08-23 17:19:41,330 [DEBUG] conjure-up/kubernetes-core - juju.py:653 - {'application_name': 'kubernetes-master',
'config': {'channel': '1.7/stable'},
'constraints': {},
'entity_url': 'cs:~containers/xenial/kubernetes-master-35',
'num_units': 1,
'to': None}
2017-08-23 17:19:41,347 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting AppDeployed:kubernetes-worker at /snap/conjure-up/629/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 17:19:41,350 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting AppDeployed:kubernetes-master at /snap/conjure-up/629/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 17:19:41,352 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting AppDeployed:easyrsa at /snap/conjure-up/629/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 17:19:41,354 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting AppDeployed:kubernetes-master at /snap/conjure-up/629/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 17:19:41,356 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting AppDeployed:kubernetes-master at /snap/conjure-up/629/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 17:19:41,359 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting AppDeployed:etcd at /snap/conjure-up/629/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 17:19:41,361 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting AppDeployed:kubernetes-master at /snap/conjure-up/629/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 17:19:41,363 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting AppDeployed:kubernetes-worker at /snap/conjure-up/629/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 17:19:41,365 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting AppDeployed:etcd at /snap/conjure-up/629/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 17:19:41,367 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Awaiting AppDeployed:flannel at /snap/conjure-up/629/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:96
2017-08-23 17:19:56,945 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting Error at conjureup/events.py:150
2017-08-23 17:19:56,948 [ERROR] conjure-up/kubernetes-core - events.py:162 - Unhandled exception in <Task finished coro=<do_deploy() done, defined at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/controllers/deploy/common.py:9> exception=JujuAPIError('cannot retrieve charm "cs:~containers/etcd-40": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/~containers/etcd-40/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.244:35985->10.217.245.1:53: i/o timeout',)>
Traceback (most recent call last):
File "/snap/conjure-up/629/lib/python3.6/site-packages/conjureup/controllers/deploy/common.py", line 43, in do_deploy
await asyncio.gather(*tasks)
File "/snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py", line 655, in deploy_service
app_inst = await app.juju.client.deploy(**deploy_args)
File "/snap/conjure-up/629/lib/python3.6/site-packages/juju/model.py", line 1114, in deploy
await client_facade.AddCharm(channel, entity_id)
File "/snap/conjure-up/629/lib/python3.6/site-packages/juju/client/facade.py", line 392, in wrapper
reply = await f(*args, **kwargs)
File "/snap/conjure-up/629/lib/python3.6/site-packages/juju/client/_client1.py", line 1259, in AddCharm
reply = await self.rpc(msg)
File "/snap/conjure-up/629/lib/python3.6/site-packages/juju/client/facade.py", line 514, in rpc
result = await self.connection.rpc(msg, encoder=TypeEncoder)
File "/snap/conjure-up/629/lib/python3.6/site-packages/juju/client/connection.py", line 267, in rpc
raise JujuAPIError(result)
juju.errors.JujuAPIError: cannot retrieve charm "cs:~containers/etcd-40": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/~containers/etcd-40/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.244:35985->10.217.245.1:53: i/o timeout
2017-08-23 17:19:56,984 [DEBUG] conjure-up/kubernetes-core - __init__.py:21 - Showing dialog for exception: cannot retrieve charm "cs:~containers/etcd-40": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/~containers/etcd-40/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.244:35985->10.217.245.1:53: i/o timeout
2017-08-23 17:21:04,574 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Setting Shutdown at conjureup/events.py:146
2017-08-23 17:21:04,577 [DEBUG] conjure-up/kubernetes-core - events.py:56 - Received Shutdown at conjureup/events.py:177
2017-08-23 17:21:04,577 [INFO] conjure-up/kubernetes-core - events.py:181 - Shutting down
2017-08-23 17:21:04,578 [INFO] conjure-up/kubernetes-core - app_config.py:184 - Storing conjure-up state
2017-08-23 17:21:04,599 [INFO] conjure-up/kubernetes-core - app_config.py:188 - State saved in model config
2017-08-23 17:21:04,600 [INFO] conjure-up/kubernetes-core - events.py:191 - Disconnecting model
2017-08-23 17:21:04,615 [INFO] conjure-up/kubernetes-core - events.py:193 - Disconnected
2017-08-23 17:21:04,616 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f4112492078>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,617 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f4112c7c3a8>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,617 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f4112477858>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,618 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f4112492498>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,619 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f41124778e8>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,619 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:~containers/kubernetes-master-35": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/~containers/kubernetes-master-35/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.244:35985->10.217.245.1:53: i/o timeout',)>
2017-08-23 17:21:04,619 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:~containers/etcd-40": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/~containers/etcd-40/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.244:35985->10.217.245.1:53: i/o timeout',)>
2017-08-23 17:21:04,620 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f41124779d8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,620 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f41120d1768>()]> cb=[gather.<locals>._done_callback(5)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,621 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:~containers/flannel-20": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/~containers/flannel-20/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.244:35985->10.217.245.1:53: i/o timeout',)>
2017-08-23 17:21:04,621 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f41123ea888>()]> cb=[gather.<locals>._done_callback(9)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,622 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f4112c7c858>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,622 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f4112c7c558>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,622 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:~containers/easyrsa-12": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/~containers/easyrsa-12/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.244:35985->10.217.245.1:53: i/o timeout',)>
2017-08-23 17:21:04,622 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f411214fdf8>()]> cb=[gather.<locals>._done_callback(3)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,623 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task finished coro=<WebSocketCommonProtocol.run() done, defined at /snap/conjure-up/629/lib/python3.6/site-packages/websockets/protocol.py:428> result=None>
2017-08-23 17:21:04,623 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<DeployController._wait_for_applications() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/controllers/deploy/gui.py:88> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f4112607a38>()]>>
2017-08-23 17:21:04,623 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py:608> exception=JujuAPIError('cannot retrieve charm "cs:~containers/kubernetes-worker-40": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/~containers/kubernetes-worker-40/archive: dial tcp: lookup api.jujucharms.com on 10.217.245.1:53: read udp 10.217.245.244:35985->10.217.245.1:53: i/o timeout',)>
2017-08-23 17:21:04,623 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f41122b7d08>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,623 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/juju.py:685> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f4112154ca8>()]> cb=[gather.<locals>._done_callback(7)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,624 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 17:21:04,624 [DEBUG] conjure-up/kubernetes-core - events.py:203 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/629/lib/python3.6/site-packages/conjureup/events.py:96> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/629/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:20:19,736 [DEBUG] conjure-up/_unspecified_spell - app.py:249 - Juju version: 2.3-alpha1-xenial-amd64, conjure-up version: 2.3-alpha1
2017-08-23 18:20:19,795 [INFO] conjure-up/_unspecified_spell - events.py:169 - Watching for shutdown
2017-08-23 18:20:19,899 [DEBUG] conjure-up/_unspecified_spell - events.py:52 - Awaiting Shutdown at conjureup/events.py:172
2017-08-23 18:21:54,467 [DEBUG] conjure-up/openstack-novalxd - download.py:60 - Path is local filesystem, copying /snap/conjure-up/632/spells/openstack-novalxd to /home/jbrazier/.cache/conjure-up/openstack-novalxd
2017-08-23 18:22:05,944 [DEBUG] conjure-up/openstack-novalxd - gui.py:69 - Starting watcher for verifying LXD server is available.
2017-08-23 18:22:05,963 [DEBUG] conjure-up/openstack-novalxd - utils.py:603 - Parsing 2: enp5s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1d:09:0a:dc:49 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.10/24 brd 192.168.1.255 scope global enp5s0
valid_lft forever preferred_lft forever
inet 192.168.1.20/24 brd 192.168.1.255 scope global secondary enp5s0:1
valid_lft forever preferred_lft forever
inet 192.168.1.21/24 brd 192.168.1.255 scope global secondary enp5s0:2
valid_lft forever preferred_lft forever
inet6 fe80::21d:9ff:fe0a:dc49/64 scope link
valid_lft forever preferred_lft forever
for IPv4 address
2017-08-23 18:22:05,980 [DEBUG] conjure-up/openstack-novalxd - utils.py:603 - Parsing 3: enp7s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 00:1d:09:0a:dc:4b brd ff:ff:ff:ff:ff:ff
for IPv4 address
2017-08-23 18:22:06,125 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting LXDAvailable at conjureup/controllers/clouds/common.py:21
2017-08-23 18:23:04,005 [INFO] conjure-up/openstack-novalxd - eventloop: ev.py:40 - Stopping eventloop
2017-08-23 18:23:04,010 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting Shutdown at conjureup/events.py:141
2017-08-23 18:23:04,011 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Received Shutdown at conjureup/events.py:172
2017-08-23 18:23:04,011 [INFO] conjure-up/openstack-novalxd - events.py:176 - Shutting down
2017-08-23 18:25:10,618 [DEBUG] conjure-up/_unspecified_spell - app.py:249 - Juju version: 2.3-alpha1-xenial-amd64, conjure-up version: 2.3-alpha1
2017-08-23 18:25:10,681 [INFO] conjure-up/_unspecified_spell - events.py:169 - Watching for shutdown
2017-08-23 18:25:10,761 [DEBUG] conjure-up/_unspecified_spell - events.py:52 - Awaiting Shutdown at conjureup/events.py:172
2017-08-23 18:25:16,346 [DEBUG] conjure-up/openstack-novalxd - download.py:60 - Path is local filesystem, copying /snap/conjure-up/632/spells/openstack-novalxd to /home/jbrazier/.cache/conjure-up/openstack-novalxd
2017-08-23 18:25:43,415 [DEBUG] conjure-up/openstack-novalxd - gui.py:69 - Starting watcher for verifying LXD server is available.
2017-08-23 18:25:43,433 [DEBUG] conjure-up/openstack-novalxd - utils.py:603 - Parsing 2: enp5s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1d:09:0a:dc:49 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.10/24 brd 192.168.1.255 scope global enp5s0
valid_lft forever preferred_lft forever
inet 192.168.1.20/24 brd 192.168.1.255 scope global secondary enp5s0:1
valid_lft forever preferred_lft forever
inet 192.168.1.21/24 brd 192.168.1.255 scope global secondary enp5s0:2
valid_lft forever preferred_lft forever
inet6 fe80::21d:9ff:fe0a:dc49/64 scope link
valid_lft forever preferred_lft forever
for IPv4 address
2017-08-23 18:25:43,450 [DEBUG] conjure-up/openstack-novalxd - utils.py:603 - Parsing 3: enp7s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 00:1d:09:0a:dc:4b brd ff:ff:ff:ff:ff:ff
for IPv4 address
2017-08-23 18:25:43,583 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting LXDAvailable at conjureup/controllers/clouds/common.py:21
2017-08-23 18:32:12,201 [DEBUG] conjure-up/openstack-novalxd - utils.py:603 - Parsing 2: enp5s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 00:1d:09:0a:dc:49 brd ff:ff:ff:ff:ff:ff
inet 192.168.1.10/24 brd 192.168.1.255 scope global enp5s0
valid_lft forever preferred_lft forever
inet 192.168.1.20/24 brd 192.168.1.255 scope global secondary enp5s0:1
valid_lft forever preferred_lft forever
inet 192.168.1.21/24 brd 192.168.1.255 scope global secondary enp5s0:2
valid_lft forever preferred_lft forever
inet6 fe80::21d:9ff:fe0a:dc49/64 scope link
valid_lft forever preferred_lft forever
for IPv4 address
2017-08-23 18:32:12,218 [DEBUG] conjure-up/openstack-novalxd - utils.py:603 - Parsing 3: enp7s0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN group default qlen 1000
link/ether 00:1d:09:0a:dc:4b brd ff:ff:ff:ff:ff:ff
for IPv4 address
2017-08-23 18:32:50,822 [DEBUG] conjure-up/openstack-novalxd - step.py:99 - Contents: (<Padding selectable flow widget <AttrMap selectable flow widget <PlainButton selectable flow widget 'Next'> attr_map={None: 'button_primary'} focus_map={None: 'button_primary focus'}> align='right' width=('relative', 20)>, ('weight', 1))
2017-08-23 18:32:50,823 [DEBUG] conjure-up/openstack-novalxd - step.py:99 - Contents: (<Text flow widget ''>, ('weight', 1))
2017-08-23 18:32:59,510 [INFO] conjure-up/openstack-novalxd - common.py:79 - Bootstrapping Juju controller.
2017-08-23 18:32:59,512 [DEBUG] conjure-up/openstack-novalxd - juju.py:140 - Bootstrapping to set region: {}
2017-08-23 18:32:59,512 [DEBUG] conjure-up/openstack-novalxd - juju.py:177 - bootstrap cmd: ['juju', 'bootstrap', 'localhost/localhost', 'conjure-up-localhost-be2', '--default-model', 'conjure-openstack-novalx-c71', '--config', 'image-stream=daily', '--bootstrap-series', 'xenial', '--credential', 'conjure-localhost-283']
2017-08-23 18:32:59,556 [DEBUG] conjure-up/openstack-novalxd - juju.py:187 - waiting for proc
2017-08-23 18:38:00,215 [DEBUG] conjure-up/openstack-novalxd - juju.py:189 - proc done
2017-08-23 18:38:00,238 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting ModelAvailable at conjureup/juju.py:195 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 18:38:00,239 [INFO] conjure-up/openstack-novalxd - common.py:79 - Bootstrap complete.
2017-08-23 18:38:00,240 [INFO] conjure-up/openstack-novalxd - juju.py:119 - Connecting to model conjure-up-localhost-be2:conjure-openstack-novalx-c71...
2017-08-23 18:38:00,310 [INFO] conjure-up/openstack-novalxd - websocket: connection.py:163 - Driver connected to juju wss://10.159.211.197:17070/model/a5c06254-6159-402e-8667-cb27c274a0de/api
2017-08-23 18:38:00,352 [INFO] conjure-up/openstack-novalxd - websocket: connection.py:377 - Authenticated
2017-08-23 18:38:00,383 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting ModelConnected at conjureup/juju.py:122 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 18:38:00,384 [INFO] conjure-up/openstack-novalxd - juju.py:123 - Connected
2017-08-23 18:38:00,386 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting Bootstrapped at conjureup/controllers/bootstrap/common.py:68 in task run at conjureup/controllers/bootstrap/common.py:22
2017-08-23 18:38:00,986 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting ModelConnected at conjureup/controllers/deploy/common.py:10
2017-08-23 18:38:00,988 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Received ModelConnected at conjureup/controllers/deploy/common.py:10
2017-08-23 18:38:01,321 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting ModelConnected at conjureup/controllers/deploy/common.py:50 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 18:38:01,322 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Received ModelConnected at conjureup/controllers/deploy/common.py:50 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 18:38:01,323 [INFO] conjure-up/openstack-novalxd - step.py:63 - Running step: pre-deploy.
2017-08-23 18:38:01,641 [DEBUG] conjure-up/openstack-novalxd - step.py:103 - Storing environment
2017-08-23 18:38:01,649 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting ModelConnected at conjureup/controllers/deploy/gui.py:33
2017-08-23 18:38:01,652 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Received ModelConnected at conjureup/controllers/deploy/gui.py:33
2017-08-23 18:38:01,665 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting DeploymentComplete at conjureup/controllers/deploy/common.py:59 in task _wait_for_applications at conjureup/controllers/deploy/gui.py:88
2017-08-23 18:38:01,726 [DEBUG] conjure-up/openstack-novalxd - step.py:109 - Executing script: /home/jbrazier/.cache/conjure-up/openstack-novalxd/steps/00_pre-deploy
2017-08-23 18:38:01,929 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting PreDeployComplete at conjureup/controllers/deploy/common.py:55 in task do_deploy at conjureup/controllers/deploy/common.py:17
2017-08-23 18:38:01,931 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:0 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,934 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:1 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,936 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:10 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,939 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:11 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,941 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:12 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,944 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:13 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,947 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:14 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,949 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:15 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,951 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:2 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,953 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:3 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,956 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:4 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,958 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:5 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,961 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:6 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,963 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:7 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,965 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:8 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,968 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachinePending:9 at conjureup/juju.py:561 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:01,968 [INFO] conjure-up/openstack-novalxd - juju.py:578 - Adding machines: 0: (xenial, ), 1: (xenial, ), 10: (xenial, ), 11: (xenial, ), 12: (xenial, ), 13: (xenial, ), 14: (xenial, ), 15: (xenial, ), 2: (xenial, ), 3: (xenial, ), 4: (xenial, ), 5: (xenial, ), 6: (xenial, ), 7: (xenial, ), 8: (xenial, ), 9: (xenial, )
2017-08-23 18:38:08,078 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:0 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,080 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:0 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,082 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:1 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,084 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:1 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,087 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:10 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,089 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:10 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,091 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:11 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,094 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:11 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,096 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:12 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,098 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:12 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,101 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:13 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,103 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:13 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,105 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:14 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,108 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:14 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,110 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:15 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,112 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:15 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,115 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:2 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,117 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:2 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,119 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:3 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,121 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:3 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,124 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:4 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,126 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:4 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,128 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:5 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,130 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:5 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,133 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:6 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,135 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:6 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,137 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:7 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,140 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:7 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,142 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:8 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,144 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:8 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,146 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Clearing MachinePending:9 at conjureup/juju.py:589 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,148 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting MachineCreated:9 at conjureup/juju.py:590 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,149 [INFO] conjure-up/openstack-novalxd - juju.py:598 - Added machines: 0, 1, 10, 11, 12, 13, 14, 15, 2, 3, 4, 5, 6, 7, 8, 9
2017-08-23 18:38:08,149 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application ceph-mon
2017-08-23 18:38:08,151 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:ceph-mon at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,152 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application ceph-osd
2017-08-23 18:38:08,154 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:ceph-osd at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,154 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application ceph-radosgw
2017-08-23 18:38:08,156 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:ceph-radosgw at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,157 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application glance
2017-08-23 18:38:08,159 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:glance at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,159 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application keystone
2017-08-23 18:38:08,161 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:keystone at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,162 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application lxd
2017-08-23 18:38:08,164 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:lxd at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,164 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application mysql
2017-08-23 18:38:08,166 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:mysql at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,167 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application neutron-api
2017-08-23 18:38:08,169 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:neutron-api at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,169 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application neutron-gateway
2017-08-23 18:38:08,171 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:neutron-gateway at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,171 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application neutron-openvswitch
2017-08-23 18:38:08,174 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:neutron-openvswitch at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,174 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application nova-cloud-controller
2017-08-23 18:38:08,176 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:nova-cloud-controller at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,176 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application nova-compute
2017-08-23 18:38:08,178 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:nova-compute at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,178 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application ntp
2017-08-23 18:38:08,181 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:ntp at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,181 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application openstack-dashboard
2017-08-23 18:38:08,183 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:openstack-dashboard at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,183 [INFO] conjure-up/openstack-novalxd - juju.py:603 - Machines available for application rabbitmq-server
2017-08-23 18:38:08,185 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting AppMachinesCreated:rabbitmq-server at conjureup/juju.py:605 in task do_deploy at conjureup/controllers/deploy/common.py:20
2017-08-23 18:38:08,187 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying neutron-openvswitch...
2017-08-23 18:38:08,187 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'neutron-openvswitch',
'config': {},
'constraints': {},
'entity_url': 'cs:neutron-openvswitch-242',
'num_units': 0,
'to': None}
2017-08-23 18:38:08,190 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying ceph-mon...
2017-08-23 18:38:08,196 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'ceph-mon',
'config': {'fsid': '5a791d94-980b-11e4-b6f6-3c970e8b1cf7',
'monitor-secret': 'AQAi5a9UeJXUExAA+By9u+GPhl8/XiUQ4nwI3A=='},
'constraints': {},
'entity_url': 'cs:ceph-mon-11',
'num_units': 3,
'to': None}
2017-08-23 18:38:08,204 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying nova-cloud-controller...
2017-08-23 18:38:08,206 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'nova-cloud-controller',
'config': {'console-access-protocol': 'novnc', 'network-manager': 'Neutron'},
'constraints': {},
'entity_url': 'cs:nova-cloud-controller-299',
'num_units': 1,
'to': None}
2017-08-23 18:38:08,211 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying nova-compute...
2017-08-23 18:38:08,213 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'nova-compute',
'config': {'enable-live-migration': False,
'enable-resize': False,
'virt-type': 'lxd'},
'constraints': {},
'entity_url': 'cs:nova-compute-271',
'num_units': 1,
'to': None}
2017-08-23 18:38:08,220 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying ntp...
2017-08-23 18:38:08,222 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'ntp',
'config': {},
'constraints': {},
'entity_url': 'cs:ntp-18',
'num_units': 0,
'to': None}
2017-08-23 18:38:08,228 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying glance...
2017-08-23 18:38:08,229 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'glance',
'config': {},
'constraints': {},
'entity_url': 'cs:glance-258',
'num_units': 1,
'to': None}
2017-08-23 18:38:08,238 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting RelationsAdded:ntp at conjureup/juju.py:705
2017-08-23 18:38:08,238 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying openstack-dashboard...
2017-08-23 18:38:08,239 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'openstack-dashboard',
'config': {},
'constraints': {},
'entity_url': 'cs:openstack-dashboard-248',
'num_units': 1,
'to': None}
2017-08-23 18:38:08,244 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying ceph-radosgw...
2017-08-23 18:38:08,245 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'ceph-radosgw',
'config': {},
'constraints': {},
'entity_url': 'cs:ceph-radosgw-250',
'num_units': 1,
'to': None}
2017-08-23 18:38:08,250 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying rabbitmq-server...
2017-08-23 18:38:08,252 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'rabbitmq-server',
'config': {},
'constraints': {},
'entity_url': 'cs:rabbitmq-server-64',
'num_units': 1,
'to': None}
2017-08-23 18:38:08,254 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying ceph-osd...
2017-08-23 18:38:08,259 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'ceph-osd',
'config': {'osd-devices': '/srv/osd', 'use-direct-io': False},
'constraints': {},
'entity_url': 'cs:ceph-osd-245',
'num_units': 3,
'to': None}
2017-08-23 18:38:08,262 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying keystone...
2017-08-23 18:38:08,267 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'keystone',
'config': {'admin-password': 'openstack'},
'constraints': {},
'entity_url': 'cs:keystone-267',
'num_units': 1,
'to': None}
2017-08-23 18:38:08,270 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying lxd...
2017-08-23 18:38:08,275 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'lxd',
'config': {'block-devices': 'None'},
'constraints': {},
'entity_url': 'cs:lxd-12',
'num_units': 0,
'to': None}
2017-08-23 18:38:08,282 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying mysql...
2017-08-23 18:38:08,283 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'mysql',
'config': {'innodb-buffer-pool-size': '50%', 'max-connections': 20000},
'constraints': {},
'entity_url': 'cs:percona-cluster-253',
'num_units': 1,
'to': None}
2017-08-23 18:38:08,289 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying neutron-api...
2017-08-23 18:38:08,291 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'neutron-api',
'config': {'neutron-security-groups': True,
'overlay-network-type': 'gre vxlan'},
'constraints': {},
'entity_url': 'cs:neutron-api-251',
'num_units': 1,
'to': None}
2017-08-23 18:38:08,294 [INFO] conjure-up/openstack-novalxd - juju.py:651 - Deploying neutron-gateway...
2017-08-23 18:38:08,297 [DEBUG] conjure-up/openstack-novalxd - juju.py:654 - {'application_name': 'neutron-gateway',
'config': {'ext-port': 'eth1'},
'constraints': {},
'entity_url': 'cs:neutron-gateway-237',
'num_units': 1,
'to': None}
2017-08-23 18:38:08,315 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:rabbitmq-server at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,318 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:neutron-gateway at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,321 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:neutron-openvswitch at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,323 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:neutron-api at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,325 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:nova-cloud-controller at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,328 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:keystone at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,330 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:ceph-osd at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,332 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:ceph-mon at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,334 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:rabbitmq-server at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,336 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,339 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:ceph-mon at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,341 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:ceph-radosgw at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,343 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:keystone at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,345 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:openstack-dashboard at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,347 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,349 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:rabbitmq-server at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,351 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:ceph-mon at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,353 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,356 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:keystone at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,358 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:glance at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,360 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:keystone at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,362 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:mysql at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,364 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:lxd at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,366 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:nova-compute at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,368 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:keystone at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,370 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:mysql at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,372 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:neutron-api at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:08,374 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Awaiting AppDeployed:keystone at /snap/conjure-up/632/usr/lib/python3.6/asyncio/events.py:127 in task wait at conjureup/events.py:92
2017-08-23 18:38:23,858 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting Error at conjureup/events.py:145
2017-08-23 18:38:23,861 [ERROR] conjure-up/openstack-novalxd - events.py:157 - Unhandled exception in <Task finished coro=<do_deploy() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/controllers/deploy/common.py:9> exception=JujuAPIError('cannot retrieve charm "cs:lxd-12": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/lxd-12/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
Traceback (most recent call last):
File "/snap/conjure-up/632/lib/python3.6/site-packages/conjureup/controllers/deploy/common.py", line 43, in do_deploy
await asyncio.gather(*tasks)
File "/snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py", line 656, in deploy_service
app_inst = await app.juju.client.deploy(**deploy_args)
File "/snap/conjure-up/632/lib/python3.6/site-packages/juju/model.py", line 1114, in deploy
await client_facade.AddCharm(channel, entity_id)
File "/snap/conjure-up/632/lib/python3.6/site-packages/juju/client/facade.py", line 392, in wrapper
reply = await f(*args, **kwargs)
File "/snap/conjure-up/632/lib/python3.6/site-packages/juju/client/_client1.py", line 1259, in AddCharm
reply = await self.rpc(msg)
File "/snap/conjure-up/632/lib/python3.6/site-packages/juju/client/facade.py", line 514, in rpc
result = await self.connection.rpc(msg, encoder=TypeEncoder)
File "/snap/conjure-up/632/lib/python3.6/site-packages/juju/client/connection.py", line 267, in rpc
raise JujuAPIError(result)
juju.errors.JujuAPIError: cannot retrieve charm "cs:lxd-12": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/lxd-12/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout
2017-08-23 18:38:23,908 [DEBUG] conjure-up/openstack-novalxd - __init__.py:21 - Showing dialog for exception: cannot retrieve charm "cs:lxd-12": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/lxd-12/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout
2017-08-23 18:58:41,435 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Setting Shutdown at conjureup/events.py:141
2017-08-23 18:58:41,438 [DEBUG] conjure-up/openstack-novalxd - events.py:52 - Received Shutdown at conjureup/events.py:172
2017-08-23 18:58:41,438 [INFO] conjure-up/openstack-novalxd - events.py:176 - Shutting down
2017-08-23 18:58:41,440 [INFO] conjure-up/openstack-novalxd - app_config.py:184 - Storing conjure-up state
2017-08-23 18:58:41,465 [INFO] conjure-up/openstack-novalxd - app_config.py:188 - State saved in model config
2017-08-23 18:58:41,466 [INFO] conjure-up/openstack-novalxd - events.py:186 - Disconnecting model
2017-08-23 18:58:41,471 [INFO] conjure-up/openstack-novalxd - events.py:188 - Disconnected
2017-08-23 18:58:41,472 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e370ca8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,473 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2de54918>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,473 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e2e06a8>()]> cb=[gather.<locals>._done_callback(21)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,474 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e370408>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,474 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<DeployController._wait_for_applications() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/controllers/deploy/gui.py:88> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e37da38>()]>>
2017-08-23 18:58:41,474 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,474 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e1d6438>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,474 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:nova-cloud-controller-299": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/nova-cloud-controller-299/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,475 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2de547c8>()]> cb=[gather.<locals>._done_callback(29)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,475 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e3700a8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,475 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e1d6258>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,475 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,476 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e1d61f8>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,476 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,476 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:ceph-osd-245": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ceph-osd-245/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,476 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e700a08>()]> cb=[gather.<locals>._done_callback(19)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,476 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e1390a8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,477 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:neutron-gateway-237": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/neutron-gateway-237/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,477 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e1394f8>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,477 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e370918>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,477 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<WebSocketCommonProtocol.run() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/websockets/protocol.py:428> result=None>
2017-08-23 18:58:41,478 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e1390d8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,478 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:rabbitmq-server-64": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/rabbitmq-server-64/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,478 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,478 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2de6dcd8>()]> cb=[gather.<locals>._done_callback(15)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,478 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:ceph-radosgw-250": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ceph-radosgw-250/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,479 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:neutron-api-251": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/neutron-api-251/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,479 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e2ff618>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,479 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:openstack-dashboard-248": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/openstack-dashboard-248/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,479 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e370ac8>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,479 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e0aaac8>()]> cb=[gather.<locals>._done_callback(27)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,480 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:percona-cluster-253": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/percona-cluster-253/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,480 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e139ee8>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,480 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<set_relations() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:671> result=None>
2017-08-23 18:58:41,480 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2de6d828>()]> cb=[gather.<locals>._done_callback(13)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,481 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,481 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e1399a8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,481 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e1d65e8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,481 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e139ac8>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,481 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:glance-258": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/glance-258/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,482 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:neutron-openvswitch-242": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/neutron-openvswitch-242/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,482 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2de6d3d8>()]> cb=[gather.<locals>._done_callback(11)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,482 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e37d318>()]> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,482 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:ceph-mon-11": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ceph-mon-11/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,482 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:ntp-18": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/ntp-18/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,483 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:lxd-12": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/lxd-12/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,483 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e12c7c8>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,483 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e2ff4f8>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,483 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e0aa228>()]> cb=[gather.<locals>._done_callback(5)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,484 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2de54ee8>()]> cb=[gather.<locals>._done_callback(9)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,484 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e2e8798>()]> cb=[gather.<locals>._done_callback(17)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,484 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:keystone-267": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/keystone-267/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
2017-08-23 18:58:41,484 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,484 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e2e0708>()]> cb=[gather.<locals>._done_callback(3)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,485 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e139918>()]> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,485 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(0)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,485 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2e2e0798>()]> cb=[gather.<locals>._done_callback(23)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,485 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<NamedEvent.wait() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/events.py:92> wait_for=<Future cancelled> cb=[gather.<locals>._done_callback(1)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,486 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task pending coro=<set_relations() running at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:686> wait_for=<_GatheringFuture pending cb=[<TaskWakeupMethWrapper object at 0x7f8e2de54948>()]> cb=[gather.<locals>._done_callback(7)() at /snap/conjure-up/632/usr/lib/python3.6/asyncio/tasks.py:609]>
2017-08-23 18:58:41,486 [DEBUG] conjure-up/openstack-novalxd - events.py:198 - Cancelling pending task: <Task finished coro=<deploy_service() done, defined at /snap/conjure-up/632/lib/python3.6/site-packages/conjureup/juju.py:609> exception=JujuAPIError('cannot retrieve charm "cs:nova-compute-271": cannot get archive: Get https://api.jujucharms.com/charmstore/v5/nova-compute-271/archive: dial tcp: lookup api.jujucharms.com on 10.159.211.1:53: read udp 10.159.211.197:53743->10.159.211.1:53: i/o timeout',)>
|