Ubuntu Pastebin

Paste from jenkins at Wed, 7 Oct 2015 18:24:19 +0000

Download as text
   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
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
INFO:root:Workspace dir: /var/lib/jenkins/workspace/charm_amulet_test
INFO:root:Reading file: Makefile
INFO:root:Searching for: ['@juju test', '.venv/bin/bundletester']
INFO:root:command:  make -f Makefile test
Starting Amulet tests...
# coreycb note: The -v should only be temporary until Amulet sends
# raise_status() messages to stderr:
#   https://bugs.launchpad.net/amulet/+bug/1320357
juju-test INFO    : Starting test run on osci-sv17 using Juju 1.24.6
juju-test DEBUG   : Loading configuration options from testplan YAML
juju-test DEBUG   : Creating a new Conductor
juju-test.conductor DEBUG   : Starting a bootstrap for osci-sv17, kill after 300
juju-test.conductor DEBUG   : Running the following: juju bootstrap -e osci-sv17
Bootstrapping environment "osci-sv17"
Starting new instance for initial state server
Launching instance
 - f2e48018-8637-4a3a-9c59-a3b41432f48b
Installing Juju agent on bootstrap instance
Waiting for address
Attempting to connect to 172.17.117.153:22
Logging to /var/log/cloud-init-output.log on remote host
Running apt-get update
Running apt-get upgrade
Installing package: curl
Installing package: cpu-checker
Installing package: bridge-utils
Installing package: rsyslog-gnutls
Installing package: cloud-utils
Installing package: cloud-image-utils
Installing package: tmux
Fetching tools: curl -sSfw 'tools from %{url_effective} downloaded: HTTP %{http_code}; time %{time_total}s; size %{size_download} bytes; speed %{speed_download} bytes/s ' --retry 10 -o $bin/tools.tar.gz <[https://streams.canonical.com/juju/tools/releases/juju-1.24.6-trusty-amd64.tgz]>
Bootstrapping Juju machine agent
Starting Juju machine agent (jujud-machine-0)
Bootstrap agent installed
Waiting for API to become available
Waiting for API to become available
Waiting for API to become available
Bootstrap complete
juju-test.conductor DEBUG   : Waiting for bootstrap
juju-test.conductor DEBUG   : Still not bootstrapped
juju-test.conductor DEBUG   : Running the following: juju status -e osci-sv17
juju-test.conductor DEBUG   : State for 1.24.6: started
juju-test.conductor.00-setup DEBUG   : Running 00-setup (tests/00-setup)
+ sudo add-apt-repository --yes ppa:juju/stable
gpg: keyring `/tmp/tmpy7cmitav/secring.gpg' created
gpg: keyring `/tmp/tmpy7cmitav/pubring.gpg' created
gpg: requesting key C8068B11 from hkp server keyserver.ubuntu.com
gpg: /tmp/tmpy7cmitav/trustdb.gpg: trustdb created
gpg: key C8068B11: public key "Launchpad Ensemble PPA" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
+ sudo apt-get update --yes
+ sudo apt-get install --yes python-amulet python-distro-info python-glanceclient python-keystoneclient python-novaclient
juju-test.conductor.00-setup DEBUG   : OK
Ign http://nova.clouds.archive.ubuntu.com trusty InRelease
Hit http://nova.clouds.archive.ubuntu.com trusty-updates InRelease
Hit http://nova.clouds.archive.ubuntu.com trusty Release.gpg
Hit http://nova.clouds.archive.ubuntu.com trusty Release
Hit http://nova.clouds.archive.ubuntu.com trusty-updates/main Sources
Hit http://nova.clouds.archive.ubuntu.com trusty-updates/universe Sources
Hit http://nova.clouds.archive.ubuntu.com trusty-updates/main amd64 Packages
Hit http://nova.clouds.archive.ubuntu.com trusty-updates/universe amd64 Packages
Hit http://nova.clouds.archive.ubuntu.com trusty-updates/main Translation-en
Hit http://nova.clouds.archive.ubuntu.com trusty-updates/universe Translation-en
Hit http://nova.clouds.archive.ubuntu.com trusty/main Sources
Hit http://nova.clouds.archive.ubuntu.com trusty/universe Sources
Hit http://nova.clouds.archive.ubuntu.com trusty/main amd64 Packages
Hit http://nova.clouds.archive.ubuntu.com trusty/universe amd64 Packages
Hit http://nova.clouds.archive.ubuntu.com trusty/main Translation-en
Hit http://nova.clouds.archive.ubuntu.com trusty/universe Translation-en
Hit http://security.ubuntu.com trusty-security InRelease
Hit http://ppa.launchpad.net trusty InRelease
Hit http://ppa.launchpad.net trusty InRelease
Get:1 http://security.ubuntu.com trusty-security/main Sources [96.9 kB]
Hit http://ppa.launchpad.net trusty/main amd64 Packages
Hit http://ppa.launchpad.net trusty/main Translation-en
Get:2 http://security.ubuntu.com trusty-security/universe Sources [31.0 kB]
Hit http://ppa.launchpad.net trusty/main amd64 Packages
Hit http://ppa.launchpad.net trusty/main Translation-en
Get:3 http://security.ubuntu.com trusty-security/main amd64 Packages [350 kB]
Get:4 http://security.ubuntu.com trusty-security/universe amd64 Packages [117 kB]
Hit http://security.ubuntu.com trusty-security/main Translation-en
Hit http://security.ubuntu.com trusty-security/universe Translation-en
Fetched 594 kB in 3s (175 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
python-distro-info is already the newest version.
python-glanceclient is already the newest version.
python-keystoneclient is already the newest version.
python-novaclient is already the newest version.
python-amulet is already the newest version.
The following packages were automatically installed and are no longer required:
  linux-headers-3.13.0-48 linux-headers-3.13.0-48-generic
  linux-image-3.13.0-48-generic
Use 'apt-get autoremove' to remove them.
0 upgraded, 0 newly installed, 0 to remove and 54 not upgraded.

juju-test.conductor.00-setup RESULT  : PASS
juju-test.conductor DEBUG   : Tearing down osci-sv17 juju environment
juju-test.conductor DEBUG   : Calling "juju destroy-environment --force -y osci-sv17"
WARNING cannot delete security group "juju-osci-sv17-0". Used by another environment?
juju-test.conductor DEBUG   : Starting a bootstrap for osci-sv17, kill after 300
juju-test.conductor DEBUG   : Running the following: juju bootstrap -e osci-sv17
Bootstrapping environment "osci-sv17"
Starting new instance for initial state server
Launching instance
 - fca6c50b-29f3-47e2-bd0c-de2080b90af4
Installing Juju agent on bootstrap instance
Waiting for address
Attempting to connect to 172.17.117.154:22
Logging to /var/log/cloud-init-output.log on remote host
Running apt-get update
Running apt-get upgrade
Installing package: curl
Installing package: cpu-checker
Installing package: bridge-utils
Installing package: rsyslog-gnutls
Installing package: cloud-utils
Installing package: cloud-image-utils
Installing package: tmux
Fetching tools: curl -sSfw 'tools from %{url_effective} downloaded: HTTP %{http_code}; time %{time_total}s; size %{size_download} bytes; speed %{speed_download} bytes/s ' --retry 10 -o $bin/tools.tar.gz <[https://streams.canonical.com/juju/tools/releases/juju-1.24.6-trusty-amd64.tgz]>
Bootstrapping Juju machine agent
Starting Juju machine agent (jujud-machine-0)
Bootstrap agent installed
Waiting for API to become available
Waiting for API to become available
Waiting for API to become available
Bootstrap complete
juju-test.conductor DEBUG   : Waiting for bootstrap
juju-test.conductor DEBUG   : Still not bootstrapped
juju-test.conductor DEBUG   : Running the following: juju status -e osci-sv17
juju-test.conductor DEBUG   : State for 1.24.6: started
juju-test.conductor.010-basic-precise-essex DEBUG   : Running 010-basic-precise-essex (tests/010-basic-precise-essex)
2015-10-07 16:19:49 Starting deployment of osci-sv17
2015-10-07 16:20:29 Deploying services...
2015-10-07 16:20:29  Deploying service glance using local:precise/glance
2015-10-07 16:20:34  Deploying service keystone using local:precise/keystone
2015-10-07 16:20:39  Deploying service mysql using local:precise/mysql
2015-10-07 16:20:45  Deploying service nova-cloud-controller using /tmp/charmisOyQ0/precise/nova-cloud-controller
2015-10-07 16:20:50  Deploying service nova-compute using local:precise/nova-compute
2015-10-07 16:20:57  Deploying service rabbitmq-server using local:precise/rabbitmq-server
2015-10-07 16:23:34 Adding relations...
2015-10-07 16:23:34  Adding relation nova-cloud-controller:image-service <-> glance:image-service
2015-10-07 16:23:34  Adding relation glance:shared-db <-> mysql:shared-db
2015-10-07 16:23:35  Adding relation nova-cloud-controller:identity-service <-> keystone:identity-service
2015-10-07 16:23:35  Adding relation nova-compute:amqp <-> rabbitmq-server:amqp
2015-10-07 16:23:35  Adding relation nova-cloud-controller:shared-db <-> mysql:shared-db
2015-10-07 16:23:36  Adding relation nova-cloud-controller:cloud-compute <-> nova-compute:cloud-compute
2015-10-07 16:23:36  Adding relation glance:identity-service <-> keystone:identity-service
2015-10-07 16:23:36  Adding relation nova-compute:shared-db <-> mysql:shared-db
2015-10-07 16:23:37  Adding relation glance:amqp <-> rabbitmq-server:amqp
2015-10-07 16:23:37  Adding relation keystone:shared-db <-> mysql:shared-db
2015-10-07 16:23:37  Adding relation nova-cloud-controller:amqp <-> rabbitmq-server:amqp
2015-10-07 16:23:38  Adding relation nova-compute:image-service <-> glance:image-service
2015-10-07 16:24:38 Deployment complete in 289.83 seconds
juju-test.conductor.010-basic-precise-essex DEBUG   : 2015-10-07 16:26:24,364 authenticate_keystone_admin DEBUG: Authenticating keystone admin...
2015-10-07 16:26:31,598 authenticate_glance_admin DEBUG: Authenticating glance admin...
2015-10-07 16:26:31,600 tenant_exists DEBUG: Checking if tenant exists (demoTenant)...
2015-10-07 16:26:31,798 authenticate_keystone_user DEBUG: Authenticating keystone user (demoUser)...
2015-10-07 16:26:31,940 authenticate_nova_user DEBUG: Authenticating nova user (demoUser)...
2015-10-07 16:26:31,941 validate_config_data DEBUG: Validating config file data (filter:ratelimit in /etc/nova/api-paste.ini on nova-cloud-controller/0)...
2015-10-07 16:26:33,108 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 16:26:33,109 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.156:35357/v2.0', u'region': u'RegionOne', u'id': u'6a096bd99ea74bbfabec36f1bed74bad', u'service_id': u'279bad69116843b0aa2897ab90b97bb9', u'internalurl': u'http://172.17.117.156:5000/v2.0', u'publicurl': u'http://172.17.117.156:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'region': u'RegionOne', u'id': u'b2289e454a3542e2a71b25a06e3aa175', u'service_id': u'e81fff16acf04c3eaa78089148aab403', u'internalurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'publicurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.158:3333', u'region': u'RegionOne', u'id': u'ba109bec59b9401cb7a20d9172815fa3', u'service_id': u'780d043175d740d1856641d5a21fc231', u'internalurl': u'http://172.17.117.158:3333', u'publicurl': u'http://172.17.117.158:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.155:9292', u'region': u'RegionOne', u'id': u'c2024fc37a1c4994ac573c63f2bc9366', u'service_id': u'ac146edd06754a2596036299f258a8f5', u'internalurl': u'http://172.17.117.155:9292', u'publicurl': u'http://172.17.117.155:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.158:8773/services/Cloud', u'region': u'RegionOne', u'id': u'd862e5f238c94e05b151fd6e5a5313ba', u'service_id': u'f3cfb149653f419dacf55263772bc122', u'internalurl': u'http://172.17.117.158:8773/services/Cloud', u'publicurl': u'http://172.17.117.158:8773/services/Cloud'}>]
2015-10-07 16:26:33,109 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.156:35357/v2.0', u'region': u'RegionOne', u'id': u'6a096bd99ea74bbfabec36f1bed74bad', u'service_id': u'279bad69116843b0aa2897ab90b97bb9', u'internalurl': u'http://172.17.117.156:5000/v2.0', u'publicurl': u'http://172.17.117.156:5000/v2.0'}>
2015-10-07 16:26:33,109 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'region': u'RegionOne', u'id': u'b2289e454a3542e2a71b25a06e3aa175', u'service_id': u'e81fff16acf04c3eaa78089148aab403', u'internalurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'publicurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s'}>
2015-10-07 16:26:33,109 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.158:3333', u'region': u'RegionOne', u'id': u'ba109bec59b9401cb7a20d9172815fa3', u'service_id': u'780d043175d740d1856641d5a21fc231', u'internalurl': u'http://172.17.117.158:3333', u'publicurl': u'http://172.17.117.158:3333'}>
2015-10-07 16:26:33,109 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.155:9292', u'region': u'RegionOne', u'id': u'c2024fc37a1c4994ac573c63f2bc9366', u'service_id': u'ac146edd06754a2596036299f258a8f5', u'internalurl': u'http://172.17.117.155:9292', u'publicurl': u'http://172.17.117.155:9292'}>
2015-10-07 16:26:33,109 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.158:8773/services/Cloud', u'region': u'RegionOne', u'id': u'd862e5f238c94e05b151fd6e5a5313ba', u'service_id': u'f3cfb149653f419dacf55263772bc122', u'internalurl': u'http://172.17.117.158:8773/services/Cloud', u'publicurl': u'http://172.17.117.158:8773/services/Cloud'}>
2015-10-07 16:26:33,110 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.158:8773/services/Cloud', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.158:8773/services/Cloud', 'service_id': u'f3cfb149653f419dacf55263772bc122', 'id': u'd862e5f238c94e05b151fd6e5a5313ba', 'publicurl': u'http://172.17.117.158:8773/services/Cloud'}
2015-10-07 16:26:33,110 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:26:39,371 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.155', u'glance-api-server': u'http://172.17.117.155:9292'}
2015-10-07 16:26:39,371 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'glance-api-server': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:26:39,372 test_image_instance_create ERROR: Skipping failing test until resolved
2015-10-07 16:26:45,629 _validate_dict_data DEBUG: actual: {u'service_protocol': u'http', u'service_tenant': u'services', u'admin_token': u'ubuntutesting', u'service_password': u'JygX6VkHX3596pMWcm42JpkHyxp8yw8tRXtPsGRdSCfPMwmVfhFpxbBZ6CFzrCYR', u'service_port': u'5000', u'auth_port': u'35357', u'auth_protocol': u'http', u'private-address': u'172.17.117.156', u'auth_host': u'172.17.117.156', u'service_username': u's3_ec2_nova', u'service_tenant_id': u'd054d86af0ec4463a217fe9841cc517a', u'service_host': u'172.17.117.156'}
2015-10-07 16:26:45,630 _validate_dict_data DEBUG: expected: {'admin_token': 'ubuntutesting', 'auth_port': '35357', 'auth_protocol': 'http', 'auth_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'service_username': 's3_ec2_nova', 'service_tenant_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'service_protocol': 'http', 'service_tenant': 'services', 'service_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'service_port': '5000', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'service_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:26:54,438 _validate_dict_data DEBUG: actual: {u'nova_allowed_units': u'nova-cloud-controller/0 nova-compute/0 nova-compute/1', u'nova_password': u'oauYbCsa5mEC6Eno', u'db_host': u'172.17.117.157', u'private-address': u'172.17.117.157'}
2015-10-07 16:26:54,439 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'nova_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'db_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:00,775 _validate_dict_data DEBUG: actual: {u'username': u'nova', u'private-address': u'172.17.117.158', u'vhost': u'openstack'}
2015-10-07 16:27:00,776 _validate_dict_data DEBUG: expected: {'username': 'nova', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'vhost': 'openstack'}
2015-10-07 16:27:06,209 _validate_dict_data DEBUG: actual: {u'volume_service': u'nova-volume', u'network_manager': u'flatdhcpmanager', u'restart_trigger': u'3b84d88c-b2a5-4d69-a191-289f361eec46', u'ec2_host': u'172.17.117.158', u'private-address': u'172.17.117.158'}
2015-10-07 16:27:06,209 _validate_dict_data DEBUG: expected: {'volume_service': 'nova-volume', 'network_manager': 'flatdhcpmanager', 'restart_trigger': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'ec2_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:12,200 _validate_dict_data DEBUG: actual: {u'nova_internal_url': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u's3_service': u's3', u'nova_public_url': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'nova_service': u'nova', u's3_public_url': u'http://172.17.117.158:3333', u'ec2_admin_url': u'http://172.17.117.158:8773/services/Cloud', u'ec2_internal_url': u'http://172.17.117.158:8773/services/Cloud', u'ec2_public_url': u'http://172.17.117.158:8773/services/Cloud', u's3_region': u'RegionOne', u'private-address': u'172.17.117.158', u'nova_region': u'RegionOne', u'ec2_service': u'ec2', u's3_internal_url': u'http://172.17.117.158:3333', u's3_admin_url': u'http://172.17.117.158:3333', u'nova_admin_url': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'ec2_region': u'RegionOne'}
2015-10-07 16:27:12,200 _validate_dict_data DEBUG: expected: {'nova_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'nova_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 's3_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 's3_service': 's3', 'ec2_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'ec2_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'nova_service': 'nova', 's3_region': 'RegionOne', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'nova_region': 'RegionOne', 'ec2_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'ec2_service': 'ec2', 'ec2_region': 'RegionOne', 's3_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'nova_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 's3_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:18,534 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.158'}
2015-10-07 16:27:18,535 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:23,871 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.158', u'nova_hostname': u'172.17.117.158', u'nova_username': u'nova', u'nova_database': u'nova'}
2015-10-07 16:27:23,872 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'nova_hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'nova_username': 'nova', 'nova_database': 'nova'}
2015-10-07 16:27:29,222 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.159'}
2015-10-07 16:27:29,222 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:29,266 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 16:27:29,266 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.156:35357/v2.0', u'region': u'RegionOne', u'id': u'6a096bd99ea74bbfabec36f1bed74bad', u'service_id': u'279bad69116843b0aa2897ab90b97bb9', u'internalurl': u'http://172.17.117.156:5000/v2.0', u'publicurl': u'http://172.17.117.156:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'region': u'RegionOne', u'id': u'b2289e454a3542e2a71b25a06e3aa175', u'service_id': u'e81fff16acf04c3eaa78089148aab403', u'internalurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'publicurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.158:3333', u'region': u'RegionOne', u'id': u'ba109bec59b9401cb7a20d9172815fa3', u'service_id': u'780d043175d740d1856641d5a21fc231', u'internalurl': u'http://172.17.117.158:3333', u'publicurl': u'http://172.17.117.158:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.155:9292', u'region': u'RegionOne', u'id': u'c2024fc37a1c4994ac573c63f2bc9366', u'service_id': u'ac146edd06754a2596036299f258a8f5', u'internalurl': u'http://172.17.117.155:9292', u'publicurl': u'http://172.17.117.155:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.158:8773/services/Cloud', u'region': u'RegionOne', u'id': u'd862e5f238c94e05b151fd6e5a5313ba', u'service_id': u'f3cfb149653f419dacf55263772bc122', u'internalurl': u'http://172.17.117.158:8773/services/Cloud', u'publicurl': u'http://172.17.117.158:8773/services/Cloud'}>]
2015-10-07 16:27:29,266 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.156:35357/v2.0', u'region': u'RegionOne', u'id': u'6a096bd99ea74bbfabec36f1bed74bad', u'service_id': u'279bad69116843b0aa2897ab90b97bb9', u'internalurl': u'http://172.17.117.156:5000/v2.0', u'publicurl': u'http://172.17.117.156:5000/v2.0'}>
2015-10-07 16:27:29,267 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'region': u'RegionOne', u'id': u'b2289e454a3542e2a71b25a06e3aa175', u'service_id': u'e81fff16acf04c3eaa78089148aab403', u'internalurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'publicurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s'}>
2015-10-07 16:27:29,267 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', 'service_id': u'e81fff16acf04c3eaa78089148aab403', 'id': u'b2289e454a3542e2a71b25a06e3aa175', 'publicurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s'}
2015-10-07 16:27:29,267 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:29,267 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.158:3333', u'region': u'RegionOne', u'id': u'ba109bec59b9401cb7a20d9172815fa3', u'service_id': u'780d043175d740d1856641d5a21fc231', u'internalurl': u'http://172.17.117.158:3333', u'publicurl': u'http://172.17.117.158:3333'}>
2015-10-07 16:27:29,267 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.155:9292', u'region': u'RegionOne', u'id': u'c2024fc37a1c4994ac573c63f2bc9366', u'service_id': u'ac146edd06754a2596036299f258a8f5', u'internalurl': u'http://172.17.117.155:9292', u'publicurl': u'http://172.17.117.155:9292'}>
2015-10-07 16:27:29,267 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.158:8773/services/Cloud', u'region': u'RegionOne', u'id': u'd862e5f238c94e05b151fd6e5a5313ba', u'service_id': u'f3cfb149653f419dacf55263772bc122', u'internalurl': u'http://172.17.117.158:8773/services/Cloud', u'publicurl': u'http://172.17.117.158:8773/services/Cloud'}>
2015-10-07 16:27:37,049 _validate_dict_data DEBUG: actual: {u'ha_queues': u'True', u'password': u'ysw23wz7wz8V9S4jBZ3rHTVmGxdk9mVWsT5JSPF6gBZys9ZMgrGqs6PnqXzPTdx3', u'hostname': u'172.17.117.161', u'private-address': u'172.17.117.161'}
2015-10-07 16:27:37,049 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:37,086 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 16:27:37,086 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.156:35357/v2.0', u'region': u'RegionOne', u'id': u'6a096bd99ea74bbfabec36f1bed74bad', u'service_id': u'279bad69116843b0aa2897ab90b97bb9', u'internalurl': u'http://172.17.117.156:5000/v2.0', u'publicurl': u'http://172.17.117.156:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'region': u'RegionOne', u'id': u'b2289e454a3542e2a71b25a06e3aa175', u'service_id': u'e81fff16acf04c3eaa78089148aab403', u'internalurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'publicurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.158:3333', u'region': u'RegionOne', u'id': u'ba109bec59b9401cb7a20d9172815fa3', u'service_id': u'780d043175d740d1856641d5a21fc231', u'internalurl': u'http://172.17.117.158:3333', u'publicurl': u'http://172.17.117.158:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.155:9292', u'region': u'RegionOne', u'id': u'c2024fc37a1c4994ac573c63f2bc9366', u'service_id': u'ac146edd06754a2596036299f258a8f5', u'internalurl': u'http://172.17.117.155:9292', u'publicurl': u'http://172.17.117.155:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.158:8773/services/Cloud', u'region': u'RegionOne', u'id': u'd862e5f238c94e05b151fd6e5a5313ba', u'service_id': u'f3cfb149653f419dacf55263772bc122', u'internalurl': u'http://172.17.117.158:8773/services/Cloud', u'publicurl': u'http://172.17.117.158:8773/services/Cloud'}>]
2015-10-07 16:27:37,087 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.156:35357/v2.0', u'region': u'RegionOne', u'id': u'6a096bd99ea74bbfabec36f1bed74bad', u'service_id': u'279bad69116843b0aa2897ab90b97bb9', u'internalurl': u'http://172.17.117.156:5000/v2.0', u'publicurl': u'http://172.17.117.156:5000/v2.0'}>
2015-10-07 16:27:37,087 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'region': u'RegionOne', u'id': u'b2289e454a3542e2a71b25a06e3aa175', u'service_id': u'e81fff16acf04c3eaa78089148aab403', u'internalurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s', u'publicurl': u'http://172.17.117.158:8774/v1.1/$(tenant_id)s'}>
2015-10-07 16:27:37,087 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.158:3333', u'region': u'RegionOne', u'id': u'ba109bec59b9401cb7a20d9172815fa3', u'service_id': u'780d043175d740d1856641d5a21fc231', u'internalurl': u'http://172.17.117.158:3333', u'publicurl': u'http://172.17.117.158:3333'}>
2015-10-07 16:27:37,087 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.158:3333', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.158:3333', 'service_id': u'780d043175d740d1856641d5a21fc231', 'id': u'ba109bec59b9401cb7a20d9172815fa3', 'publicurl': u'http://172.17.117.158:3333'}
2015-10-07 16:27:37,087 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:37,088 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.155:9292', u'region': u'RegionOne', u'id': u'c2024fc37a1c4994ac573c63f2bc9366', u'service_id': u'ac146edd06754a2596036299f258a8f5', u'internalurl': u'http://172.17.117.155:9292', u'publicurl': u'http://172.17.117.155:9292'}>
2015-10-07 16:27:37,088 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.158:8773/services/Cloud', u'region': u'RegionOne', u'id': u'd862e5f238c94e05b151fd6e5a5313ba', u'service_id': u'f3cfb149653f419dacf55263772bc122', u'internalurl': u'http://172.17.117.158:8773/services/Cloud', u'publicurl': u'http://172.17.117.158:8773/services/Cloud'}>
2015-10-07 16:27:37,088 validate_svc_catalog_endpoint_data DEBUG: Validating service catalog endpoint data...
2015-10-07 16:27:37,088 validate_svc_catalog_endpoint_data DEBUG: actual: {u's3': [{u'adminURL': u'http://172.17.117.158:3333', u'region': u'RegionOne', u'internalURL': u'http://172.17.117.158:3333', u'publicURL': u'http://172.17.117.158:3333'}], u'image': [{u'adminURL': u'http://172.17.117.155:9292', u'region': u'RegionOne', u'internalURL': u'http://172.17.117.155:9292', u'publicURL': u'http://172.17.117.155:9292'}], u'compute': [{u'adminURL': u'http://172.17.117.158:8774/v1.1/ce17764f096840989ec94f51abd06bfb', u'region': u'RegionOne', u'internalURL': u'http://172.17.117.158:8774/v1.1/ce17764f096840989ec94f51abd06bfb', u'publicURL': u'http://172.17.117.158:8774/v1.1/ce17764f096840989ec94f51abd06bfb'}], u'ec2': [{u'adminURL': u'http://172.17.117.158:8773/services/Cloud', u'region': u'RegionOne', u'internalURL': u'http://172.17.117.158:8773/services/Cloud', u'publicURL': u'http://172.17.117.158:8773/services/Cloud'}], u'identity': [{u'adminURL': u'http://172.17.117.156:35357/v2.0', u'region': u'RegionOne', u'internalURL': u'http://172.17.117.156:5000/v2.0', u'publicURL': u'http://172.17.117.156:5000/v2.0'}]}
2015-10-07 16:27:37,088 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.158:3333', u'region': u'RegionOne', u'internalURL': u'http://172.17.117.158:3333', u'publicURL': u'http://172.17.117.158:3333'}
2015-10-07 16:27:37,089 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'region': 'RegionOne', 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:37,089 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.158:8774/v1.1/ce17764f096840989ec94f51abd06bfb', u'region': u'RegionOne', u'internalURL': u'http://172.17.117.158:8774/v1.1/ce17764f096840989ec94f51abd06bfb', u'publicURL': u'http://172.17.117.158:8774/v1.1/ce17764f096840989ec94f51abd06bfb'}
2015-10-07 16:27:37,089 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'region': 'RegionOne', 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:37,089 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.158:8773/services/Cloud', u'region': u'RegionOne', u'internalURL': u'http://172.17.117.158:8773/services/Cloud', u'publicURL': u'http://172.17.117.158:8773/services/Cloud'}
2015-10-07 16:27:37,089 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'region': 'RegionOne', 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:37,089 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.156:35357/v2.0', u'region': u'RegionOne', u'internalURL': u'http://172.17.117.156:5000/v2.0', u'publicURL': u'http://172.17.117.156:5000/v2.0'}
2015-10-07 16:27:37,090 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'region': 'RegionOne', 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b734ae00fd0>>}
2015-10-07 16:27:37,090 validate_services DEBUG: Checking status of system services...
2015-10-07 16:27:37,090 validate_services WARNING: DEPRECATION WARNING:  use validate_services_by_name instead of validate_services due to init system differences.
2015-10-07 16:27:38,302 validate_services DEBUG: keystone/0 `status keystone` returned 0
2015-10-07 16:27:39,578 validate_services DEBUG: glance/0 `status glance-registry` returned 0
2015-10-07 16:27:40,630 validate_services DEBUG: glance/0 `status glance-api` returned 0
2015-10-07 16:27:41,767 validate_services DEBUG: mysql/0 `status mysql` returned 0
2015-10-07 16:27:42,851 validate_services DEBUG: nova-cloud-controller/0 `status nova-api-ec2` returned 0
2015-10-07 16:27:43,949 validate_services DEBUG: nova-cloud-controller/0 `status nova-api-os-compute` returned 0
2015-10-07 16:27:44,794 validate_services DEBUG: nova-cloud-controller/0 `status nova-objectstore` returned 0
2015-10-07 16:27:46,278 validate_services DEBUG: nova-cloud-controller/0 `status nova-cert` returned 0
2015-10-07 16:27:47,074 validate_services DEBUG: nova-cloud-controller/0 `status nova-scheduler` returned 0
2015-10-07 16:27:48,126 validate_services DEBUG: nova-compute/0 `status nova-compute` returned 0
2015-10-07 16:27:49,303 validate_services DEBUG: nova-compute/0 `status nova-network` returned 0
2015-10-07 16:27:50,377 validate_services DEBUG: nova-compute/0 `status nova-api` returned 0
2015-10-07 16:27:51,676 validate_services DEBUG: rabbitmq-server/0 `sudo service rabbitmq-server status` returned 0
2015-10-07 16:27:51,676 test_z_restart_on_config_change ERROR: Skipping failing test until resolved

juju-test.conductor.010-basic-precise-essex RESULT  : PASS
juju-test.conductor DEBUG   : Tearing down osci-sv17 juju environment
juju-test.conductor DEBUG   : Calling "juju destroy-environment --force -y osci-sv17"
WARNING cannot delete security group "juju-osci-sv17-0". Used by another environment?
WARNING cannot delete security group "juju-osci-sv17-1". Used by another environment?
juju-test.conductor DEBUG   : Starting a bootstrap for osci-sv17, kill after 300
juju-test.conductor DEBUG   : Running the following: juju bootstrap -e osci-sv17
Bootstrapping environment "osci-sv17"
Starting new instance for initial state server
Launching instance
 - 2ba014c8-0e4b-46f5-8a74-da20fb603791
Installing Juju agent on bootstrap instance
Waiting for address
Attempting to connect to 172.17.117.162:22
Logging to /var/log/cloud-init-output.log on remote host
Running apt-get update
Running apt-get upgrade
Installing package: curl
Installing package: cpu-checker
Installing package: bridge-utils
Installing package: rsyslog-gnutls
Installing package: cloud-utils
Installing package: cloud-image-utils
Installing package: tmux
Fetching tools: curl -sSfw 'tools from %{url_effective} downloaded: HTTP %{http_code}; time %{time_total}s; size %{size_download} bytes; speed %{speed_download} bytes/s ' --retry 10 -o $bin/tools.tar.gz <[https://streams.canonical.com/juju/tools/releases/juju-1.24.6-trusty-amd64.tgz]>
Bootstrapping Juju machine agent
Starting Juju machine agent (jujud-machine-0)
Bootstrap agent installed
Waiting for API to become available
Waiting for API to become available
Bootstrap complete
juju-test.conductor DEBUG   : Waiting for bootstrap
juju-test.conductor DEBUG   : Still not bootstrapped
juju-test.conductor DEBUG   : Running the following: juju status -e osci-sv17
juju-test.conductor DEBUG   : State for 1.24.6: started
juju-test.conductor.014-basic-precise-icehouse DEBUG   : Running 014-basic-precise-icehouse (tests/014-basic-precise-icehouse)
2015-10-07 16:31:28 Starting deployment of osci-sv17
2015-10-07 16:31:46 Deploying services...
2015-10-07 16:31:46  Deploying service glance using local:precise/glance
2015-10-07 16:31:52  Deploying service keystone using local:precise/keystone
2015-10-07 16:31:57  Deploying service mysql using local:precise/mysql
2015-10-07 16:32:02  Deploying service nova-cloud-controller using /tmp/charmBwv1ez/precise/nova-cloud-controller
2015-10-07 16:32:10  Deploying service nova-compute using local:precise/nova-compute
2015-10-07 16:32:18  Deploying service rabbitmq-server using local:precise/rabbitmq-server
2015-10-07 16:35:27 Adding relations...
2015-10-07 16:35:27  Adding relation nova-cloud-controller:image-service <-> glance:image-service
2015-10-07 16:35:27  Adding relation glance:shared-db <-> mysql:shared-db
2015-10-07 16:35:28  Adding relation nova-cloud-controller:identity-service <-> keystone:identity-service
2015-10-07 16:35:28  Adding relation nova-compute:amqp <-> rabbitmq-server:amqp
2015-10-07 16:35:28  Adding relation nova-cloud-controller:shared-db <-> mysql:shared-db
2015-10-07 16:35:29  Adding relation nova-cloud-controller:cloud-compute <-> nova-compute:cloud-compute
2015-10-07 16:35:29  Adding relation glance:identity-service <-> keystone:identity-service
2015-10-07 16:35:29  Adding relation nova-compute:shared-db <-> mysql:shared-db
2015-10-07 16:35:30  Adding relation glance:amqp <-> rabbitmq-server:amqp
2015-10-07 16:35:30  Adding relation keystone:shared-db <-> mysql:shared-db
2015-10-07 16:35:30  Adding relation nova-cloud-controller:amqp <-> rabbitmq-server:amqp
2015-10-07 16:35:31  Adding relation nova-compute:image-service <-> glance:image-service
2015-10-07 16:36:31 Deployment complete in 303.62 seconds
juju-test.conductor.014-basic-precise-icehouse DEBUG   : 2015-10-07 16:38:01,039 authenticate_keystone_admin DEBUG: Authenticating keystone admin...
2015-10-07 16:38:07,990 authenticate_glance_admin DEBUG: Authenticating glance admin...
2015-10-07 16:38:07,991 tenant_exists DEBUG: Checking if tenant exists (demoTenant)...
2015-10-07 16:38:08,172 authenticate_keystone_user DEBUG: Authenticating keystone user (demoUser)...
2015-10-07 16:38:08,285 authenticate_nova_user DEBUG: Authenticating nova user (demoUser)...
2015-10-07 16:38:08,286 validate_config_data DEBUG: Validating config file data (filter:ratelimit in /etc/nova/api-paste.ini on nova-cloud-controller/0)...
2015-10-07 16:38:09,140 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 16:38:09,141 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.163:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.163:9292', u'service_id': u'abd114cd6d11441fa509dd71b13e627e', u'id': u'c088fb5b26c9490b994c0b3379d4fb8f', u'publicurl': u'http://172.17.117.163:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.166:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ff031102735c4b999976000076b7c49e', u'service_id': u'61541d3bd4204dcf9f7372f7ae845fa9', u'internalurl': u'http://172.17.117.166:3333', u'publicurl': u'http://172.17.117.166:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.164:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.164:5000/v2.0', u'service_id': u'97e18917b405462c93e0612e2f973b75', u'id': u'1136c49512a345b5a02075bf90ec1e73', u'publicurl': u'http://172.17.117.164:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.166:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.166:8773/services/Cloud', u'service_id': u'558c9166ec0a4ebe96a3e13bff914def', u'id': u'b97d67b7504c42cea57d3585afb66116', u'publicurl': u'http://172.17.117.166:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'0bbdc721c06a44ceab06e45c376558db', u'service_id': u'890766621e2448f294af4db14d33eea0', u'internalurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s'}>]
2015-10-07 16:38:09,141 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.163:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.163:9292', u'service_id': u'abd114cd6d11441fa509dd71b13e627e', u'id': u'c088fb5b26c9490b994c0b3379d4fb8f', u'publicurl': u'http://172.17.117.163:9292'}>
2015-10-07 16:38:09,141 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.166:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ff031102735c4b999976000076b7c49e', u'service_id': u'61541d3bd4204dcf9f7372f7ae845fa9', u'internalurl': u'http://172.17.117.166:3333', u'publicurl': u'http://172.17.117.166:3333'}>
2015-10-07 16:38:09,141 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.164:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.164:5000/v2.0', u'service_id': u'97e18917b405462c93e0612e2f973b75', u'id': u'1136c49512a345b5a02075bf90ec1e73', u'publicurl': u'http://172.17.117.164:5000/v2.0'}>
2015-10-07 16:38:09,141 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.166:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.166:8773/services/Cloud', u'service_id': u'558c9166ec0a4ebe96a3e13bff914def', u'id': u'b97d67b7504c42cea57d3585afb66116', u'publicurl': u'http://172.17.117.166:8773/services/Cloud'}>
2015-10-07 16:38:09,141 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.166:8773/services/Cloud', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.166:8773/services/Cloud', 'service_id': u'558c9166ec0a4ebe96a3e13bff914def', 'id': u'b97d67b7504c42cea57d3585afb66116', 'publicurl': u'http://172.17.117.166:8773/services/Cloud'}
2015-10-07 16:38:09,141 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:38:09,143 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'0bbdc721c06a44ceab06e45c376558db', u'service_id': u'890766621e2448f294af4db14d33eea0', u'internalurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s'}>
2015-10-07 16:38:14,793 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.163', u'glance-api-server': u'http://172.17.117.163:9292'}
2015-10-07 16:38:14,793 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'glance-api-server': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:38:14,794 create_cirros_image DEBUG: Creating glance cirros image (cirros-image)...
2015-10-07 16:38:14,794 create_cirros_image DEBUG: AMULET_HTTP_PROXY: http://squid.internal:3128/
2015-10-07 16:38:35,337 resource_reaches_status DEBUG: Image status wait:  expected, actual status = active, active
2015-10-07 16:38:35,337 create_cirros_image DEBUG: Validating image attributes...
2015-10-07 16:38:35,566 create_cirros_image DEBUG: Image attributes - name:cirros-image public:True id:6afe1ec0-1f67-433c-9519-2a7c12694f9d stat:active container fmt:bare disk fmt:qcow2
2015-10-07 16:38:35,567 create_instance DEBUG: Creating instance (cirros|cirros-image|m1.tiny)
2015-10-07 16:38:41,049 create_instance DEBUG: instance status: BUILD
2015-10-07 16:38:44,161 create_instance DEBUG: instance status: ACTIVE
2015-10-07 16:38:44,246 delete_image WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_image.
2015-10-07 16:38:44,246 delete_image DEBUG: Deleting glance image (<Image {u'status': u'active', u'created_at': u'2015-10-07T16:38:34', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T16:38:34', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'824b7bbe812c45e5accd98c38e8b6293', u'is_public': True, u'deleted_at': None, u'id': u'6afe1ec0-1f67-433c-9519-2a7c12694f9d', u'size': 13287936}>)...
2015-10-07 16:38:44,246 delete_resource DEBUG: Deleting OpenStack resource <Image {u'status': u'active', u'created_at': u'2015-10-07T16:38:34', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T16:38:34', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'824b7bbe812c45e5accd98c38e8b6293', u'is_public': True, u'deleted_at': None, u'id': u'6afe1ec0-1f67-433c-9519-2a7c12694f9d', u'size': 13287936}> (glance image)
2015-10-07 16:38:44,501 delete_resource DEBUG: glance image:  expected, actual count = 0, 0
2015-10-07 16:38:44,501 delete_instance WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_instance.
2015-10-07 16:38:44,501 delete_instance DEBUG: Deleting instance (<Server: cirros>)...
2015-10-07 16:38:44,501 delete_resource DEBUG: Deleting OpenStack resource <Server: cirros> (nova instance)
2015-10-07 16:38:44,837 delete_resource DEBUG: nova instance delete check: 0 [1:1] <Server: cirros>
2015-10-07 16:38:48,881 delete_resource DEBUG: nova instance:  expected, actual count = 0, 0
2015-10-07 16:38:55,448 _validate_dict_data DEBUG: actual: {u'service_protocol': u'http', u'service_tenant': u'services', u'admin_token': u'ubuntutesting', u'service_password': u'Bw7jFfyWy9GNzRNnrSV4MGRGC9s6TqYhb5zHS7SnRPd4w5rzFXJ6RVyqWj9yVWVB', u'service_port': u'5000', u'auth_port': u'35357', u'auth_protocol': u'http', u'private-address': u'172.17.117.164', u'auth_host': u'172.17.117.164', u'service_username': u's3_ec2_nova', u'service_tenant_id': u'6ba1e38c977040f0b22c6cd8a1b95487', u'service_host': u'172.17.117.164'}
2015-10-07 16:38:55,448 _validate_dict_data DEBUG: expected: {'admin_token': 'ubuntutesting', 'auth_port': '35357', 'auth_protocol': 'http', 'auth_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'service_username': 's3_ec2_nova', 'service_tenant_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'service_protocol': 'http', 'service_tenant': 'services', 'service_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'service_port': '5000', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'service_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:39:03,001 _validate_dict_data DEBUG: actual: {u'nova_allowed_units': u'nova-cloud-controller/0 nova-compute/0', u'nova_password': u'FHOp6PriXeuFlIHR', u'db_host': u'172.17.117.165', u'private-address': u'172.17.117.165'}
2015-10-07 16:39:03,002 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'nova_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'db_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:39:09,147 _validate_dict_data DEBUG: actual: {u'username': u'nova', u'private-address': u'172.17.117.166', u'vhost': u'openstack'}
2015-10-07 16:39:09,148 _validate_dict_data DEBUG: expected: {'username': 'nova', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'vhost': 'openstack'}
2015-10-07 16:39:14,355 _validate_dict_data DEBUG: actual: {u'volume_service': u'cinder', u'network_manager': u'flatdhcpmanager', u'restart_trigger': u'b2e6db08-4a53-41f7-b6d3-b878fdf3859a', u'ec2_host': u'172.17.117.166', u'private-address': u'172.17.117.166'}
2015-10-07 16:39:14,356 _validate_dict_data DEBUG: expected: {'volume_service': 'cinder', 'network_manager': 'flatdhcpmanager', 'restart_trigger': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'ec2_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:39:20,048 _validate_dict_data DEBUG: actual: {u'nova_internal_url': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u's3_service': u's3', u'nova_public_url': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'nova_service': u'nova', u's3_public_url': u'http://172.17.117.166:3333', u'ec2_admin_url': u'http://172.17.117.166:8773/services/Cloud', u'ec2_internal_url': u'http://172.17.117.166:8773/services/Cloud', u'ec2_public_url': u'http://172.17.117.166:8773/services/Cloud', u's3_region': u'RegionOne', u'private-address': u'172.17.117.166', u'nova_region': u'RegionOne', u'ec2_service': u'ec2', u's3_internal_url': u'http://172.17.117.166:3333', u's3_admin_url': u'http://172.17.117.166:3333', u'nova_admin_url': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'ec2_region': u'RegionOne'}
2015-10-07 16:39:20,049 _validate_dict_data DEBUG: expected: {'nova_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'nova_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 's3_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 's3_service': 's3', 'ec2_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'ec2_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'nova_service': 'nova', 's3_region': 'RegionOne', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'nova_region': 'RegionOne', 'ec2_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'ec2_service': 'ec2', 'ec2_region': 'RegionOne', 's3_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'nova_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 's3_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:39:26,357 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.166'}
2015-10-07 16:39:26,358 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:39:32,158 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.166', u'nova_hostname': u'172.17.117.166', u'nova_username': u'nova', u'nova_database': u'nova'}
2015-10-07 16:39:32,158 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'nova_hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'nova_username': 'nova', 'nova_database': 'nova'}
2015-10-07 16:39:37,553 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.167'}
2015-10-07 16:39:37,553 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:40:04,509 validate_config_data DEBUG: Validating config file data (DEFAULT in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 16:40:05,340 validate_config_data DEBUG: Validating config file data (keystone_authtoken in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 16:40:06,134 validate_config_data DEBUG: Validating config file data (database in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 16:40:07,173 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 16:40:07,173 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.163:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.163:9292', u'service_id': u'abd114cd6d11441fa509dd71b13e627e', u'id': u'c088fb5b26c9490b994c0b3379d4fb8f', u'publicurl': u'http://172.17.117.163:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.166:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ff031102735c4b999976000076b7c49e', u'service_id': u'61541d3bd4204dcf9f7372f7ae845fa9', u'internalurl': u'http://172.17.117.166:3333', u'publicurl': u'http://172.17.117.166:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.164:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.164:5000/v2.0', u'service_id': u'97e18917b405462c93e0612e2f973b75', u'id': u'1136c49512a345b5a02075bf90ec1e73', u'publicurl': u'http://172.17.117.164:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.166:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.166:8773/services/Cloud', u'service_id': u'558c9166ec0a4ebe96a3e13bff914def', u'id': u'b97d67b7504c42cea57d3585afb66116', u'publicurl': u'http://172.17.117.166:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'0bbdc721c06a44ceab06e45c376558db', u'service_id': u'890766621e2448f294af4db14d33eea0', u'internalurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s'}>]
2015-10-07 16:40:07,173 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.163:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.163:9292', u'service_id': u'abd114cd6d11441fa509dd71b13e627e', u'id': u'c088fb5b26c9490b994c0b3379d4fb8f', u'publicurl': u'http://172.17.117.163:9292'}>
2015-10-07 16:40:07,174 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.166:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ff031102735c4b999976000076b7c49e', u'service_id': u'61541d3bd4204dcf9f7372f7ae845fa9', u'internalurl': u'http://172.17.117.166:3333', u'publicurl': u'http://172.17.117.166:3333'}>
2015-10-07 16:40:07,174 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.164:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.164:5000/v2.0', u'service_id': u'97e18917b405462c93e0612e2f973b75', u'id': u'1136c49512a345b5a02075bf90ec1e73', u'publicurl': u'http://172.17.117.164:5000/v2.0'}>
2015-10-07 16:40:07,174 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.166:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.166:8773/services/Cloud', u'service_id': u'558c9166ec0a4ebe96a3e13bff914def', u'id': u'b97d67b7504c42cea57d3585afb66116', u'publicurl': u'http://172.17.117.166:8773/services/Cloud'}>
2015-10-07 16:40:07,174 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'0bbdc721c06a44ceab06e45c376558db', u'service_id': u'890766621e2448f294af4db14d33eea0', u'internalurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s'}>
2015-10-07 16:40:07,174 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', 'service_id': u'890766621e2448f294af4db14d33eea0', 'id': u'0bbdc721c06a44ceab06e45c376558db', 'publicurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s'}
2015-10-07 16:40:07,174 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:40:14,076 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.169', u'password': u'Mg7bsxKHnG8nLgBqy3mKWpFYLRzc7jXR3cnZj8zd7rWSJBhSJspr28FPwSjMNr8p', u'hostname': u'172.17.117.169'}
2015-10-07 16:40:14,076 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:40:14,108 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 16:40:14,109 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.163:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.163:9292', u'service_id': u'abd114cd6d11441fa509dd71b13e627e', u'id': u'c088fb5b26c9490b994c0b3379d4fb8f', u'publicurl': u'http://172.17.117.163:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.166:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ff031102735c4b999976000076b7c49e', u'service_id': u'61541d3bd4204dcf9f7372f7ae845fa9', u'internalurl': u'http://172.17.117.166:3333', u'publicurl': u'http://172.17.117.166:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.164:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.164:5000/v2.0', u'service_id': u'97e18917b405462c93e0612e2f973b75', u'id': u'1136c49512a345b5a02075bf90ec1e73', u'publicurl': u'http://172.17.117.164:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.166:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.166:8773/services/Cloud', u'service_id': u'558c9166ec0a4ebe96a3e13bff914def', u'id': u'b97d67b7504c42cea57d3585afb66116', u'publicurl': u'http://172.17.117.166:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'0bbdc721c06a44ceab06e45c376558db', u'service_id': u'890766621e2448f294af4db14d33eea0', u'internalurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s'}>]
2015-10-07 16:40:14,109 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.163:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.163:9292', u'service_id': u'abd114cd6d11441fa509dd71b13e627e', u'id': u'c088fb5b26c9490b994c0b3379d4fb8f', u'publicurl': u'http://172.17.117.163:9292'}>
2015-10-07 16:40:14,109 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.166:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ff031102735c4b999976000076b7c49e', u'service_id': u'61541d3bd4204dcf9f7372f7ae845fa9', u'internalurl': u'http://172.17.117.166:3333', u'publicurl': u'http://172.17.117.166:3333'}>
2015-10-07 16:40:14,109 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.166:3333', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.166:3333', 'service_id': u'61541d3bd4204dcf9f7372f7ae845fa9', 'id': u'ff031102735c4b999976000076b7c49e', 'publicurl': u'http://172.17.117.166:3333'}
2015-10-07 16:40:14,110 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:40:14,110 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.164:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.164:5000/v2.0', u'service_id': u'97e18917b405462c93e0612e2f973b75', u'id': u'1136c49512a345b5a02075bf90ec1e73', u'publicurl': u'http://172.17.117.164:5000/v2.0'}>
2015-10-07 16:40:14,110 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.166:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.166:8773/services/Cloud', u'service_id': u'558c9166ec0a4ebe96a3e13bff914def', u'id': u'b97d67b7504c42cea57d3585afb66116', u'publicurl': u'http://172.17.117.166:8773/services/Cloud'}>
2015-10-07 16:40:14,110 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'0bbdc721c06a44ceab06e45c376558db', u'service_id': u'890766621e2448f294af4db14d33eea0', u'internalurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.166:8774/v2/$(tenant_id)s'}>
2015-10-07 16:40:14,111 validate_svc_catalog_endpoint_data DEBUG: Validating service catalog endpoint data...
2015-10-07 16:40:14,111 validate_svc_catalog_endpoint_data DEBUG: actual: {u's3': [{u'adminURL': u'http://172.17.117.166:3333', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.166:3333', u'internalURL': u'http://172.17.117.166:3333', u'id': u'7e7041a2af9947e29fe65e28de793270'}], u'image': [{u'adminURL': u'http://172.17.117.163:9292', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.163:9292', u'internalURL': u'http://172.17.117.163:9292', u'id': u'5708e4883c4443488816e206fee33bee'}], u'compute': [{u'adminURL': u'http://172.17.117.166:8774/v2/4c5dc97499fa4541ab7685ab05eed979', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.166:8774/v2/4c5dc97499fa4541ab7685ab05eed979', u'internalURL': u'http://172.17.117.166:8774/v2/4c5dc97499fa4541ab7685ab05eed979', u'id': u'4fb1488662c84c9f995319531f120ae4'}], u'ec2': [{u'adminURL': u'http://172.17.117.166:8773/services/Cloud', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.166:8773/services/Cloud', u'internalURL': u'http://172.17.117.166:8773/services/Cloud', u'id': u'644174df27ae4c5dba58a490e291b477'}], u'identity': [{u'adminURL': u'http://172.17.117.164:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.164:5000/v2.0', u'internalURL': u'http://172.17.117.164:5000/v2.0', u'id': u'41431c6d295842e5917b330752c50489'}]}
2015-10-07 16:40:14,111 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.166:3333', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.166:3333', u'internalURL': u'http://172.17.117.166:3333', u'id': u'7e7041a2af9947e29fe65e28de793270'}
2015-10-07 16:40:14,111 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:40:14,111 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.166:8774/v2/4c5dc97499fa4541ab7685ab05eed979', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.166:8774/v2/4c5dc97499fa4541ab7685ab05eed979', u'internalURL': u'http://172.17.117.166:8774/v2/4c5dc97499fa4541ab7685ab05eed979', u'id': u'4fb1488662c84c9f995319531f120ae4'}
2015-10-07 16:40:14,112 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:40:14,112 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.166:8773/services/Cloud', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.166:8773/services/Cloud', u'internalURL': u'http://172.17.117.166:8773/services/Cloud', u'id': u'644174df27ae4c5dba58a490e291b477'}
2015-10-07 16:40:14,112 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:40:14,112 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.164:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.164:5000/v2.0', u'internalURL': u'http://172.17.117.164:5000/v2.0', u'id': u'41431c6d295842e5917b330752c50489'}
2015-10-07 16:40:14,112 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b050cb0e550>>}
2015-10-07 16:40:14,113 validate_services DEBUG: Checking status of system services...
2015-10-07 16:40:14,113 validate_services WARNING: DEPRECATION WARNING:  use validate_services_by_name instead of validate_services due to init system differences.
2015-10-07 16:40:15,301 validate_services DEBUG: glance/0 `status glance-registry` returned 0
2015-10-07 16:40:16,068 validate_services DEBUG: glance/0 `status glance-api` returned 0
2015-10-07 16:40:17,152 validate_services DEBUG: mysql/0 `status mysql` returned 0
2015-10-07 16:40:18,173 validate_services DEBUG: nova-cloud-controller/0 `status nova-conductor` returned 0
2015-10-07 16:40:19,570 validate_services DEBUG: rabbitmq-server/0 `sudo service rabbitmq-server status` returned 0
2015-10-07 16:40:20,729 validate_services DEBUG: keystone/0 `status keystone` returned 0
2015-10-07 16:40:21,759 validate_services DEBUG: nova-compute/0 `status nova-compute` returned 0
2015-10-07 16:40:22,805 validate_services DEBUG: nova-compute/0 `status nova-network` returned 0
2015-10-07 16:40:23,976 validate_services DEBUG: nova-compute/0 `status nova-api` returned 0
2015-10-07 16:40:24,629 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:40:44,637 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:40:47,467 _get_proc_start_time DEBUG: Pid for nova-api-ec2 on nova-cloud-controller/0: 22936
2015-10-07 16:40:50,547 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:40:50,548 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:40:51,341 _get_proc_start_time DEBUG: Pid for nova-api-os-compute on nova-cloud-controller/0: 23035
2015-10-07 16:40:53,572 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:40:53,572 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:40:54,415 _get_proc_start_time DEBUG: Pid for nova-objectstore on nova-cloud-controller/0: 22847
2015-10-07 16:40:57,015 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:40:57,015 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:40:57,998 _get_proc_start_time DEBUG: Pid for nova-cert on nova-cloud-controller/0: 22856
2015-10-07 16:41:00,405 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:41:00,405 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:41:01,333 _get_proc_start_time DEBUG: Pid for nova-scheduler on nova-cloud-controller/0: 22865
2015-10-07 16:41:03,854 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:41:03,854 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:41:04,656 _get_proc_start_time DEBUG: Pid for nova-conductor on nova-cloud-controller/0: 22934

juju-test.conductor.014-basic-precise-icehouse RESULT  : PASS
juju-test.conductor DEBUG   : Tearing down osci-sv17 juju environment
juju-test.conductor DEBUG   : Calling "juju destroy-environment --force -y osci-sv17"
WARNING cannot delete security group "juju-osci-sv17-0". Used by another environment?
WARNING cannot delete security group "juju-osci-sv17-1". Used by another environment?
WARNING cannot delete security group "juju-osci-sv17-2". Used by another environment?
WARNING cannot delete security group "juju-osci-sv17-4". Used by another environment?
juju-test.conductor DEBUG   : Starting a bootstrap for osci-sv17, kill after 300
juju-test.conductor DEBUG   : Running the following: juju bootstrap -e osci-sv17
Bootstrapping environment "osci-sv17"
Starting new instance for initial state server
Launching instance
 - e7c883ea-4528-4286-a09d-cdc46dc572f3
Installing Juju agent on bootstrap instance
Waiting for address
Attempting to connect to 172.17.117.170:22
Logging to /var/log/cloud-init-output.log on remote host
Running apt-get update
Running apt-get upgrade
Installing package: curl
Installing package: cpu-checker
Installing package: bridge-utils
Installing package: rsyslog-gnutls
Installing package: cloud-utils
Installing package: cloud-image-utils
Installing package: tmux
Fetching tools: curl -sSfw 'tools from %{url_effective} downloaded: HTTP %{http_code}; time %{time_total}s; size %{size_download} bytes; speed %{speed_download} bytes/s ' --retry 10 -o $bin/tools.tar.gz <[https://streams.canonical.com/juju/tools/releases/juju-1.24.6-trusty-amd64.tgz]>
Bootstrapping Juju machine agent
Starting Juju machine agent (jujud-machine-0)
Bootstrap agent installed
Waiting for API to become available
Waiting for API to become available
Waiting for API to become available
Bootstrap complete
juju-test.conductor DEBUG   : Waiting for bootstrap
juju-test.conductor DEBUG   : Still not bootstrapped
juju-test.conductor DEBUG   : Running the following: juju status -e osci-sv17
juju-test.conductor DEBUG   : State for 1.24.6: started
juju-test.conductor.015-basic-trusty-icehouse DEBUG   : Running 015-basic-trusty-icehouse (tests/015-basic-trusty-icehouse)
2015-10-07 16:44:26 Starting deployment of osci-sv17
2015-10-07 16:44:56 Deploying services...
2015-10-07 16:44:56  Deploying service glance using local:trusty/glance
2015-10-07 16:45:01  Deploying service keystone using local:trusty/keystone
2015-10-07 16:45:06  Deploying service mysql using local:trusty/mysql
2015-10-07 16:45:11  Deploying service nova-cloud-controller using /tmp/charm7oxyOn/trusty/nova-cloud-controller
2015-10-07 16:45:23  Deploying service nova-compute using local:trusty/nova-compute
2015-10-07 16:45:30  Deploying service rabbitmq-server using local:trusty/rabbitmq-server
2015-10-07 16:48:20 Adding relations...
2015-10-07 16:48:20  Adding relation nova-cloud-controller:image-service <-> glance:image-service
2015-10-07 16:48:21  Adding relation glance:shared-db <-> mysql:shared-db
2015-10-07 16:48:21  Adding relation nova-cloud-controller:identity-service <-> keystone:identity-service
2015-10-07 16:48:21  Adding relation nova-compute:amqp <-> rabbitmq-server:amqp
2015-10-07 16:48:22  Adding relation nova-cloud-controller:shared-db <-> mysql:shared-db
2015-10-07 16:48:22  Adding relation nova-cloud-controller:cloud-compute <-> nova-compute:cloud-compute
2015-10-07 16:48:22  Adding relation glance:identity-service <-> keystone:identity-service
2015-10-07 16:48:23  Adding relation nova-compute:shared-db <-> mysql:shared-db
2015-10-07 16:48:23  Adding relation glance:amqp <-> rabbitmq-server:amqp
2015-10-07 16:48:23  Adding relation keystone:shared-db <-> mysql:shared-db
2015-10-07 16:48:23  Adding relation nova-cloud-controller:amqp <-> rabbitmq-server:amqp
2015-10-07 16:48:24  Adding relation nova-compute:image-service <-> glance:image-service
2015-10-07 16:49:24 Deployment complete in 298.67 seconds
juju-test.conductor.015-basic-trusty-icehouse DEBUG   : 2015-10-07 16:50:42,277 authenticate_keystone_admin DEBUG: Authenticating keystone admin...
2015-10-07 16:50:49,694 authenticate_glance_admin DEBUG: Authenticating glance admin...
2015-10-07 16:50:49,696 tenant_exists DEBUG: Checking if tenant exists (demoTenant)...
2015-10-07 16:50:49,902 authenticate_keystone_user DEBUG: Authenticating keystone user (demoUser)...
2015-10-07 16:50:50,013 authenticate_nova_user DEBUG: Authenticating nova user (demoUser)...
2015-10-07 16:50:50,014 validate_config_data DEBUG: Validating config file data (filter:ratelimit in /etc/nova/api-paste.ini on nova-cloud-controller/0)...
2015-10-07 16:50:51,133 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 16:50:51,133 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.174:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'bddb57283f194e9b924ecf289f622efc', u'service_id': u'c9f85c586b2640eb923f45555d22c665', u'internalurl': u'http://172.17.117.174:3333', u'publicurl': u'http://172.17.117.174:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.172:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'0c90ba5ce94c4e22953730837f4395e7', u'service_id': u'9e25c6b736554f9299b7e874f15e288b', u'internalurl': u'http://172.17.117.172:5000/v2.0', u'publicurl': u'http://172.17.117.172:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.171:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.171:9292', u'service_id': u'1bb30c109dd4418094e38983fe7475fd', u'id': u'2ffe5f0a2b324404ad0820b6c93ae57a', u'publicurl': u'http://172.17.117.171:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.174:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'cbe54c1a114344a892a0c0d010ec2c05', u'service_id': u'd473dc1739ef4d76af3893fd26505998', u'internalurl': u'http://172.17.117.174:8773/services/Cloud', u'publicurl': u'http://172.17.117.174:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'79d95e6e5d3444f688c96256ecf78e75', u'service_id': u'166f62a448fd4edc9721975a5c59427c', u'internalurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s'}>]
2015-10-07 16:50:51,133 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.174:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'bddb57283f194e9b924ecf289f622efc', u'service_id': u'c9f85c586b2640eb923f45555d22c665', u'internalurl': u'http://172.17.117.174:3333', u'publicurl': u'http://172.17.117.174:3333'}>
2015-10-07 16:50:51,133 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.172:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'0c90ba5ce94c4e22953730837f4395e7', u'service_id': u'9e25c6b736554f9299b7e874f15e288b', u'internalurl': u'http://172.17.117.172:5000/v2.0', u'publicurl': u'http://172.17.117.172:5000/v2.0'}>
2015-10-07 16:50:51,133 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.171:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.171:9292', u'service_id': u'1bb30c109dd4418094e38983fe7475fd', u'id': u'2ffe5f0a2b324404ad0820b6c93ae57a', u'publicurl': u'http://172.17.117.171:9292'}>
2015-10-07 16:50:51,133 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.174:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'cbe54c1a114344a892a0c0d010ec2c05', u'service_id': u'd473dc1739ef4d76af3893fd26505998', u'internalurl': u'http://172.17.117.174:8773/services/Cloud', u'publicurl': u'http://172.17.117.174:8773/services/Cloud'}>
2015-10-07 16:50:51,134 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.174:8773/services/Cloud', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.174:8773/services/Cloud', 'service_id': u'd473dc1739ef4d76af3893fd26505998', 'id': u'cbe54c1a114344a892a0c0d010ec2c05', 'publicurl': u'http://172.17.117.174:8773/services/Cloud'}
2015-10-07 16:50:51,134 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:50:51,135 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'79d95e6e5d3444f688c96256ecf78e75', u'service_id': u'166f62a448fd4edc9721975a5c59427c', u'internalurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s'}>
2015-10-07 16:50:56,693 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.171', u'glance-api-server': u'http://172.17.117.171:9292'}
2015-10-07 16:50:56,694 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'glance-api-server': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:50:56,694 create_cirros_image DEBUG: Creating glance cirros image (cirros-image)...
2015-10-07 16:50:56,695 create_cirros_image DEBUG: AMULET_HTTP_PROXY: http://squid.internal:3128/
2015-10-07 16:50:58,937 resource_reaches_status DEBUG: Image status wait:  expected, actual status = active, active
2015-10-07 16:50:58,937 create_cirros_image DEBUG: Validating image attributes...
2015-10-07 16:50:59,139 create_cirros_image DEBUG: Image attributes - name:cirros-image public:True id:b24ea32c-60df-40ee-a521-de15f485866f stat:active container fmt:bare disk fmt:qcow2
2015-10-07 16:50:59,140 create_instance DEBUG: Creating instance (cirros|cirros-image|m1.tiny)
2015-10-07 16:51:04,682 create_instance DEBUG: instance status: ACTIVE
2015-10-07 16:51:04,755 delete_image WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_image.
2015-10-07 16:51:04,756 delete_image DEBUG: Deleting glance image (<Image {u'status': u'active', u'created_at': u'2015-10-07T16:50:57', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T16:50:58', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'8b560683f4af427d8fe68902a6c9447e', u'is_public': True, u'deleted_at': None, u'id': u'b24ea32c-60df-40ee-a521-de15f485866f', u'size': 13287936}>)...
2015-10-07 16:51:04,756 delete_resource DEBUG: Deleting OpenStack resource <Image {u'status': u'active', u'created_at': u'2015-10-07T16:50:57', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T16:50:58', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'8b560683f4af427d8fe68902a6c9447e', u'is_public': True, u'deleted_at': None, u'id': u'b24ea32c-60df-40ee-a521-de15f485866f', u'size': 13287936}> (glance image)
2015-10-07 16:51:04,931 delete_resource DEBUG: glance image:  expected, actual count = 0, 0
2015-10-07 16:51:04,932 delete_instance WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_instance.
2015-10-07 16:51:04,932 delete_instance DEBUG: Deleting instance (<Server: cirros>)...
2015-10-07 16:51:04,932 delete_resource DEBUG: Deleting OpenStack resource <Server: cirros> (nova instance)
2015-10-07 16:51:05,460 delete_resource DEBUG: nova instance delete check: 0 [1:1] <Server: cirros>
2015-10-07 16:51:09,498 delete_resource DEBUG: nova instance:  expected, actual count = 0, 0
2015-10-07 16:51:15,745 _validate_dict_data DEBUG: actual: {u'service_protocol': u'http', u'service_tenant': u'services', u'admin_token': u'ubuntutesting', u'service_password': u'7gYmftZ5ptSZNHyyWGw6hRS9hwHCCBMN9XSGhgdNGWkhnZKLsxJWJyftsfw7fWgR', u'service_port': u'5000', u'auth_port': u'35357', u'auth_protocol': u'http', u'private-address': u'172.17.117.172', u'auth_host': u'172.17.117.172', u'service_username': u's3_ec2_nova', u'service_tenant_id': u'17961e9680c84ea490ce8cdcdf5feb7f', u'service_host': u'172.17.117.172'}
2015-10-07 16:51:15,745 _validate_dict_data DEBUG: expected: {'admin_token': 'ubuntutesting', 'auth_port': '35357', 'auth_protocol': 'http', 'auth_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'service_username': 's3_ec2_nova', 'service_tenant_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'service_protocol': 'http', 'service_tenant': 'services', 'service_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'service_port': '5000', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'service_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:51:24,747 _validate_dict_data DEBUG: actual: {u'nova_allowed_units': u'nova-cloud-controller/0', u'nova_password': u'gJtZtTTXmhZ3dw9nnppGNLLVy4nzg2HP', u'db_host': u'172.17.117.173', u'private-address': u'172.17.117.173'}
2015-10-07 16:51:24,747 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'nova_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'db_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:51:31,042 _validate_dict_data DEBUG: actual: {u'username': u'nova', u'private-address': u'172.17.117.174', u'vhost': u'openstack'}
2015-10-07 16:51:31,042 _validate_dict_data DEBUG: expected: {'username': 'nova', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'vhost': 'openstack'}
2015-10-07 16:51:35,893 _validate_dict_data DEBUG: actual: {u'volume_service': u'cinder', u'network_manager': u'flatdhcpmanager', u'restart_trigger': u'ccc127f8-e8b9-4c01-a30a-989008da88ca', u'ec2_host': u'172.17.117.174', u'private-address': u'172.17.117.174'}
2015-10-07 16:51:35,894 _validate_dict_data DEBUG: expected: {'volume_service': 'cinder', 'network_manager': 'flatdhcpmanager', 'restart_trigger': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'ec2_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:51:41,997 _validate_dict_data DEBUG: actual: {u'nova_internal_url': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u's3_service': u's3', u'nova_public_url': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'nova_service': u'nova', u's3_public_url': u'http://172.17.117.174:3333', u'ec2_admin_url': u'http://172.17.117.174:8773/services/Cloud', u'ec2_internal_url': u'http://172.17.117.174:8773/services/Cloud', u'ec2_public_url': u'http://172.17.117.174:8773/services/Cloud', u's3_region': u'RegionOne', u'private-address': u'172.17.117.174', u'nova_region': u'RegionOne', u'ec2_service': u'ec2', u's3_internal_url': u'http://172.17.117.174:3333', u's3_admin_url': u'http://172.17.117.174:3333', u'nova_admin_url': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'ec2_region': u'RegionOne'}
2015-10-07 16:51:41,998 _validate_dict_data DEBUG: expected: {'nova_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'nova_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 's3_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 's3_service': 's3', 'ec2_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'ec2_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'nova_service': 'nova', 's3_region': 'RegionOne', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'nova_region': 'RegionOne', 'ec2_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'ec2_service': 'ec2', 'ec2_region': 'RegionOne', 's3_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'nova_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 's3_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:51:47,863 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.174'}
2015-10-07 16:51:47,863 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:51:52,788 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.174', u'nova_hostname': u'172.17.117.174', u'nova_username': u'nova', u'nova_database': u'nova'}
2015-10-07 16:51:52,788 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'nova_hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'nova_username': 'nova', 'nova_database': 'nova'}
2015-10-07 16:51:57,827 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.175'}
2015-10-07 16:51:57,828 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:52:24,306 validate_config_data DEBUG: Validating config file data (DEFAULT in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 16:52:25,305 validate_config_data DEBUG: Validating config file data (keystone_authtoken in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 16:52:26,108 validate_config_data DEBUG: Validating config file data (database in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 16:52:27,237 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 16:52:27,237 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.174:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'bddb57283f194e9b924ecf289f622efc', u'service_id': u'c9f85c586b2640eb923f45555d22c665', u'internalurl': u'http://172.17.117.174:3333', u'publicurl': u'http://172.17.117.174:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.172:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'0c90ba5ce94c4e22953730837f4395e7', u'service_id': u'9e25c6b736554f9299b7e874f15e288b', u'internalurl': u'http://172.17.117.172:5000/v2.0', u'publicurl': u'http://172.17.117.172:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.171:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.171:9292', u'service_id': u'1bb30c109dd4418094e38983fe7475fd', u'id': u'2ffe5f0a2b324404ad0820b6c93ae57a', u'publicurl': u'http://172.17.117.171:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.174:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'cbe54c1a114344a892a0c0d010ec2c05', u'service_id': u'd473dc1739ef4d76af3893fd26505998', u'internalurl': u'http://172.17.117.174:8773/services/Cloud', u'publicurl': u'http://172.17.117.174:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'79d95e6e5d3444f688c96256ecf78e75', u'service_id': u'166f62a448fd4edc9721975a5c59427c', u'internalurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s'}>]
2015-10-07 16:52:27,237 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.174:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'bddb57283f194e9b924ecf289f622efc', u'service_id': u'c9f85c586b2640eb923f45555d22c665', u'internalurl': u'http://172.17.117.174:3333', u'publicurl': u'http://172.17.117.174:3333'}>
2015-10-07 16:52:27,238 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.172:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'0c90ba5ce94c4e22953730837f4395e7', u'service_id': u'9e25c6b736554f9299b7e874f15e288b', u'internalurl': u'http://172.17.117.172:5000/v2.0', u'publicurl': u'http://172.17.117.172:5000/v2.0'}>
2015-10-07 16:52:27,238 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.171:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.171:9292', u'service_id': u'1bb30c109dd4418094e38983fe7475fd', u'id': u'2ffe5f0a2b324404ad0820b6c93ae57a', u'publicurl': u'http://172.17.117.171:9292'}>
2015-10-07 16:52:27,238 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.174:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'cbe54c1a114344a892a0c0d010ec2c05', u'service_id': u'd473dc1739ef4d76af3893fd26505998', u'internalurl': u'http://172.17.117.174:8773/services/Cloud', u'publicurl': u'http://172.17.117.174:8773/services/Cloud'}>
2015-10-07 16:52:27,238 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'79d95e6e5d3444f688c96256ecf78e75', u'service_id': u'166f62a448fd4edc9721975a5c59427c', u'internalurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s'}>
2015-10-07 16:52:27,238 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', 'service_id': u'166f62a448fd4edc9721975a5c59427c', 'id': u'79d95e6e5d3444f688c96256ecf78e75', 'publicurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s'}
2015-10-07 16:52:27,238 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:52:34,519 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.177', u'password': u'njbYsXFJkq5F7TYLNTTdw2rRKGN5TSgMYnfhtyKPxs6cmwCjr8qj4nVbgzK8YrTx', u'hostname': u'172.17.117.177'}
2015-10-07 16:52:34,519 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:52:34,547 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 16:52:34,547 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.174:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'bddb57283f194e9b924ecf289f622efc', u'service_id': u'c9f85c586b2640eb923f45555d22c665', u'internalurl': u'http://172.17.117.174:3333', u'publicurl': u'http://172.17.117.174:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.172:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'0c90ba5ce94c4e22953730837f4395e7', u'service_id': u'9e25c6b736554f9299b7e874f15e288b', u'internalurl': u'http://172.17.117.172:5000/v2.0', u'publicurl': u'http://172.17.117.172:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.171:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.171:9292', u'service_id': u'1bb30c109dd4418094e38983fe7475fd', u'id': u'2ffe5f0a2b324404ad0820b6c93ae57a', u'publicurl': u'http://172.17.117.171:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.174:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'cbe54c1a114344a892a0c0d010ec2c05', u'service_id': u'd473dc1739ef4d76af3893fd26505998', u'internalurl': u'http://172.17.117.174:8773/services/Cloud', u'publicurl': u'http://172.17.117.174:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'79d95e6e5d3444f688c96256ecf78e75', u'service_id': u'166f62a448fd4edc9721975a5c59427c', u'internalurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s'}>]
2015-10-07 16:52:34,548 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.174:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'bddb57283f194e9b924ecf289f622efc', u'service_id': u'c9f85c586b2640eb923f45555d22c665', u'internalurl': u'http://172.17.117.174:3333', u'publicurl': u'http://172.17.117.174:3333'}>
2015-10-07 16:52:34,548 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.174:3333', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.174:3333', 'service_id': u'c9f85c586b2640eb923f45555d22c665', 'id': u'bddb57283f194e9b924ecf289f622efc', 'publicurl': u'http://172.17.117.174:3333'}
2015-10-07 16:52:34,548 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:52:34,548 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.172:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'0c90ba5ce94c4e22953730837f4395e7', u'service_id': u'9e25c6b736554f9299b7e874f15e288b', u'internalurl': u'http://172.17.117.172:5000/v2.0', u'publicurl': u'http://172.17.117.172:5000/v2.0'}>
2015-10-07 16:52:34,548 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.171:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.171:9292', u'service_id': u'1bb30c109dd4418094e38983fe7475fd', u'id': u'2ffe5f0a2b324404ad0820b6c93ae57a', u'publicurl': u'http://172.17.117.171:9292'}>
2015-10-07 16:52:34,548 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.174:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'cbe54c1a114344a892a0c0d010ec2c05', u'service_id': u'd473dc1739ef4d76af3893fd26505998', u'internalurl': u'http://172.17.117.174:8773/services/Cloud', u'publicurl': u'http://172.17.117.174:8773/services/Cloud'}>
2015-10-07 16:52:34,548 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'79d95e6e5d3444f688c96256ecf78e75', u'service_id': u'166f62a448fd4edc9721975a5c59427c', u'internalurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.174:8774/v2/$(tenant_id)s'}>
2015-10-07 16:52:34,549 validate_svc_catalog_endpoint_data DEBUG: Validating service catalog endpoint data...
2015-10-07 16:52:34,549 validate_svc_catalog_endpoint_data DEBUG: actual: {u's3': [{u'adminURL': u'http://172.17.117.174:3333', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.174:3333', u'internalURL': u'http://172.17.117.174:3333', u'id': u'6f391171083f4f57b52915706d622d9e'}], u'image': [{u'adminURL': u'http://172.17.117.171:9292', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.171:9292', u'internalURL': u'http://172.17.117.171:9292', u'id': u'3e5497d80b4b4955a4c68ce99eabd8d5'}], u'compute': [{u'adminURL': u'http://172.17.117.174:8774/v2/d1fd9a107ca8409383bf4660d418a8a1', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.174:8774/v2/d1fd9a107ca8409383bf4660d418a8a1', u'internalURL': u'http://172.17.117.174:8774/v2/d1fd9a107ca8409383bf4660d418a8a1', u'id': u'6cb122d4ad1a4ba3bb587ab9136ec0ba'}], u'ec2': [{u'adminURL': u'http://172.17.117.174:8773/services/Cloud', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.174:8773/services/Cloud', u'internalURL': u'http://172.17.117.174:8773/services/Cloud', u'id': u'1466e4d5deae4097b22cbf06e614bcb7'}], u'identity': [{u'adminURL': u'http://172.17.117.172:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.172:5000/v2.0', u'internalURL': u'http://172.17.117.172:5000/v2.0', u'id': u'1ad2de9818774ac98d6b15f6668348dd'}]}
2015-10-07 16:52:34,549 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.174:3333', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.174:3333', u'internalURL': u'http://172.17.117.174:3333', u'id': u'6f391171083f4f57b52915706d622d9e'}
2015-10-07 16:52:34,549 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:52:34,549 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.174:8774/v2/d1fd9a107ca8409383bf4660d418a8a1', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.174:8774/v2/d1fd9a107ca8409383bf4660d418a8a1', u'internalURL': u'http://172.17.117.174:8774/v2/d1fd9a107ca8409383bf4660d418a8a1', u'id': u'6cb122d4ad1a4ba3bb587ab9136ec0ba'}
2015-10-07 16:52:34,549 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:52:34,549 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.174:8773/services/Cloud', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.174:8773/services/Cloud', u'internalURL': u'http://172.17.117.174:8773/services/Cloud', u'id': u'1466e4d5deae4097b22cbf06e614bcb7'}
2015-10-07 16:52:34,549 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:52:34,549 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.172:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.172:5000/v2.0', u'internalURL': u'http://172.17.117.172:5000/v2.0', u'id': u'1ad2de9818774ac98d6b15f6668348dd'}
2015-10-07 16:52:34,550 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2aad18763510>>}
2015-10-07 16:52:34,550 validate_services DEBUG: Checking status of system services...
2015-10-07 16:52:34,550 validate_services WARNING: DEPRECATION WARNING:  use validate_services_by_name instead of validate_services due to init system differences.
2015-10-07 16:52:35,862 validate_services DEBUG: rabbitmq-server/0 `sudo service rabbitmq-server status` returned 0
2015-10-07 16:52:36,895 validate_services DEBUG: glance/0 `status glance-registry` returned 0
2015-10-07 16:52:38,050 validate_services DEBUG: glance/0 `status glance-api` returned 0
2015-10-07 16:52:39,097 validate_services DEBUG: nova-cloud-controller/0 `status nova-conductor` returned 0
2015-10-07 16:52:40,040 validate_services DEBUG: keystone/0 `status keystone` returned 0
2015-10-07 16:52:41,121 validate_services DEBUG: mysql/0 `status mysql` returned 0
2015-10-07 16:52:42,252 validate_services DEBUG: nova-compute/0 `status nova-compute` returned 0
2015-10-07 16:52:43,303 validate_services DEBUG: nova-compute/0 `status nova-network` returned 0
2015-10-07 16:52:44,058 validate_services DEBUG: nova-compute/0 `status nova-api` returned 0
2015-10-07 16:52:44,602 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:53:04,623 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:53:05,547 _get_proc_start_time DEBUG: Pid for nova-api-ec2 on nova-cloud-controller/0: 25603
2015-10-07 16:53:08,545 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:53:08,545 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:53:09,581 _get_proc_start_time DEBUG: Pid for nova-api-os-compute on nova-cloud-controller/0: 25607
2015-10-07 16:53:12,611 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:53:12,612 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:53:13,982 _get_proc_start_time DEBUG: Pid for nova-objectstore on nova-cloud-controller/0: 25535
2015-10-07 16:53:16,965 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:53:16,965 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:53:18,031 _get_proc_start_time DEBUG: Pid for nova-cert on nova-cloud-controller/0: 25548
2015-10-07 16:53:20,900 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:53:20,900 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:53:21,954 _get_proc_start_time DEBUG: Pid for nova-scheduler on nova-cloud-controller/0: 25561
2015-10-07 16:53:24,710 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 16:53:24,711 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 16:53:25,754 _get_proc_start_time DEBUG: Pid for nova-conductor on nova-cloud-controller/0: 25601

juju-test.conductor.015-basic-trusty-icehouse RESULT  : PASS
juju-test.conductor DEBUG   : Tearing down osci-sv17 juju environment
juju-test.conductor DEBUG   : Calling "juju destroy-environment --force -y osci-sv17"
WARNING cannot delete security group "juju-osci-sv17-0". Used by another environment?
juju-test.conductor DEBUG   : Starting a bootstrap for osci-sv17, kill after 300
juju-test.conductor DEBUG   : Running the following: juju bootstrap -e osci-sv17
Bootstrapping environment "osci-sv17"
Starting new instance for initial state server
Launching instance
 - 292f110d-9da4-49e4-896e-137f60a51aca
Installing Juju agent on bootstrap instance
Waiting for address
Attempting to connect to 172.17.117.178:22
Logging to /var/log/cloud-init-output.log on remote host
Running apt-get update
Running apt-get upgrade
Installing package: curl
Installing package: cpu-checker
Installing package: bridge-utils
Installing package: rsyslog-gnutls
Installing package: cloud-utils
Installing package: cloud-image-utils
Installing package: tmux
Fetching tools: curl -sSfw 'tools from %{url_effective} downloaded: HTTP %{http_code}; time %{time_total}s; size %{size_download} bytes; speed %{speed_download} bytes/s ' --retry 10 -o $bin/tools.tar.gz <[https://streams.canonical.com/juju/tools/releases/juju-1.24.6-trusty-amd64.tgz]>
Bootstrapping Juju machine agent
Starting Juju machine agent (jujud-machine-0)
Bootstrap agent installed
Waiting for API to become available
Waiting for API to become available
Waiting for API to become available
Bootstrap complete
juju-test.conductor DEBUG   : Waiting for bootstrap
juju-test.conductor DEBUG   : Still not bootstrapped
juju-test.conductor DEBUG   : Running the following: juju status -e osci-sv17
juju-test.conductor DEBUG   : State for 1.24.6: started
juju-test.conductor.016-basic-trusty-juno DEBUG   : Running 016-basic-trusty-juno (tests/016-basic-trusty-juno)
2015-10-07 16:56:39 Starting deployment of osci-sv17
2015-10-07 16:56:59 Deploying services...
2015-10-07 16:56:59  Deploying service glance using local:trusty/glance
2015-10-07 16:57:04  Deploying service keystone using local:trusty/keystone
2015-10-07 16:57:09  Deploying service mysql using local:trusty/mysql
2015-10-07 16:57:14  Deploying service nova-cloud-controller using /tmp/charmeZC4p3/trusty/nova-cloud-controller
2015-10-07 16:57:29  Deploying service nova-compute using local:trusty/nova-compute
2015-10-07 16:57:36  Deploying service rabbitmq-server using local:trusty/rabbitmq-server
2015-10-07 17:00:22 Adding relations...
2015-10-07 17:00:23  Adding relation nova-cloud-controller:image-service <-> glance:image-service
2015-10-07 17:00:23  Adding relation glance:shared-db <-> mysql:shared-db
2015-10-07 17:00:23  Adding relation nova-cloud-controller:identity-service <-> keystone:identity-service
2015-10-07 17:00:23  Adding relation nova-compute:amqp <-> rabbitmq-server:amqp
2015-10-07 17:00:24  Adding relation nova-cloud-controller:shared-db <-> mysql:shared-db
2015-10-07 17:00:24  Adding relation nova-cloud-controller:cloud-compute <-> nova-compute:cloud-compute
2015-10-07 17:00:24  Adding relation glance:identity-service <-> keystone:identity-service
2015-10-07 17:00:25  Adding relation nova-compute:shared-db <-> mysql:shared-db
2015-10-07 17:00:25  Adding relation glance:amqp <-> rabbitmq-server:amqp
2015-10-07 17:00:25  Adding relation keystone:shared-db <-> mysql:shared-db
2015-10-07 17:00:26  Adding relation nova-cloud-controller:amqp <-> rabbitmq-server:amqp
2015-10-07 17:00:26  Adding relation nova-compute:image-service <-> glance:image-service
2015-10-07 17:01:27 Deployment complete in 287.95 seconds
juju-test.conductor.016-basic-trusty-juno DEBUG   : 2015-10-07 17:02:29,083 authenticate_keystone_admin DEBUG: Authenticating keystone admin...
2015-10-07 17:02:36,431 authenticate_glance_admin DEBUG: Authenticating glance admin...
2015-10-07 17:02:36,432 tenant_exists DEBUG: Checking if tenant exists (demoTenant)...
2015-10-07 17:02:36,767 authenticate_keystone_user DEBUG: Authenticating keystone user (demoUser)...
2015-10-07 17:02:37,062 authenticate_nova_user DEBUG: Authenticating nova user (demoUser)...
2015-10-07 17:02:37,063 validate_config_data DEBUG: Validating config file data (filter:ratelimit in /etc/nova/api-paste.ini on nova-cloud-controller/0)...
2015-10-07 17:02:37,951 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 17:02:37,952 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.182:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8773/services/Cloud', u'service_id': u'3548b5c2b1e74d6292316ff427c035b0', u'id': u'c9947751382d422894b06e12cf88b872', u'publicurl': u'http://172.17.117.182:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'service_id': u'f7ea516f92bf4fed9f12f1333510b9e4', u'id': u'44f2534a638842df9961e3b86cdc03c4', u'publicurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.179:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'84b925fc538b4e27ac8085543f890807', u'service_id': u'1fc568aa8f3740018e5ac58255e68cf8', u'internalurl': u'http://172.17.117.179:9292', u'publicurl': u'http://172.17.117.179:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.180:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.180:5000/v2.0', u'service_id': u'eaa1aee47e354fc0868b42ae63213466', u'id': u'1312fc48942241728b09f39ff86dd0e1', u'publicurl': u'http://172.17.117.180:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.182:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'2e7883de941d40389adb74b944e067c9', u'service_id': u'cf56a9acc57f461cba4c8b7754d1a1ef', u'internalurl': u'http://172.17.117.182:3333', u'publicurl': u'http://172.17.117.182:3333'}>]
2015-10-07 17:02:37,952 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.182:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8773/services/Cloud', u'service_id': u'3548b5c2b1e74d6292316ff427c035b0', u'id': u'c9947751382d422894b06e12cf88b872', u'publicurl': u'http://172.17.117.182:8773/services/Cloud'}>
2015-10-07 17:02:37,952 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.182:8773/services/Cloud', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.182:8773/services/Cloud', 'service_id': u'3548b5c2b1e74d6292316ff427c035b0', 'id': u'c9947751382d422894b06e12cf88b872', 'publicurl': u'http://172.17.117.182:8773/services/Cloud'}
2015-10-07 17:02:37,952 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:02:37,954 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'service_id': u'f7ea516f92bf4fed9f12f1333510b9e4', u'id': u'44f2534a638842df9961e3b86cdc03c4', u'publicurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s'}>
2015-10-07 17:02:37,954 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.179:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'84b925fc538b4e27ac8085543f890807', u'service_id': u'1fc568aa8f3740018e5ac58255e68cf8', u'internalurl': u'http://172.17.117.179:9292', u'publicurl': u'http://172.17.117.179:9292'}>
2015-10-07 17:02:37,954 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.180:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.180:5000/v2.0', u'service_id': u'eaa1aee47e354fc0868b42ae63213466', u'id': u'1312fc48942241728b09f39ff86dd0e1', u'publicurl': u'http://172.17.117.180:5000/v2.0'}>
2015-10-07 17:02:37,954 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.182:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'2e7883de941d40389adb74b944e067c9', u'service_id': u'cf56a9acc57f461cba4c8b7754d1a1ef', u'internalurl': u'http://172.17.117.182:3333', u'publicurl': u'http://172.17.117.182:3333'}>
2015-10-07 17:02:43,856 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.179', u'glance-api-server': u'http://172.17.117.179:9292'}
2015-10-07 17:02:43,857 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'glance-api-server': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:02:43,857 create_cirros_image DEBUG: Creating glance cirros image (cirros-image)...
2015-10-07 17:02:43,857 create_cirros_image DEBUG: AMULET_HTTP_PROXY: http://squid.internal:3128/
2015-10-07 17:02:46,210 resource_reaches_status DEBUG: Image status wait:  expected, actual status = active, active
2015-10-07 17:02:46,210 create_cirros_image DEBUG: Validating image attributes...
2015-10-07 17:02:46,356 create_cirros_image DEBUG: Image attributes - name:cirros-image public:True id:e44357a5-e4ce-47c9-8aa8-748a59b8b9b6 stat:active container fmt:bare disk fmt:qcow2
2015-10-07 17:02:46,357 create_instance DEBUG: Creating instance (cirros|cirros-image|m1.tiny)
2015-10-07 17:02:52,481 create_instance DEBUG: instance status: BUILD
2015-10-07 17:02:55,564 create_instance DEBUG: instance status: ACTIVE
2015-10-07 17:02:55,634 delete_image WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_image.
2015-10-07 17:02:55,634 delete_image DEBUG: Deleting glance image (<Image {u'status': u'active', u'created_at': u'2015-10-07T17:02:44', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T17:02:45', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'3bc1b897439445e7b85a29f19ae89c19', u'is_public': True, u'deleted_at': None, u'id': u'e44357a5-e4ce-47c9-8aa8-748a59b8b9b6', u'size': 13287936}>)...
2015-10-07 17:02:55,634 delete_resource DEBUG: Deleting OpenStack resource <Image {u'status': u'active', u'created_at': u'2015-10-07T17:02:44', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T17:02:45', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'3bc1b897439445e7b85a29f19ae89c19', u'is_public': True, u'deleted_at': None, u'id': u'e44357a5-e4ce-47c9-8aa8-748a59b8b9b6', u'size': 13287936}> (glance image)
2015-10-07 17:02:55,950 delete_resource DEBUG: glance image:  expected, actual count = 0, 0
2015-10-07 17:02:55,951 delete_instance WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_instance.
2015-10-07 17:02:55,951 delete_instance DEBUG: Deleting instance (<Server: cirros>)...
2015-10-07 17:02:55,951 delete_resource DEBUG: Deleting OpenStack resource <Server: cirros> (nova instance)
2015-10-07 17:02:56,271 delete_resource DEBUG: nova instance delete check: 0 [1:1] <Server: cirros>
2015-10-07 17:03:00,323 delete_resource DEBUG: nova instance:  expected, actual count = 0, 0
2015-10-07 17:03:09,987 _validate_dict_data DEBUG: actual: {u'service_protocol': u'http', u'service_tenant': u'services', u'admin_token': u'ubuntutesting', u'service_password': u'WdK8Kzj7hKw4R3R5S3VXZscjRBjgJZcVdXG9sw5d8WCrNYTXzN4sc5qK7Kgn3ypW', u'service_port': u'5000', u'auth_port': u'35357', u'auth_protocol': u'http', u'private-address': u'172.17.117.180', u'auth_host': u'172.17.117.180', u'service_username': u's3_ec2_nova', u'service_tenant_id': u'd7b250c6690f4a79a93e2a28d65e463d', u'service_host': u'172.17.117.180'}
2015-10-07 17:03:09,988 _validate_dict_data DEBUG: expected: {'admin_token': 'ubuntutesting', 'auth_port': '35357', 'auth_protocol': 'http', 'auth_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'service_username': 's3_ec2_nova', 'service_tenant_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'service_protocol': 'http', 'service_tenant': 'services', 'service_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'service_port': '5000', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'service_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:03:18,474 _validate_dict_data DEBUG: actual: {u'nova_allowed_units': u'nova-cloud-controller/0', u'nova_password': u'NzzTGdHkYdkXKqSyLdckVrdXNJPj54H6', u'db_host': u'172.17.117.181', u'private-address': u'172.17.117.181'}
2015-10-07 17:03:18,474 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'nova_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'db_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:03:25,034 _validate_dict_data DEBUG: actual: {u'username': u'nova', u'private-address': u'172.17.117.182', u'vhost': u'openstack'}
2015-10-07 17:03:25,035 _validate_dict_data DEBUG: expected: {'username': 'nova', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'vhost': 'openstack'}
2015-10-07 17:03:30,884 _validate_dict_data DEBUG: actual: {u'volume_service': u'cinder', u'network_manager': u'flatdhcpmanager', u'restart_trigger': u'06d6ca3c-410e-4fab-845f-5ea9212ee4ce', u'ec2_host': u'172.17.117.182', u'private-address': u'172.17.117.182'}
2015-10-07 17:03:30,884 _validate_dict_data DEBUG: expected: {'volume_service': 'cinder', 'network_manager': 'flatdhcpmanager', 'restart_trigger': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'ec2_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:03:36,651 _validate_dict_data DEBUG: actual: {u'nova_internal_url': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u's3_service': u's3', u'nova_public_url': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'nova_service': u'nova', u's3_public_url': u'http://172.17.117.182:3333', u'ec2_admin_url': u'http://172.17.117.182:8773/services/Cloud', u'ec2_internal_url': u'http://172.17.117.182:8773/services/Cloud', u'ec2_public_url': u'http://172.17.117.182:8773/services/Cloud', u's3_region': u'RegionOne', u'private-address': u'172.17.117.182', u'nova_region': u'RegionOne', u'ec2_service': u'ec2', u's3_internal_url': u'http://172.17.117.182:3333', u's3_admin_url': u'http://172.17.117.182:3333', u'nova_admin_url': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'ec2_region': u'RegionOne'}
2015-10-07 17:03:36,652 _validate_dict_data DEBUG: expected: {'nova_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'nova_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 's3_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 's3_service': 's3', 'ec2_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'ec2_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'nova_service': 'nova', 's3_region': 'RegionOne', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'nova_region': 'RegionOne', 'ec2_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'ec2_service': 'ec2', 'ec2_region': 'RegionOne', 's3_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'nova_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 's3_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:03:43,276 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.182'}
2015-10-07 17:03:43,277 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:03:48,646 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.182', u'nova_hostname': u'172.17.117.182', u'nova_username': u'nova', u'nova_database': u'nova'}
2015-10-07 17:03:48,647 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'nova_hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'nova_username': 'nova', 'nova_database': 'nova'}
2015-10-07 17:03:54,159 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.183'}
2015-10-07 17:03:54,160 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:04:20,491 validate_config_data DEBUG: Validating config file data (DEFAULT in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:04:21,456 validate_config_data DEBUG: Validating config file data (keystone_authtoken in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:04:22,509 validate_config_data DEBUG: Validating config file data (database in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:04:23,531 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 17:04:23,532 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.182:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8773/services/Cloud', u'service_id': u'3548b5c2b1e74d6292316ff427c035b0', u'id': u'c9947751382d422894b06e12cf88b872', u'publicurl': u'http://172.17.117.182:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'service_id': u'f7ea516f92bf4fed9f12f1333510b9e4', u'id': u'44f2534a638842df9961e3b86cdc03c4', u'publicurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.179:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'84b925fc538b4e27ac8085543f890807', u'service_id': u'1fc568aa8f3740018e5ac58255e68cf8', u'internalurl': u'http://172.17.117.179:9292', u'publicurl': u'http://172.17.117.179:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.180:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.180:5000/v2.0', u'service_id': u'eaa1aee47e354fc0868b42ae63213466', u'id': u'1312fc48942241728b09f39ff86dd0e1', u'publicurl': u'http://172.17.117.180:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.182:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'2e7883de941d40389adb74b944e067c9', u'service_id': u'cf56a9acc57f461cba4c8b7754d1a1ef', u'internalurl': u'http://172.17.117.182:3333', u'publicurl': u'http://172.17.117.182:3333'}>]
2015-10-07 17:04:23,532 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.182:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8773/services/Cloud', u'service_id': u'3548b5c2b1e74d6292316ff427c035b0', u'id': u'c9947751382d422894b06e12cf88b872', u'publicurl': u'http://172.17.117.182:8773/services/Cloud'}>
2015-10-07 17:04:23,532 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'service_id': u'f7ea516f92bf4fed9f12f1333510b9e4', u'id': u'44f2534a638842df9961e3b86cdc03c4', u'publicurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s'}>
2015-10-07 17:04:23,532 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', 'service_id': u'f7ea516f92bf4fed9f12f1333510b9e4', 'id': u'44f2534a638842df9961e3b86cdc03c4', 'publicurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s'}
2015-10-07 17:04:23,532 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:04:23,532 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.179:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'84b925fc538b4e27ac8085543f890807', u'service_id': u'1fc568aa8f3740018e5ac58255e68cf8', u'internalurl': u'http://172.17.117.179:9292', u'publicurl': u'http://172.17.117.179:9292'}>
2015-10-07 17:04:23,532 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.180:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.180:5000/v2.0', u'service_id': u'eaa1aee47e354fc0868b42ae63213466', u'id': u'1312fc48942241728b09f39ff86dd0e1', u'publicurl': u'http://172.17.117.180:5000/v2.0'}>
2015-10-07 17:04:23,533 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.182:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'2e7883de941d40389adb74b944e067c9', u'service_id': u'cf56a9acc57f461cba4c8b7754d1a1ef', u'internalurl': u'http://172.17.117.182:3333', u'publicurl': u'http://172.17.117.182:3333'}>
2015-10-07 17:04:30,722 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.185', u'password': u'99knZqp5P2BftgXVYkhc5GJnN8b3zjWwmjZCLWwtZFZSHwXW22kNBn5bS8Z4cw74', u'hostname': u'172.17.117.185'}
2015-10-07 17:04:30,723 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:04:30,748 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 17:04:30,749 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.182:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8773/services/Cloud', u'service_id': u'3548b5c2b1e74d6292316ff427c035b0', u'id': u'c9947751382d422894b06e12cf88b872', u'publicurl': u'http://172.17.117.182:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'service_id': u'f7ea516f92bf4fed9f12f1333510b9e4', u'id': u'44f2534a638842df9961e3b86cdc03c4', u'publicurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.179:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'84b925fc538b4e27ac8085543f890807', u'service_id': u'1fc568aa8f3740018e5ac58255e68cf8', u'internalurl': u'http://172.17.117.179:9292', u'publicurl': u'http://172.17.117.179:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.180:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.180:5000/v2.0', u'service_id': u'eaa1aee47e354fc0868b42ae63213466', u'id': u'1312fc48942241728b09f39ff86dd0e1', u'publicurl': u'http://172.17.117.180:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.182:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'2e7883de941d40389adb74b944e067c9', u'service_id': u'cf56a9acc57f461cba4c8b7754d1a1ef', u'internalurl': u'http://172.17.117.182:3333', u'publicurl': u'http://172.17.117.182:3333'}>]
2015-10-07 17:04:30,749 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.182:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8773/services/Cloud', u'service_id': u'3548b5c2b1e74d6292316ff427c035b0', u'id': u'c9947751382d422894b06e12cf88b872', u'publicurl': u'http://172.17.117.182:8773/services/Cloud'}>
2015-10-07 17:04:30,749 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s', u'service_id': u'f7ea516f92bf4fed9f12f1333510b9e4', u'id': u'44f2534a638842df9961e3b86cdc03c4', u'publicurl': u'http://172.17.117.182:8774/v2/$(tenant_id)s'}>
2015-10-07 17:04:30,749 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.179:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'84b925fc538b4e27ac8085543f890807', u'service_id': u'1fc568aa8f3740018e5ac58255e68cf8', u'internalurl': u'http://172.17.117.179:9292', u'publicurl': u'http://172.17.117.179:9292'}>
2015-10-07 17:04:30,749 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.180:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.180:5000/v2.0', u'service_id': u'eaa1aee47e354fc0868b42ae63213466', u'id': u'1312fc48942241728b09f39ff86dd0e1', u'publicurl': u'http://172.17.117.180:5000/v2.0'}>
2015-10-07 17:04:30,749 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.182:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'2e7883de941d40389adb74b944e067c9', u'service_id': u'cf56a9acc57f461cba4c8b7754d1a1ef', u'internalurl': u'http://172.17.117.182:3333', u'publicurl': u'http://172.17.117.182:3333'}>
2015-10-07 17:04:30,749 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.182:3333', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.182:3333', 'service_id': u'cf56a9acc57f461cba4c8b7754d1a1ef', 'id': u'2e7883de941d40389adb74b944e067c9', 'publicurl': u'http://172.17.117.182:3333'}
2015-10-07 17:04:30,750 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:04:30,750 validate_svc_catalog_endpoint_data DEBUG: Validating service catalog endpoint data...
2015-10-07 17:04:30,750 validate_svc_catalog_endpoint_data DEBUG: actual: {u's3': [{u'adminURL': u'http://172.17.117.182:3333', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.182:3333', u'internalURL': u'http://172.17.117.182:3333', u'id': u'3cf3fabc9de54b2aba2c4b370006490d'}], u'image': [{u'adminURL': u'http://172.17.117.179:9292', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.179:9292', u'internalURL': u'http://172.17.117.179:9292', u'id': u'2324d66437da4ea880717c118cd2de1f'}], u'compute': [{u'adminURL': u'http://172.17.117.182:8774/v2/951b29f4e46842028f99c2efbffe953b', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.182:8774/v2/951b29f4e46842028f99c2efbffe953b', u'internalURL': u'http://172.17.117.182:8774/v2/951b29f4e46842028f99c2efbffe953b', u'id': u'730409c8161142828961e021a11dbeba'}], u'ec2': [{u'adminURL': u'http://172.17.117.182:8773/services/Cloud', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.182:8773/services/Cloud', u'internalURL': u'http://172.17.117.182:8773/services/Cloud', u'id': u'23155bd6da0b46948773a744d83efbd0'}], u'identity': [{u'adminURL': u'http://172.17.117.180:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.180:5000/v2.0', u'internalURL': u'http://172.17.117.180:5000/v2.0', u'id': u'456edaecf2d544dd9df3abb5ceaa231b'}]}
2015-10-07 17:04:30,750 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.182:3333', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.182:3333', u'internalURL': u'http://172.17.117.182:3333', u'id': u'3cf3fabc9de54b2aba2c4b370006490d'}
2015-10-07 17:04:30,750 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:04:30,750 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.182:8774/v2/951b29f4e46842028f99c2efbffe953b', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.182:8774/v2/951b29f4e46842028f99c2efbffe953b', u'internalURL': u'http://172.17.117.182:8774/v2/951b29f4e46842028f99c2efbffe953b', u'id': u'730409c8161142828961e021a11dbeba'}
2015-10-07 17:04:30,751 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:04:30,751 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.182:8773/services/Cloud', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.182:8773/services/Cloud', u'internalURL': u'http://172.17.117.182:8773/services/Cloud', u'id': u'23155bd6da0b46948773a744d83efbd0'}
2015-10-07 17:04:30,751 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:04:30,751 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.180:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.180:5000/v2.0', u'internalURL': u'http://172.17.117.180:5000/v2.0', u'id': u'456edaecf2d544dd9df3abb5ceaa231b'}
2015-10-07 17:04:30,751 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b34eb69c650>>}
2015-10-07 17:04:30,751 validate_services DEBUG: Checking status of system services...
2015-10-07 17:04:30,751 validate_services WARNING: DEPRECATION WARNING:  use validate_services_by_name instead of validate_services due to init system differences.
2015-10-07 17:04:31,846 validate_services DEBUG: nova-cloud-controller/0 `status nova-conductor` returned 0
2015-10-07 17:04:32,969 validate_services DEBUG: nova-compute/0 `status nova-compute` returned 0
2015-10-07 17:04:33,785 validate_services DEBUG: nova-compute/0 `status nova-network` returned 0
2015-10-07 17:04:35,024 validate_services DEBUG: nova-compute/0 `status nova-api` returned 0
2015-10-07 17:04:36,143 validate_services DEBUG: keystone/0 `status keystone` returned 0
2015-10-07 17:04:37,310 validate_services DEBUG: mysql/0 `status mysql` returned 0
2015-10-07 17:04:38,541 validate_services DEBUG: rabbitmq-server/0 `sudo service rabbitmq-server status` returned 0
2015-10-07 17:04:39,616 validate_services DEBUG: glance/0 `status glance-registry` returned 0
2015-10-07 17:04:40,622 validate_services DEBUG: glance/0 `status glance-api` returned 0
2015-10-07 17:04:41,176 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:05:01,190 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:05:02,419 _get_proc_start_time DEBUG: Pid for nova-api-ec2 on nova-cloud-controller/0: 25941
2015-10-07 17:05:05,472 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:05:05,473 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:05:06,471 _get_proc_start_time DEBUG: Pid for nova-api-os-compute on nova-cloud-controller/0: 25945
2015-10-07 17:05:09,009 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:05:09,009 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:05:10,046 _get_proc_start_time DEBUG: Pid for nova-objectstore on nova-cloud-controller/0: 25873
2015-10-07 17:05:12,968 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:05:12,968 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:05:14,007 _get_proc_start_time DEBUG: Pid for nova-cert on nova-cloud-controller/0: 25886
2015-10-07 17:05:16,663 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:05:16,663 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:05:17,799 _get_proc_start_time DEBUG: Pid for nova-scheduler on nova-cloud-controller/0: 25899
2015-10-07 17:05:20,449 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:05:20,449 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:05:21,462 _get_proc_start_time DEBUG: Pid for nova-conductor on nova-cloud-controller/0: 25939

juju-test.conductor.016-basic-trusty-juno RESULT  : PASS
juju-test.conductor DEBUG   : Tearing down osci-sv17 juju environment
juju-test.conductor DEBUG   : Calling "juju destroy-environment --force -y osci-sv17"
WARNING cannot delete security group "juju-osci-sv17-0". Used by another environment?
juju-test.conductor DEBUG   : Starting a bootstrap for osci-sv17, kill after 300
juju-test.conductor DEBUG   : Running the following: juju bootstrap -e osci-sv17
Bootstrapping environment "osci-sv17"
Starting new instance for initial state server
Launching instance
 - da8c4f28-8fd2-40a1-b172-2e16041b487b
Installing Juju agent on bootstrap instance
Waiting for address
Attempting to connect to 172.17.117.186:22
Logging to /var/log/cloud-init-output.log on remote host
Running apt-get update
Running apt-get upgrade
Installing package: curl
Installing package: cpu-checker
Installing package: bridge-utils
Installing package: rsyslog-gnutls
Installing package: cloud-utils
Installing package: cloud-image-utils
Installing package: tmux
Fetching tools: curl -sSfw 'tools from %{url_effective} downloaded: HTTP %{http_code}; time %{time_total}s; size %{size_download} bytes; speed %{speed_download} bytes/s ' --retry 10 -o $bin/tools.tar.gz <[https://streams.canonical.com/juju/tools/releases/juju-1.24.6-trusty-amd64.tgz]>
Bootstrapping Juju machine agent
Starting Juju machine agent (jujud-machine-0)
Bootstrap agent installed
Waiting for API to become available
Waiting for API to become available
Bootstrap complete
juju-test.conductor DEBUG   : Waiting for bootstrap
juju-test.conductor DEBUG   : Still not bootstrapped
juju-test.conductor DEBUG   : Running the following: juju status -e osci-sv17
juju-test.conductor DEBUG   : State for 1.24.6: started
juju-test.conductor.017-basic-trusty-kilo DEBUG   : Running 017-basic-trusty-kilo (tests/017-basic-trusty-kilo)
2015-10-07 17:13:51 Starting deployment of osci-sv17
2015-10-07 17:14:09 Deploying services...
2015-10-07 17:14:09  Deploying service glance using local:trusty/glance
2015-10-07 17:14:14  Deploying service keystone using local:trusty/keystone
2015-10-07 17:14:19  Deploying service mysql using local:trusty/mysql
2015-10-07 17:14:24  Deploying service nova-cloud-controller using /tmp/charmBNERYP/trusty/nova-cloud-controller
2015-10-07 17:14:39  Deploying service nova-compute using local:trusty/nova-compute
2015-10-07 17:14:46  Deploying service rabbitmq-server using local:trusty/rabbitmq-server
2015-10-07 17:17:16 Adding relations...
2015-10-07 17:17:16  Adding relation nova-cloud-controller:image-service <-> glance:image-service
2015-10-07 17:17:17  Adding relation glance:shared-db <-> mysql:shared-db
2015-10-07 17:17:17  Adding relation nova-cloud-controller:identity-service <-> keystone:identity-service
2015-10-07 17:17:17  Adding relation nova-compute:amqp <-> rabbitmq-server:amqp
2015-10-07 17:17:18  Adding relation nova-cloud-controller:shared-db <-> mysql:shared-db
2015-10-07 17:17:18  Adding relation nova-cloud-controller:cloud-compute <-> nova-compute:cloud-compute
2015-10-07 17:17:18  Adding relation glance:identity-service <-> keystone:identity-service
2015-10-07 17:17:19  Adding relation nova-compute:shared-db <-> mysql:shared-db
2015-10-07 17:17:19  Adding relation glance:amqp <-> rabbitmq-server:amqp
2015-10-07 17:17:19  Adding relation keystone:shared-db <-> mysql:shared-db
2015-10-07 17:17:20  Adding relation nova-cloud-controller:amqp <-> rabbitmq-server:amqp
2015-10-07 17:17:20  Adding relation nova-compute:image-service <-> glance:image-service
2015-10-07 17:18:20 Deployment complete in 270.03 seconds
juju-test.conductor.017-basic-trusty-kilo DEBUG   : 2015-10-07 17:19:47,393 authenticate_keystone_admin DEBUG: Authenticating keystone admin...
2015-10-07 17:19:53,938 authenticate_glance_admin DEBUG: Authenticating glance admin...
2015-10-07 17:19:53,939 tenant_exists DEBUG: Checking if tenant exists (demoTenant)...
2015-10-07 17:19:54,236 authenticate_keystone_user DEBUG: Authenticating keystone user (demoUser)...
2015-10-07 17:19:54,553 authenticate_nova_user DEBUG: Authenticating nova user (demoUser)...
2015-10-07 17:19:54,554 validate_config_data DEBUG: Validating config file data (filter:ratelimit in /etc/nova/api-paste.ini on nova-cloud-controller/0)...
2015-10-07 17:20:00,700 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.187', u'glance-api-server': u'http://172.17.117.187:9292'}
2015-10-07 17:20:00,700 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'glance-api-server': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:20:00,702 create_cirros_image DEBUG: Creating glance cirros image (cirros-image)...
2015-10-07 17:20:00,702 create_cirros_image DEBUG: AMULET_HTTP_PROXY: http://squid.internal:3128/
2015-10-07 17:20:03,248 resource_reaches_status DEBUG: Image status wait:  expected, actual status = active, active
2015-10-07 17:20:03,248 create_cirros_image DEBUG: Validating image attributes...
2015-10-07 17:20:03,385 create_cirros_image DEBUG: Image attributes - name:cirros-image public:True id:c6d29bf0-9da3-487e-bfaf-0bfa4a0ddb44 stat:active container fmt:bare disk fmt:qcow2
2015-10-07 17:20:03,385 create_instance DEBUG: Creating instance (cirros|cirros-image|m1.tiny)
2015-10-07 17:20:09,090 create_instance DEBUG: instance status: BUILD
2015-10-07 17:20:12,164 create_instance DEBUG: instance status: ACTIVE
2015-10-07 17:20:12,229 delete_image WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_image.
2015-10-07 17:20:12,229 delete_image DEBUG: Deleting glance image (<Image {u'status': u'active', u'created_at': u'2015-10-07T17:20:02.000000', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T17:20:02.000000', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'a175243cc5e442739785921ab80f2c93', u'is_public': True, u'deleted_at': None, u'id': u'c6d29bf0-9da3-487e-bfaf-0bfa4a0ddb44', u'size': 13287936}>)...
2015-10-07 17:20:12,230 delete_resource DEBUG: Deleting OpenStack resource <Image {u'status': u'active', u'created_at': u'2015-10-07T17:20:02.000000', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T17:20:02.000000', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'a175243cc5e442739785921ab80f2c93', u'is_public': True, u'deleted_at': None, u'id': u'c6d29bf0-9da3-487e-bfaf-0bfa4a0ddb44', u'size': 13287936}> (glance image)
2015-10-07 17:20:12,556 delete_resource DEBUG: glance image:  expected, actual count = 0, 0
2015-10-07 17:20:12,557 delete_instance WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_instance.
2015-10-07 17:20:12,557 delete_instance DEBUG: Deleting instance (<Server: cirros>)...
2015-10-07 17:20:12,557 delete_resource DEBUG: Deleting OpenStack resource <Server: cirros> (nova instance)
2015-10-07 17:20:12,883 delete_resource DEBUG: nova instance delete check: 0 [1:1] <Server: cirros>
2015-10-07 17:20:16,928 delete_resource DEBUG: nova instance:  expected, actual count = 0, 0
2015-10-07 17:20:22,637 _validate_dict_data DEBUG: actual: {u'service_protocol': u'http', u'service_tenant': u'services', u'admin_token': u'ubuntutesting', u'service_password': u'mHW9bJYVwLFLsSSWCSPNxhWX2ydp8PhJqd6XsL5KVpqVMnsg8W7pRNxnVPkXNNJb', u'service_port': u'5000', u'auth_port': u'35357', u'auth_protocol': u'http', u'private-address': u'172.17.117.188', u'auth_host': u'172.17.117.188', u'service_username': u'nova', u'service_tenant_id': u'ee43abfa696a4477b812ccb2dc4d0570', u'service_host': u'172.17.117.188'}
2015-10-07 17:20:22,637 _validate_dict_data DEBUG: expected: {'admin_token': 'ubuntutesting', 'auth_port': '35357', 'auth_protocol': 'http', 'auth_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'service_username': 'nova', 'service_tenant_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'service_protocol': 'http', 'service_tenant': 'services', 'service_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'service_port': '5000', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'service_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:20:31,163 _validate_dict_data DEBUG: actual: {u'nova_allowed_units': u'nova-cloud-controller/0', u'nova_password': u'LfnP6JrcZ4TTPrTbh5zt26ntX8FWGjX7', u'db_host': u'172.17.117.189', u'private-address': u'172.17.117.189'}
2015-10-07 17:20:31,164 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'nova_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'db_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:20:36,997 _validate_dict_data DEBUG: actual: {u'username': u'nova', u'private-address': u'172.17.117.190', u'vhost': u'openstack'}
2015-10-07 17:20:36,997 _validate_dict_data DEBUG: expected: {'username': 'nova', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'vhost': 'openstack'}
2015-10-07 17:20:42,676 _validate_dict_data DEBUG: actual: {u'volume_service': u'cinder', u'network_manager': u'flatdhcpmanager', u'restart_trigger': u'79ebc030-fb11-46c4-84e2-3ff795075db5', u'ec2_host': u'172.17.117.190', u'private-address': u'172.17.117.190'}
2015-10-07 17:20:42,676 _validate_dict_data DEBUG: expected: {'volume_service': 'cinder', 'network_manager': 'flatdhcpmanager', 'restart_trigger': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'ec2_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:20:48,220 _validate_dict_data DEBUG: actual: {u'nova_internal_url': u'http://172.17.117.190:8774/v2/$(tenant_id)s', u'nova_public_url': u'http://172.17.117.190:8774/v2/$(tenant_id)s', u'nova_service': u'nova', u'private-address': u'172.17.117.190', u'nova_region': u'RegionOne', u'nova_admin_url': u'http://172.17.117.190:8774/v2/$(tenant_id)s'}
2015-10-07 17:20:48,220 _validate_dict_data DEBUG: expected: {'nova_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'nova_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'nova_service': 'nova', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'nova_region': 'RegionOne', 'nova_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:20:54,225 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.190'}
2015-10-07 17:20:54,226 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:20:58,681 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.190', u'nova_hostname': u'172.17.117.190', u'nova_username': u'nova', u'nova_database': u'nova'}
2015-10-07 17:20:58,681 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'nova_hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'nova_username': 'nova', 'nova_database': 'nova'}
2015-10-07 17:21:03,687 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.191'}
2015-10-07 17:21:03,687 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:21:29,605 validate_config_data DEBUG: Validating config file data (oslo_messaging_rabbit in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:21:30,834 validate_config_data DEBUG: Validating config file data (osapi_v3 in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:21:31,721 validate_config_data DEBUG: Validating config file data (oslo_concurrency in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:21:32,461 validate_config_data DEBUG: Validating config file data (conductor in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:21:33,761 validate_config_data DEBUG: Validating config file data (database in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:21:34,525 validate_config_data DEBUG: Validating config file data (DEFAULT in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:21:35,512 validate_config_data DEBUG: Validating config file data (glance in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:21:36,260 validate_config_data DEBUG: Validating config file data (keystone_authtoken in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:21:37,068 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 17:21:37,069 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.187:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'19fce859c8964ea789fecf0de2e65658', u'service_id': u'fa5658cacdaa4adcbb6a9a3dd572d013', u'internalurl': u'http://172.17.117.187:9292', u'publicurl': u'http://172.17.117.187:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.188:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'f20e8780323b428691c6d67206fdba0d', u'service_id': u'70a1505355fe4d13896c0c3d07ff1071', u'internalurl': u'http://172.17.117.188:5000/v2.0', u'publicurl': u'http://172.17.117.188:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.190:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.190:8774/v2/$(tenant_id)s', u'service_id': u'2a38247d47034b9683ec68465786b986', u'id': u'fdf0860f0e2e44d08e5537a3bce2abe6', u'publicurl': u'http://172.17.117.190:8774/v2/$(tenant_id)s'}>]
2015-10-07 17:21:37,069 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.187:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'19fce859c8964ea789fecf0de2e65658', u'service_id': u'fa5658cacdaa4adcbb6a9a3dd572d013', u'internalurl': u'http://172.17.117.187:9292', u'publicurl': u'http://172.17.117.187:9292'}>
2015-10-07 17:21:37,069 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.188:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'f20e8780323b428691c6d67206fdba0d', u'service_id': u'70a1505355fe4d13896c0c3d07ff1071', u'internalurl': u'http://172.17.117.188:5000/v2.0', u'publicurl': u'http://172.17.117.188:5000/v2.0'}>
2015-10-07 17:21:37,069 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.190:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.190:8774/v2/$(tenant_id)s', u'service_id': u'2a38247d47034b9683ec68465786b986', u'id': u'fdf0860f0e2e44d08e5537a3bce2abe6', u'publicurl': u'http://172.17.117.190:8774/v2/$(tenant_id)s'}>
2015-10-07 17:21:37,069 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.190:8774/v2/$(tenant_id)s', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.190:8774/v2/$(tenant_id)s', 'service_id': u'2a38247d47034b9683ec68465786b986', 'id': u'fdf0860f0e2e44d08e5537a3bce2abe6', 'publicurl': u'http://172.17.117.190:8774/v2/$(tenant_id)s'}
2015-10-07 17:21:37,069 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:21:44,047 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.193', u'password': u'c9gbGkVtg8LYqW822MmqT73fxf7PTcdm9w6Whx636L5zfGxytmtdmdSxnrXPFrCh', u'hostname': u'172.17.117.193'}
2015-10-07 17:21:44,048 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:21:44,048 validate_svc_catalog_endpoint_data DEBUG: Validating service catalog endpoint data...
2015-10-07 17:21:44,048 validate_svc_catalog_endpoint_data DEBUG: actual: {u'image': [{u'adminURL': u'http://172.17.117.187:9292', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.187:9292', u'internalURL': u'http://172.17.117.187:9292', u'id': u'842ccf21a0c441a19921a095b7f25662'}], u'compute': [{u'adminURL': u'http://172.17.117.190:8774/v2/f7676e934eac4c9ebc5fc8ecd394a71f', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.190:8774/v2/f7676e934eac4c9ebc5fc8ecd394a71f', u'internalURL': u'http://172.17.117.190:8774/v2/f7676e934eac4c9ebc5fc8ecd394a71f', u'id': u'958bb5fbfc2f4f33be9dbe4034cb7cbc'}], u'identity': [{u'adminURL': u'http://172.17.117.188:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.188:5000/v2.0', u'internalURL': u'http://172.17.117.188:5000/v2.0', u'id': u'1727d5f74fb24ff990a4db1653bc38ac'}]}
2015-10-07 17:21:44,048 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.190:8774/v2/f7676e934eac4c9ebc5fc8ecd394a71f', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.190:8774/v2/f7676e934eac4c9ebc5fc8ecd394a71f', u'internalURL': u'http://172.17.117.190:8774/v2/f7676e934eac4c9ebc5fc8ecd394a71f', u'id': u'958bb5fbfc2f4f33be9dbe4034cb7cbc'}
2015-10-07 17:21:44,048 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:21:44,048 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.188:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.188:5000/v2.0', u'internalURL': u'http://172.17.117.188:5000/v2.0', u'id': u'1727d5f74fb24ff990a4db1653bc38ac'}
2015-10-07 17:21:44,049 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2af69b999650>>}
2015-10-07 17:21:44,049 validate_services DEBUG: Checking status of system services...
2015-10-07 17:21:44,049 validate_services WARNING: DEPRECATION WARNING:  use validate_services_by_name instead of validate_services due to init system differences.
2015-10-07 17:21:44,874 validate_services DEBUG: nova-cloud-controller/0 `status nova-conductor` returned 0
2015-10-07 17:21:45,943 validate_services DEBUG: nova-compute/0 `status nova-compute` returned 0
2015-10-07 17:21:46,968 validate_services DEBUG: nova-compute/0 `status nova-network` returned 0
2015-10-07 17:21:47,741 validate_services DEBUG: nova-compute/0 `status nova-api` returned 0
2015-10-07 17:21:48,780 validate_services DEBUG: keystone/0 `status keystone` returned 0
2015-10-07 17:21:49,830 validate_services DEBUG: mysql/0 `status mysql` returned 0
2015-10-07 17:21:50,888 validate_services DEBUG: glance/0 `status glance-registry` returned 0
2015-10-07 17:21:51,639 validate_services DEBUG: glance/0 `status glance-api` returned 0
2015-10-07 17:21:53,076 validate_services DEBUG: rabbitmq-server/0 `sudo service rabbitmq-server status` returned 0
2015-10-07 17:21:53,627 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:22:13,647 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:22:15,591 _get_proc_start_time DEBUG: Pid for nova-api-ec2 on nova-cloud-controller/0: 28578
2015-10-07 17:22:18,615 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:22:18,616 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:22:19,719 _get_proc_start_time DEBUG: Pid for nova-api-os-compute on nova-cloud-controller/0: 28625
2015-10-07 17:22:22,290 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:22:22,290 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:22:23,378 _get_proc_start_time DEBUG: Pid for nova-objectstore on nova-cloud-controller/0: 28475
2015-10-07 17:22:26,335 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:22:26,335 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:22:27,328 _get_proc_start_time DEBUG: Pid for nova-cert on nova-cloud-controller/0: 28492
2015-10-07 17:22:29,882 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:22:29,882 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:22:30,869 _get_proc_start_time DEBUG: Pid for nova-scheduler on nova-cloud-controller/0: 28509
2015-10-07 17:22:33,537 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:22:33,538 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:22:34,596 _get_proc_start_time DEBUG: Pid for nova-conductor on nova-cloud-controller/0: 28554

juju-test.conductor.017-basic-trusty-kilo RESULT  : PASS
juju-test.conductor DEBUG   : Tearing down osci-sv17 juju environment
juju-test.conductor DEBUG   : Calling "juju destroy-environment --force -y osci-sv17"
WARNING cannot delete security group "juju-osci-sv17-0". Used by another environment?
WARNING cannot delete security group "juju-osci-sv17-1". Used by another environment?
WARNING cannot delete security group "juju-osci-sv17-2". Used by another environment?
WARNING cannot delete security group "juju-osci-sv17-5". Used by another environment?
juju-test.conductor DEBUG   : Starting a bootstrap for osci-sv17, kill after 300
juju-test.conductor DEBUG   : Running the following: juju bootstrap -e osci-sv17
Bootstrapping environment "osci-sv17"
Starting new instance for initial state server
Launching instance
 - 2da87a4b-b5ac-46d2-912f-bd980472a06b
Installing Juju agent on bootstrap instance
Waiting for address
Attempting to connect to 172.17.117.194:22
Logging to /var/log/cloud-init-output.log on remote host
Running apt-get update
Running apt-get upgrade
Installing package: curl
Installing package: cpu-checker
Installing package: bridge-utils
Installing package: rsyslog-gnutls
Installing package: cloud-utils
Installing package: cloud-image-utils
Installing package: tmux
Fetching tools: curl -sSfw 'tools from %{url_effective} downloaded: HTTP %{http_code}; time %{time_total}s; size %{size_download} bytes; speed %{speed_download} bytes/s ' --retry 10 -o $bin/tools.tar.gz <[https://streams.canonical.com/juju/tools/releases/juju-1.24.6-trusty-amd64.tgz]>
Bootstrapping Juju machine agent
Starting Juju machine agent (jujud-machine-0)
Bootstrap agent installed
Waiting for API to become available
Waiting for API to become available
Bootstrap complete
juju-test.conductor DEBUG   : Waiting for bootstrap
juju-test.conductor DEBUG   : Still not bootstrapped
juju-test.conductor DEBUG   : Running the following: juju status -e osci-sv17
juju-test.conductor DEBUG   : State for 1.24.6: started
juju-test.conductor.050-basic-trusty-icehouse-git DEBUG   : Running 050-basic-trusty-icehouse-git (tests/050-basic-trusty-icehouse-git)
2015-10-07 17:26:04 Starting deployment of osci-sv17
2015-10-07 17:26:24 Deploying services...
2015-10-07 17:26:24  Deploying service glance using local:trusty/glance
2015-10-07 17:26:29  Deploying service keystone using local:trusty/keystone
2015-10-07 17:26:34  Deploying service mysql using local:trusty/mysql
2015-10-07 17:26:39  Deploying service nova-cloud-controller using /tmp/charmr3Fcu8/trusty/nova-cloud-controller
2015-10-07 17:26:54  Deploying service nova-compute using local:trusty/nova-compute
2015-10-07 17:27:01  Deploying service rabbitmq-server using local:trusty/rabbitmq-server
Connection Timeout: disconnecting client after 300.0 seconds
2015-10-07 17:36:31 Adding relations...
2015-10-07 17:36:31  Adding relation nova-cloud-controller:image-service <-> glance:image-service
2015-10-07 17:36:32  Adding relation glance:shared-db <-> mysql:shared-db
2015-10-07 17:36:32  Adding relation nova-cloud-controller:identity-service <-> keystone:identity-service
2015-10-07 17:36:32  Adding relation nova-compute:amqp <-> rabbitmq-server:amqp
2015-10-07 17:36:33  Adding relation nova-cloud-controller:shared-db <-> mysql:shared-db
2015-10-07 17:36:33  Adding relation nova-cloud-controller:cloud-compute <-> nova-compute:cloud-compute
2015-10-07 17:36:33  Adding relation glance:identity-service <-> keystone:identity-service
2015-10-07 17:36:34  Adding relation nova-compute:shared-db <-> mysql:shared-db
2015-10-07 17:36:34  Adding relation glance:amqp <-> rabbitmq-server:amqp
2015-10-07 17:36:34  Adding relation keystone:shared-db <-> mysql:shared-db
2015-10-07 17:36:35  Adding relation nova-cloud-controller:amqp <-> rabbitmq-server:amqp
2015-10-07 17:36:35  Adding relation nova-compute:image-service <-> glance:image-service
2015-10-07 17:37:36 Deployment complete in 691.39 seconds
juju-test.conductor.050-basic-trusty-icehouse-git DEBUG   : 2015-10-07 17:39:50,021 authenticate_keystone_admin DEBUG: Authenticating keystone admin...
2015-10-07 17:39:57,118 authenticate_glance_admin DEBUG: Authenticating glance admin...
2015-10-07 17:39:57,119 tenant_exists DEBUG: Checking if tenant exists (demoTenant)...
2015-10-07 17:39:57,390 authenticate_keystone_user DEBUG: Authenticating keystone user (demoUser)...
2015-10-07 17:39:57,577 authenticate_nova_user DEBUG: Authenticating nova user (demoUser)...
2015-10-07 17:39:57,578 validate_config_data DEBUG: Validating config file data (filter:ratelimit in /etc/nova/api-paste.ini on nova-cloud-controller/0)...
2015-10-07 17:40:00,623 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 17:40:00,623 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'service_id': u'2d81d5de8a184c9a98375bbd06cfee10', u'id': u'1ee6c2772b6c45008dedcee3c10745ef', u'publicurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.196:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b400aad0e4b34a1eb06b15a009117760', u'service_id': u'479284a6fdf5441fa4551df79577c220', u'internalurl': u'http://172.17.117.196:5000/v2.0', u'publicurl': u'http://172.17.117.196:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.198:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ea6d71b01efa4988bdb52c42fb4643f1', u'service_id': u'408f780b298a41a98b648f0eb33aa8ac', u'internalurl': u'http://172.17.117.198:3333', u'publicurl': u'http://172.17.117.198:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.195:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.195:9292', u'service_id': u'23f4075ff8a6414c931929d488a565fb', u'id': u'222bf4021f394f66afbb7237a17abae4', u'publicurl': u'http://172.17.117.195:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.198:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8773/services/Cloud', u'service_id': u'8bd1e63cc920401c85077a600c06bf7e', u'id': u'bdb7bec47dcb47e29f7611d0eee23607', u'publicurl': u'http://172.17.117.198:8773/services/Cloud'}>]
2015-10-07 17:40:00,623 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'service_id': u'2d81d5de8a184c9a98375bbd06cfee10', u'id': u'1ee6c2772b6c45008dedcee3c10745ef', u'publicurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s'}>
2015-10-07 17:40:00,624 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.196:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b400aad0e4b34a1eb06b15a009117760', u'service_id': u'479284a6fdf5441fa4551df79577c220', u'internalurl': u'http://172.17.117.196:5000/v2.0', u'publicurl': u'http://172.17.117.196:5000/v2.0'}>
2015-10-07 17:40:00,624 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.198:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ea6d71b01efa4988bdb52c42fb4643f1', u'service_id': u'408f780b298a41a98b648f0eb33aa8ac', u'internalurl': u'http://172.17.117.198:3333', u'publicurl': u'http://172.17.117.198:3333'}>
2015-10-07 17:40:00,624 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.195:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.195:9292', u'service_id': u'23f4075ff8a6414c931929d488a565fb', u'id': u'222bf4021f394f66afbb7237a17abae4', u'publicurl': u'http://172.17.117.195:9292'}>
2015-10-07 17:40:00,624 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.198:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8773/services/Cloud', u'service_id': u'8bd1e63cc920401c85077a600c06bf7e', u'id': u'bdb7bec47dcb47e29f7611d0eee23607', u'publicurl': u'http://172.17.117.198:8773/services/Cloud'}>
2015-10-07 17:40:00,624 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.198:8773/services/Cloud', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.198:8773/services/Cloud', 'service_id': u'8bd1e63cc920401c85077a600c06bf7e', 'id': u'bdb7bec47dcb47e29f7611d0eee23607', 'publicurl': u'http://172.17.117.198:8773/services/Cloud'}
2015-10-07 17:40:00,624 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:40:06,701 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.195', u'glance-api-server': u'http://172.17.117.195:9292'}
2015-10-07 17:40:06,701 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'glance-api-server': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:40:06,702 create_cirros_image DEBUG: Creating glance cirros image (cirros-image)...
2015-10-07 17:40:06,702 create_cirros_image DEBUG: AMULET_HTTP_PROXY: http://squid.internal:3128/
2015-10-07 17:40:08,653 resource_reaches_status DEBUG: Image status wait:  expected, actual status = active, active
2015-10-07 17:40:08,654 create_cirros_image DEBUG: Validating image attributes...
2015-10-07 17:40:08,897 create_cirros_image DEBUG: Image attributes - name:cirros-image public:True id:a3d04198-0b43-46a6-a289-61868ff4e97e stat:active container fmt:bare disk fmt:qcow2
2015-10-07 17:40:08,898 create_instance DEBUG: Creating instance (cirros|cirros-image|m1.tiny)
2015-10-07 17:40:15,228 create_instance DEBUG: instance status: BUILD
2015-10-07 17:40:18,302 create_instance DEBUG: instance status: ACTIVE
2015-10-07 17:40:18,374 delete_image WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_image.
2015-10-07 17:40:18,375 delete_image DEBUG: Deleting glance image (<Image {u'status': u'active', u'created_at': u'2015-10-07T17:40:07', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T17:40:08', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'80cb2026c18540feb310bb42f5460b2e', u'is_public': True, u'deleted_at': None, u'id': u'a3d04198-0b43-46a6-a289-61868ff4e97e', u'size': 13287936}>)...
2015-10-07 17:40:18,375 delete_resource DEBUG: Deleting OpenStack resource <Image {u'status': u'active', u'created_at': u'2015-10-07T17:40:07', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T17:40:08', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'80cb2026c18540feb310bb42f5460b2e', u'is_public': True, u'deleted_at': None, u'id': u'a3d04198-0b43-46a6-a289-61868ff4e97e', u'size': 13287936}> (glance image)
2015-10-07 17:40:18,559 delete_resource DEBUG: glance image:  expected, actual count = 0, 0
2015-10-07 17:40:18,560 delete_instance WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_instance.
2015-10-07 17:40:18,560 delete_instance DEBUG: Deleting instance (<Server: cirros>)...
2015-10-07 17:40:18,560 delete_resource DEBUG: Deleting OpenStack resource <Server: cirros> (nova instance)
2015-10-07 17:40:18,921 delete_resource DEBUG: nova instance delete check: 0 [1:1] <Server: cirros>
2015-10-07 17:40:23,115 delete_resource DEBUG: nova instance:  expected, actual count = 0, 0
2015-10-07 17:40:29,213 _validate_dict_data DEBUG: actual: {u'service_protocol': u'http', u'service_tenant': u'services', u'admin_token': u'ubuntutesting', u'service_password': u'fBRCpKZjgjFSLHMKT6y6Y6jt6HHCV7Z3gZxrwB8fMSGHZNFC9sJMSm2d2JSNryLX', u'service_port': u'5000', u'auth_port': u'35357', u'auth_protocol': u'http', u'private-address': u'172.17.117.196', u'auth_host': u'172.17.117.196', u'service_username': u's3_ec2_nova', u'service_tenant_id': u'a0123e5501cc48c7a0f28ae229891c6b', u'service_host': u'172.17.117.196'}
2015-10-07 17:40:29,213 _validate_dict_data DEBUG: expected: {'admin_token': 'ubuntutesting', 'auth_port': '35357', 'auth_protocol': 'http', 'auth_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'service_username': 's3_ec2_nova', 'service_tenant_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'service_protocol': 'http', 'service_tenant': 'services', 'service_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'service_port': '5000', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'service_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:40:37,322 _validate_dict_data DEBUG: actual: {u'nova_allowed_units': u'nova-cloud-controller/0', u'nova_password': u'CtwcKScHFJY9kj2VjFPHhms7wZMBBc3X', u'db_host': u'172.17.117.197', u'private-address': u'172.17.117.197'}
2015-10-07 17:40:37,322 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'nova_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'db_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:40:43,588 _validate_dict_data DEBUG: actual: {u'username': u'nova', u'private-address': u'172.17.117.198', u'vhost': u'openstack'}
2015-10-07 17:40:43,588 _validate_dict_data DEBUG: expected: {'username': 'nova', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'vhost': 'openstack'}
2015-10-07 17:40:50,508 _validate_dict_data DEBUG: actual: {u'volume_service': u'cinder', u'network_manager': u'flatdhcpmanager', u'restart_trigger': u'97d9aaad-193a-4c49-a219-ad783d36c2ee', u'ec2_host': u'172.17.117.198', u'private-address': u'172.17.117.198'}
2015-10-07 17:40:50,509 _validate_dict_data DEBUG: expected: {'volume_service': 'cinder', 'network_manager': 'flatdhcpmanager', 'restart_trigger': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'ec2_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:40:56,436 _validate_dict_data DEBUG: actual: {u'nova_internal_url': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u's3_service': u's3', u'nova_public_url': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'nova_service': u'nova', u's3_public_url': u'http://172.17.117.198:3333', u'ec2_admin_url': u'http://172.17.117.198:8773/services/Cloud', u'ec2_internal_url': u'http://172.17.117.198:8773/services/Cloud', u'ec2_public_url': u'http://172.17.117.198:8773/services/Cloud', u's3_region': u'RegionOne', u'private-address': u'172.17.117.198', u'nova_region': u'RegionOne', u'ec2_service': u'ec2', u's3_internal_url': u'http://172.17.117.198:3333', u's3_admin_url': u'http://172.17.117.198:3333', u'nova_admin_url': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'ec2_region': u'RegionOne'}
2015-10-07 17:40:56,436 _validate_dict_data DEBUG: expected: {'nova_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'nova_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 's3_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 's3_service': 's3', 'ec2_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'ec2_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'nova_service': 'nova', 's3_region': 'RegionOne', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'nova_region': 'RegionOne', 'ec2_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'ec2_service': 'ec2', 'ec2_region': 'RegionOne', 's3_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'nova_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 's3_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:41:03,624 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.198'}
2015-10-07 17:41:03,624 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:41:08,777 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.198', u'nova_hostname': u'172.17.117.198', u'nova_username': u'nova', u'nova_database': u'nova'}
2015-10-07 17:41:08,777 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'nova_hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'nova_username': 'nova', 'nova_database': 'nova'}
2015-10-07 17:41:14,435 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.199'}
2015-10-07 17:41:14,436 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:41:42,865 validate_config_data DEBUG: Validating config file data (DEFAULT in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:41:43,687 validate_config_data DEBUG: Validating config file data (keystone_authtoken in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:41:44,673 validate_config_data DEBUG: Validating config file data (database in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 17:41:45,582 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 17:41:45,583 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'service_id': u'2d81d5de8a184c9a98375bbd06cfee10', u'id': u'1ee6c2772b6c45008dedcee3c10745ef', u'publicurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.196:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b400aad0e4b34a1eb06b15a009117760', u'service_id': u'479284a6fdf5441fa4551df79577c220', u'internalurl': u'http://172.17.117.196:5000/v2.0', u'publicurl': u'http://172.17.117.196:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.198:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ea6d71b01efa4988bdb52c42fb4643f1', u'service_id': u'408f780b298a41a98b648f0eb33aa8ac', u'internalurl': u'http://172.17.117.198:3333', u'publicurl': u'http://172.17.117.198:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.195:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.195:9292', u'service_id': u'23f4075ff8a6414c931929d488a565fb', u'id': u'222bf4021f394f66afbb7237a17abae4', u'publicurl': u'http://172.17.117.195:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.198:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8773/services/Cloud', u'service_id': u'8bd1e63cc920401c85077a600c06bf7e', u'id': u'bdb7bec47dcb47e29f7611d0eee23607', u'publicurl': u'http://172.17.117.198:8773/services/Cloud'}>]
2015-10-07 17:41:45,583 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'service_id': u'2d81d5de8a184c9a98375bbd06cfee10', u'id': u'1ee6c2772b6c45008dedcee3c10745ef', u'publicurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s'}>
2015-10-07 17:41:45,583 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', 'service_id': u'2d81d5de8a184c9a98375bbd06cfee10', 'id': u'1ee6c2772b6c45008dedcee3c10745ef', 'publicurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s'}
2015-10-07 17:41:45,583 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:41:45,583 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.196:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b400aad0e4b34a1eb06b15a009117760', u'service_id': u'479284a6fdf5441fa4551df79577c220', u'internalurl': u'http://172.17.117.196:5000/v2.0', u'publicurl': u'http://172.17.117.196:5000/v2.0'}>
2015-10-07 17:41:45,583 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.198:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ea6d71b01efa4988bdb52c42fb4643f1', u'service_id': u'408f780b298a41a98b648f0eb33aa8ac', u'internalurl': u'http://172.17.117.198:3333', u'publicurl': u'http://172.17.117.198:3333'}>
2015-10-07 17:41:45,583 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.195:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.195:9292', u'service_id': u'23f4075ff8a6414c931929d488a565fb', u'id': u'222bf4021f394f66afbb7237a17abae4', u'publicurl': u'http://172.17.117.195:9292'}>
2015-10-07 17:41:45,584 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.198:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8773/services/Cloud', u'service_id': u'8bd1e63cc920401c85077a600c06bf7e', u'id': u'bdb7bec47dcb47e29f7611d0eee23607', u'publicurl': u'http://172.17.117.198:8773/services/Cloud'}>
2015-10-07 17:41:52,331 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.4', u'password': u'9SC3pGhfC3H3zBngSwb9hWH9YyyHNZZGbqSz9Z9mFPF2j954Kqjqr4SbC2bV5xp9', u'hostname': u'172.17.117.4'}
2015-10-07 17:41:52,331 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:41:52,366 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 17:41:52,366 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'service_id': u'2d81d5de8a184c9a98375bbd06cfee10', u'id': u'1ee6c2772b6c45008dedcee3c10745ef', u'publicurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.196:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b400aad0e4b34a1eb06b15a009117760', u'service_id': u'479284a6fdf5441fa4551df79577c220', u'internalurl': u'http://172.17.117.196:5000/v2.0', u'publicurl': u'http://172.17.117.196:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.198:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ea6d71b01efa4988bdb52c42fb4643f1', u'service_id': u'408f780b298a41a98b648f0eb33aa8ac', u'internalurl': u'http://172.17.117.198:3333', u'publicurl': u'http://172.17.117.198:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.195:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.195:9292', u'service_id': u'23f4075ff8a6414c931929d488a565fb', u'id': u'222bf4021f394f66afbb7237a17abae4', u'publicurl': u'http://172.17.117.195:9292'}>, <Endpoint {u'adminurl': u'http://172.17.117.198:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8773/services/Cloud', u'service_id': u'8bd1e63cc920401c85077a600c06bf7e', u'id': u'bdb7bec47dcb47e29f7611d0eee23607', u'publicurl': u'http://172.17.117.198:8773/services/Cloud'}>]
2015-10-07 17:41:52,366 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s', u'service_id': u'2d81d5de8a184c9a98375bbd06cfee10', u'id': u'1ee6c2772b6c45008dedcee3c10745ef', u'publicurl': u'http://172.17.117.198:8774/v2/$(tenant_id)s'}>
2015-10-07 17:41:52,367 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.196:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b400aad0e4b34a1eb06b15a009117760', u'service_id': u'479284a6fdf5441fa4551df79577c220', u'internalurl': u'http://172.17.117.196:5000/v2.0', u'publicurl': u'http://172.17.117.196:5000/v2.0'}>
2015-10-07 17:41:52,367 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.198:3333', u'region': u'RegionOne', u'enabled': True, u'id': u'ea6d71b01efa4988bdb52c42fb4643f1', u'service_id': u'408f780b298a41a98b648f0eb33aa8ac', u'internalurl': u'http://172.17.117.198:3333', u'publicurl': u'http://172.17.117.198:3333'}>
2015-10-07 17:41:52,367 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.198:3333', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.198:3333', 'service_id': u'408f780b298a41a98b648f0eb33aa8ac', 'id': u'ea6d71b01efa4988bdb52c42fb4643f1', 'publicurl': u'http://172.17.117.198:3333'}
2015-10-07 17:41:52,367 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:41:52,367 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.195:9292', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.195:9292', u'service_id': u'23f4075ff8a6414c931929d488a565fb', u'id': u'222bf4021f394f66afbb7237a17abae4', u'publicurl': u'http://172.17.117.195:9292'}>
2015-10-07 17:41:52,367 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.198:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.198:8773/services/Cloud', u'service_id': u'8bd1e63cc920401c85077a600c06bf7e', u'id': u'bdb7bec47dcb47e29f7611d0eee23607', u'publicurl': u'http://172.17.117.198:8773/services/Cloud'}>
2015-10-07 17:41:52,367 validate_svc_catalog_endpoint_data DEBUG: Validating service catalog endpoint data...
2015-10-07 17:41:52,368 validate_svc_catalog_endpoint_data DEBUG: actual: {u's3': [{u'adminURL': u'http://172.17.117.198:3333', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.198:3333', u'internalURL': u'http://172.17.117.198:3333', u'id': u'5f752be4bdf643f5ba463f43ae000ad2'}], u'image': [{u'adminURL': u'http://172.17.117.195:9292', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.195:9292', u'internalURL': u'http://172.17.117.195:9292', u'id': u'71114098eecc4afd90454891a68862c9'}], u'compute': [{u'adminURL': u'http://172.17.117.198:8774/v2/04ec688b5a304381927e419ce5c5786c', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.198:8774/v2/04ec688b5a304381927e419ce5c5786c', u'internalURL': u'http://172.17.117.198:8774/v2/04ec688b5a304381927e419ce5c5786c', u'id': u'c0c9649b311b4163ba9bbde137e49aa4'}], u'ec2': [{u'adminURL': u'http://172.17.117.198:8773/services/Cloud', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.198:8773/services/Cloud', u'internalURL': u'http://172.17.117.198:8773/services/Cloud', u'id': u'501c03edfcf64bccae3a99c27ed501af'}], u'identity': [{u'adminURL': u'http://172.17.117.196:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.196:5000/v2.0', u'internalURL': u'http://172.17.117.196:5000/v2.0', u'id': u'610bb17b2811498fa0a5b8dfc431fb0d'}]}
2015-10-07 17:41:52,368 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.198:3333', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.198:3333', u'internalURL': u'http://172.17.117.198:3333', u'id': u'5f752be4bdf643f5ba463f43ae000ad2'}
2015-10-07 17:41:52,368 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:41:52,368 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.198:8774/v2/04ec688b5a304381927e419ce5c5786c', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.198:8774/v2/04ec688b5a304381927e419ce5c5786c', u'internalURL': u'http://172.17.117.198:8774/v2/04ec688b5a304381927e419ce5c5786c', u'id': u'c0c9649b311b4163ba9bbde137e49aa4'}
2015-10-07 17:41:52,368 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:41:52,368 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.198:8773/services/Cloud', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.198:8773/services/Cloud', u'internalURL': u'http://172.17.117.198:8773/services/Cloud', u'id': u'501c03edfcf64bccae3a99c27ed501af'}
2015-10-07 17:41:52,368 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:41:52,368 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.196:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.196:5000/v2.0', u'internalURL': u'http://172.17.117.196:5000/v2.0', u'id': u'610bb17b2811498fa0a5b8dfc431fb0d'}
2015-10-07 17:41:52,368 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b9e08816510>>}
2015-10-07 17:41:52,375 validate_services DEBUG: Checking status of system services...
2015-10-07 17:41:52,375 validate_services WARNING: DEPRECATION WARNING:  use validate_services_by_name instead of validate_services due to init system differences.
2015-10-07 17:41:53,438 validate_services DEBUG: glance/0 `status glance-registry` returned 0
2015-10-07 17:41:54,565 validate_services DEBUG: glance/0 `status glance-api` returned 0
2015-10-07 17:41:55,675 validate_services DEBUG: nova-cloud-controller/0 `status nova-conductor` returned 0
2015-10-07 17:41:57,008 validate_services DEBUG: rabbitmq-server/0 `sudo service rabbitmq-server status` returned 0
2015-10-07 17:41:58,020 validate_services DEBUG: nova-compute/0 `status nova-compute` returned 0
2015-10-07 17:41:58,898 validate_services DEBUG: nova-compute/0 `status nova-network` returned 0
2015-10-07 17:41:59,894 validate_services DEBUG: nova-compute/0 `status nova-api` returned 0
2015-10-07 17:42:00,978 validate_services DEBUG: mysql/0 `status mysql` returned 0
2015-10-07 17:42:02,059 validate_services DEBUG: keystone/0 `status keystone` returned 0
2015-10-07 17:42:02,753 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:42:22,773 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:42:23,812 _get_proc_start_time DEBUG: Pid for nova-api-ec2 on nova-cloud-controller/0: 3626
2015-10-07 17:42:26,712 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:42:26,712 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:42:27,591 _get_proc_start_time DEBUG: Pid for nova-api-os-compute on nova-cloud-controller/0: 3629
2015-10-07 17:42:30,270 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:42:30,270 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:42:31,126 _get_proc_start_time DEBUG: Pid for nova-objectstore on nova-cloud-controller/0: 3570
2015-10-07 17:42:34,020 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:42:34,020 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:42:35,136 _get_proc_start_time DEBUG: Pid for nova-cert on nova-cloud-controller/0: 3578
2015-10-07 17:42:38,133 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:42:38,133 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:42:39,263 _get_proc_start_time DEBUG: Pid for nova-scheduler on nova-cloud-controller/0: 3586
2015-10-07 17:42:42,091 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 17:42:42,091 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 17:42:43,168 _get_proc_start_time DEBUG: Pid for nova-conductor on nova-cloud-controller/0: 3624

juju-test.conductor.050-basic-trusty-icehouse-git RESULT  : PASS
juju-test.conductor DEBUG   : Tearing down osci-sv17 juju environment
juju-test.conductor DEBUG   : Calling "juju destroy-environment --force -y osci-sv17"
WARNING cannot delete security group "juju-osci-sv17-0". Used by another environment?
WARNING cannot delete security group "juju-osci-sv17-1". Used by another environment?
juju-test.conductor DEBUG   : Starting a bootstrap for osci-sv17, kill after 300
juju-test.conductor DEBUG   : Running the following: juju bootstrap -e osci-sv17
Bootstrapping environment "osci-sv17"
Starting new instance for initial state server
Launching instance
 - 81375353-5ac6-40d1-a408-98dba4241ab6
Installing Juju agent on bootstrap instance
Waiting for address
Attempting to connect to 172.17.117.5:22
Logging to /var/log/cloud-init-output.log on remote host
Running apt-get update
Running apt-get upgrade
Installing package: curl
Installing package: cpu-checker
Installing package: bridge-utils
Installing package: rsyslog-gnutls
Installing package: cloud-utils
Installing package: cloud-image-utils
Installing package: tmux
Fetching tools: curl -sSfw 'tools from %{url_effective} downloaded: HTTP %{http_code}; time %{time_total}s; size %{size_download} bytes; speed %{speed_download} bytes/s ' --retry 10 -o $bin/tools.tar.gz <[https://streams.canonical.com/juju/tools/releases/juju-1.24.6-trusty-amd64.tgz]>
Bootstrapping Juju machine agent
Starting Juju machine agent (jujud-machine-0)
Bootstrap agent installed
Waiting for API to become available
Waiting for API to become available
Bootstrap complete
juju-test.conductor DEBUG   : Waiting for bootstrap
juju-test.conductor DEBUG   : Still not bootstrapped
juju-test.conductor DEBUG   : Running the following: juju status -e osci-sv17
juju-test.conductor DEBUG   : State for 1.24.6: started
juju-test.conductor.051-basic-trusty-juno-git DEBUG   : Running 051-basic-trusty-juno-git (tests/051-basic-trusty-juno-git)
2015-10-07 17:46:42 Starting deployment of osci-sv17
2015-10-07 17:47:01 Deploying services...
2015-10-07 17:47:01  Deploying service glance using local:trusty/glance
2015-10-07 17:47:06  Deploying service keystone using local:trusty/keystone
2015-10-07 17:47:11  Deploying service mysql using local:trusty/mysql
2015-10-07 17:47:16  Deploying service nova-cloud-controller using /tmp/charm_bdTVR/trusty/nova-cloud-controller
2015-10-07 17:47:32  Deploying service nova-compute using local:trusty/nova-compute
2015-10-07 17:47:39  Deploying service rabbitmq-server using local:trusty/rabbitmq-server
Connection Timeout: disconnecting client after 300.0 seconds
2015-10-07 17:58:06 Adding relations...
2015-10-07 17:58:06  Adding relation nova-cloud-controller:image-service <-> glance:image-service
2015-10-07 17:58:07  Adding relation glance:shared-db <-> mysql:shared-db
2015-10-07 17:58:07  Adding relation nova-cloud-controller:identity-service <-> keystone:identity-service
2015-10-07 17:58:07  Adding relation nova-compute:amqp <-> rabbitmq-server:amqp
2015-10-07 17:58:08  Adding relation nova-cloud-controller:shared-db <-> mysql:shared-db
2015-10-07 17:58:08  Adding relation nova-cloud-controller:cloud-compute <-> nova-compute:cloud-compute
2015-10-07 17:58:09  Adding relation glance:identity-service <-> keystone:identity-service
2015-10-07 17:58:09  Adding relation nova-compute:shared-db <-> mysql:shared-db
2015-10-07 17:58:09  Adding relation glance:amqp <-> rabbitmq-server:amqp
2015-10-07 17:58:09  Adding relation keystone:shared-db <-> mysql:shared-db
2015-10-07 17:58:10  Adding relation nova-cloud-controller:amqp <-> rabbitmq-server:amqp
2015-10-07 17:58:10  Adding relation nova-compute:image-service <-> glance:image-service
2015-10-07 17:59:11 Deployment complete in 748.88 seconds
juju-test.conductor.051-basic-trusty-juno-git DEBUG   : 2015-10-07 18:00:43,389 authenticate_keystone_admin DEBUG: Authenticating keystone admin...
2015-10-07 18:00:50,865 authenticate_glance_admin DEBUG: Authenticating glance admin...
2015-10-07 18:00:50,865 tenant_exists DEBUG: Checking if tenant exists (demoTenant)...
2015-10-07 18:00:51,241 authenticate_keystone_user DEBUG: Authenticating keystone user (demoUser)...
2015-10-07 18:00:51,555 authenticate_nova_user DEBUG: Authenticating nova user (demoUser)...
2015-10-07 18:00:51,556 validate_config_data DEBUG: Validating config file data (filter:ratelimit in /etc/nova/api-paste.ini on nova-cloud-controller/0)...
2015-10-07 18:00:52,489 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 18:00:52,489 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'b3fad49debd140caa82722eae0eed276', u'service_id': u'cf818cd71a464df19f73df1f8b35705e', u'internalurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.7:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b12e36f46112451583a8641b707158aa', u'service_id': u'be193c20f4c840af88430619c0ac3cbf', u'internalurl': u'http://172.17.117.7:5000/v2.0', u'publicurl': u'http://172.17.117.7:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.9:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'd37665d95dc7496fbfc9443921d5bb37', u'service_id': u'ce12ab3ae4d7497f9eb256318443afcc', u'internalurl': u'http://172.17.117.9:8773/services/Cloud', u'publicurl': u'http://172.17.117.9:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.9:3333', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.9:3333', u'service_id': u'e34dec43597b48e7addef58136f73b1f', u'id': u'c93fd782d59042f4b49fa6c88e578c47', u'publicurl': u'http://172.17.117.9:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.6:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'87dc5725884d4704ba6c4ef1bb99b142', u'service_id': u'251ce680646a41da95563b40228fff11', u'internalurl': u'http://172.17.117.6:9292', u'publicurl': u'http://172.17.117.6:9292'}>]
2015-10-07 18:00:52,489 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'b3fad49debd140caa82722eae0eed276', u'service_id': u'cf818cd71a464df19f73df1f8b35705e', u'internalurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s'}>
2015-10-07 18:00:52,489 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.7:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b12e36f46112451583a8641b707158aa', u'service_id': u'be193c20f4c840af88430619c0ac3cbf', u'internalurl': u'http://172.17.117.7:5000/v2.0', u'publicurl': u'http://172.17.117.7:5000/v2.0'}>
2015-10-07 18:00:52,490 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.9:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'd37665d95dc7496fbfc9443921d5bb37', u'service_id': u'ce12ab3ae4d7497f9eb256318443afcc', u'internalurl': u'http://172.17.117.9:8773/services/Cloud', u'publicurl': u'http://172.17.117.9:8773/services/Cloud'}>
2015-10-07 18:00:52,490 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.9:8773/services/Cloud', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.9:8773/services/Cloud', 'service_id': u'ce12ab3ae4d7497f9eb256318443afcc', 'id': u'd37665d95dc7496fbfc9443921d5bb37', 'publicurl': u'http://172.17.117.9:8773/services/Cloud'}
2015-10-07 18:00:52,490 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:00:52,491 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.9:3333', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.9:3333', u'service_id': u'e34dec43597b48e7addef58136f73b1f', u'id': u'c93fd782d59042f4b49fa6c88e578c47', u'publicurl': u'http://172.17.117.9:3333'}>
2015-10-07 18:00:52,491 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.6:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'87dc5725884d4704ba6c4ef1bb99b142', u'service_id': u'251ce680646a41da95563b40228fff11', u'internalurl': u'http://172.17.117.6:9292', u'publicurl': u'http://172.17.117.6:9292'}>
2015-10-07 18:00:57,768 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.6', u'glance-api-server': u'http://172.17.117.6:9292'}
2015-10-07 18:00:57,768 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'glance-api-server': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:00:57,769 create_cirros_image DEBUG: Creating glance cirros image (cirros-image)...
2015-10-07 18:00:57,770 create_cirros_image DEBUG: AMULET_HTTP_PROXY: http://squid.internal:3128/
2015-10-07 18:01:00,066 resource_reaches_status DEBUG: Image status wait:  expected, actual status = active, active
2015-10-07 18:01:00,066 create_cirros_image DEBUG: Validating image attributes...
2015-10-07 18:01:00,207 create_cirros_image DEBUG: Image attributes - name:cirros-image public:True id:d998612f-5ce0-42f3-a07b-45d08bbe8d78 stat:active container fmt:bare disk fmt:qcow2
2015-10-07 18:01:00,207 create_instance DEBUG: Creating instance (cirros|cirros-image|m1.tiny)
2015-10-07 18:01:05,754 create_instance DEBUG: instance status: BUILD
2015-10-07 18:01:08,828 create_instance DEBUG: instance status: ACTIVE
2015-10-07 18:01:08,895 delete_image WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_image.
2015-10-07 18:01:08,896 delete_image DEBUG: Deleting glance image (<Image {u'status': u'active', u'created_at': u'2015-10-07T18:00:59', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T18:00:59', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'468049a17f75421e8d619262e669cb72', u'is_public': True, u'deleted_at': None, u'id': u'd998612f-5ce0-42f3-a07b-45d08bbe8d78', u'size': 13287936}>)...
2015-10-07 18:01:08,896 delete_resource DEBUG: Deleting OpenStack resource <Image {u'status': u'active', u'created_at': u'2015-10-07T18:00:59', u'virtual_size': None, u'name': u'cirros-image', u'deleted': False, u'container_format': u'bare', u'min_ram': 0, u'disk_format': u'qcow2', u'updated_at': u'2015-10-07T18:00:59', u'properties': {}, u'min_disk': 0, u'protected': False, u'checksum': u'ee1eca47dc88f4879d8a229cc70a07c6', u'owner': u'468049a17f75421e8d619262e669cb72', u'is_public': True, u'deleted_at': None, u'id': u'd998612f-5ce0-42f3-a07b-45d08bbe8d78', u'size': 13287936}> (glance image)
2015-10-07 18:01:09,206 delete_resource DEBUG: glance image:  expected, actual count = 0, 0
2015-10-07 18:01:09,207 delete_instance WARNING: /!\ DEPRECATION WARNING:  use delete_resource instead of delete_instance.
2015-10-07 18:01:09,207 delete_instance DEBUG: Deleting instance (<Server: cirros>)...
2015-10-07 18:01:09,207 delete_resource DEBUG: Deleting OpenStack resource <Server: cirros> (nova instance)
2015-10-07 18:01:09,651 delete_resource DEBUG: nova instance delete check: 0 [1:1] <Server: cirros>
2015-10-07 18:01:13,696 delete_resource DEBUG: nova instance:  expected, actual count = 0, 0
2015-10-07 18:01:19,433 _validate_dict_data DEBUG: actual: {u'service_protocol': u'http', u'service_tenant': u'services', u'admin_token': u'ubuntutesting', u'service_password': u'd2bbrBjm3WZ8JCbRGxh9Cq27VbXqy4g8G7bsrYLN379Zz92Z9PW94kgPwZpmkrjX', u'service_port': u'5000', u'auth_port': u'35357', u'auth_protocol': u'http', u'private-address': u'172.17.117.7', u'auth_host': u'172.17.117.7', u'service_username': u's3_ec2_nova', u'service_tenant_id': u'f79c270189bf48738b3e2b40278ad32a', u'service_host': u'172.17.117.7'}
2015-10-07 18:01:19,433 _validate_dict_data DEBUG: expected: {'admin_token': 'ubuntutesting', 'auth_port': '35357', 'auth_protocol': 'http', 'auth_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'service_username': 's3_ec2_nova', 'service_tenant_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'service_protocol': 'http', 'service_tenant': 'services', 'service_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'service_port': '5000', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'service_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:01:28,559 _validate_dict_data DEBUG: actual: {u'nova_allowed_units': u'nova-cloud-controller/0', u'nova_password': u'9zHnspYgMpYSj3dqz7fHh9hSFzMSK5Ly', u'db_host': u'172.17.117.8', u'private-address': u'172.17.117.8'}
2015-10-07 18:01:28,560 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'nova_password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'db_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:01:34,594 _validate_dict_data DEBUG: actual: {u'username': u'nova', u'private-address': u'172.17.117.9', u'vhost': u'openstack'}
2015-10-07 18:01:34,594 _validate_dict_data DEBUG: expected: {'username': 'nova', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'vhost': 'openstack'}
2015-10-07 18:01:40,434 _validate_dict_data DEBUG: actual: {u'volume_service': u'cinder', u'network_manager': u'flatdhcpmanager', u'restart_trigger': u'519ff61e-178f-41e8-9ee1-c0ef66f2c048', u'ec2_host': u'172.17.117.9', u'private-address': u'172.17.117.9'}
2015-10-07 18:01:40,434 _validate_dict_data DEBUG: expected: {'volume_service': 'cinder', 'network_manager': 'flatdhcpmanager', 'restart_trigger': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'ec2_host': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:01:46,259 _validate_dict_data DEBUG: actual: {u'nova_internal_url': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u's3_service': u's3', u'nova_public_url': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'nova_service': u'nova', u's3_public_url': u'http://172.17.117.9:3333', u'ec2_admin_url': u'http://172.17.117.9:8773/services/Cloud', u'ec2_internal_url': u'http://172.17.117.9:8773/services/Cloud', u'ec2_public_url': u'http://172.17.117.9:8773/services/Cloud', u's3_region': u'RegionOne', u'private-address': u'172.17.117.9', u'nova_region': u'RegionOne', u'ec2_service': u'ec2', u's3_internal_url': u'http://172.17.117.9:3333', u's3_admin_url': u'http://172.17.117.9:3333', u'nova_admin_url': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'ec2_region': u'RegionOne'}
2015-10-07 18:01:46,259 _validate_dict_data DEBUG: expected: {'nova_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'nova_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 's3_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 's3_service': 's3', 'ec2_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'ec2_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'nova_service': 'nova', 's3_region': 'RegionOne', 'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'nova_region': 'RegionOne', 'ec2_public_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'ec2_service': 'ec2', 'ec2_region': 'RegionOne', 's3_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'nova_admin_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 's3_internal_url': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:01:51,904 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.9'}
2015-10-07 18:01:51,904 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:01:57,219 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.9', u'nova_hostname': u'172.17.117.9', u'nova_username': u'nova', u'nova_database': u'nova'}
2015-10-07 18:01:57,220 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'nova_hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'nova_username': 'nova', 'nova_database': 'nova'}
2015-10-07 18:02:02,308 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.10'}
2015-10-07 18:02:02,308 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:02:29,518 validate_config_data DEBUG: Validating config file data (DEFAULT in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 18:02:30,549 validate_config_data DEBUG: Validating config file data (keystone_authtoken in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 18:02:31,358 validate_config_data DEBUG: Validating config file data (database in /etc/nova/nova.conf on nova-cloud-controller/0)...
2015-10-07 18:02:32,173 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 18:02:32,173 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'b3fad49debd140caa82722eae0eed276', u'service_id': u'cf818cd71a464df19f73df1f8b35705e', u'internalurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.7:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b12e36f46112451583a8641b707158aa', u'service_id': u'be193c20f4c840af88430619c0ac3cbf', u'internalurl': u'http://172.17.117.7:5000/v2.0', u'publicurl': u'http://172.17.117.7:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.9:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'd37665d95dc7496fbfc9443921d5bb37', u'service_id': u'ce12ab3ae4d7497f9eb256318443afcc', u'internalurl': u'http://172.17.117.9:8773/services/Cloud', u'publicurl': u'http://172.17.117.9:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.9:3333', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.9:3333', u'service_id': u'e34dec43597b48e7addef58136f73b1f', u'id': u'c93fd782d59042f4b49fa6c88e578c47', u'publicurl': u'http://172.17.117.9:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.6:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'87dc5725884d4704ba6c4ef1bb99b142', u'service_id': u'251ce680646a41da95563b40228fff11', u'internalurl': u'http://172.17.117.6:9292', u'publicurl': u'http://172.17.117.6:9292'}>]
2015-10-07 18:02:32,173 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'b3fad49debd140caa82722eae0eed276', u'service_id': u'cf818cd71a464df19f73df1f8b35705e', u'internalurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s'}>
2015-10-07 18:02:32,173 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', 'service_id': u'cf818cd71a464df19f73df1f8b35705e', 'id': u'b3fad49debd140caa82722eae0eed276', 'publicurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s'}
2015-10-07 18:02:32,173 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:02:32,174 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.7:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b12e36f46112451583a8641b707158aa', u'service_id': u'be193c20f4c840af88430619c0ac3cbf', u'internalurl': u'http://172.17.117.7:5000/v2.0', u'publicurl': u'http://172.17.117.7:5000/v2.0'}>
2015-10-07 18:02:32,174 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.9:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'd37665d95dc7496fbfc9443921d5bb37', u'service_id': u'ce12ab3ae4d7497f9eb256318443afcc', u'internalurl': u'http://172.17.117.9:8773/services/Cloud', u'publicurl': u'http://172.17.117.9:8773/services/Cloud'}>
2015-10-07 18:02:32,174 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.9:3333', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.9:3333', u'service_id': u'e34dec43597b48e7addef58136f73b1f', u'id': u'c93fd782d59042f4b49fa6c88e578c47', u'publicurl': u'http://172.17.117.9:3333'}>
2015-10-07 18:02:32,174 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.6:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'87dc5725884d4704ba6c4ef1bb99b142', u'service_id': u'251ce680646a41da95563b40228fff11', u'internalurl': u'http://172.17.117.6:9292', u'publicurl': u'http://172.17.117.6:9292'}>
2015-10-07 18:02:38,991 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.12', u'password': u'H7MCmPXdKWJMnr4XjCbxyxCRSqBTtRVYNbRyVJSjHMdy79gYxVGddKY2pP7gyScn', u'hostname': u'172.17.117.12'}
2015-10-07 18:02:38,991 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'password': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'hostname': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:02:39,013 validate_endpoint_data DEBUG: Validating endpoint data...
2015-10-07 18:02:39,014 validate_endpoint_data DEBUG: actual: [<Endpoint {u'adminurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'b3fad49debd140caa82722eae0eed276', u'service_id': u'cf818cd71a464df19f73df1f8b35705e', u'internalurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s'}>, <Endpoint {u'adminurl': u'http://172.17.117.7:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b12e36f46112451583a8641b707158aa', u'service_id': u'be193c20f4c840af88430619c0ac3cbf', u'internalurl': u'http://172.17.117.7:5000/v2.0', u'publicurl': u'http://172.17.117.7:5000/v2.0'}>, <Endpoint {u'adminurl': u'http://172.17.117.9:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'd37665d95dc7496fbfc9443921d5bb37', u'service_id': u'ce12ab3ae4d7497f9eb256318443afcc', u'internalurl': u'http://172.17.117.9:8773/services/Cloud', u'publicurl': u'http://172.17.117.9:8773/services/Cloud'}>, <Endpoint {u'adminurl': u'http://172.17.117.9:3333', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.9:3333', u'service_id': u'e34dec43597b48e7addef58136f73b1f', u'id': u'c93fd782d59042f4b49fa6c88e578c47', u'publicurl': u'http://172.17.117.9:3333'}>, <Endpoint {u'adminurl': u'http://172.17.117.6:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'87dc5725884d4704ba6c4ef1bb99b142', u'service_id': u'251ce680646a41da95563b40228fff11', u'internalurl': u'http://172.17.117.6:9292', u'publicurl': u'http://172.17.117.6:9292'}>]
2015-10-07 18:02:39,014 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'region': u'RegionOne', u'enabled': True, u'id': u'b3fad49debd140caa82722eae0eed276', u'service_id': u'cf818cd71a464df19f73df1f8b35705e', u'internalurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s', u'publicurl': u'http://172.17.117.9:8774/v2/$(tenant_id)s'}>
2015-10-07 18:02:39,014 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.7:35357/v2.0', u'region': u'RegionOne', u'enabled': True, u'id': u'b12e36f46112451583a8641b707158aa', u'service_id': u'be193c20f4c840af88430619c0ac3cbf', u'internalurl': u'http://172.17.117.7:5000/v2.0', u'publicurl': u'http://172.17.117.7:5000/v2.0'}>
2015-10-07 18:02:39,014 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.9:8773/services/Cloud', u'region': u'RegionOne', u'enabled': True, u'id': u'd37665d95dc7496fbfc9443921d5bb37', u'service_id': u'ce12ab3ae4d7497f9eb256318443afcc', u'internalurl': u'http://172.17.117.9:8773/services/Cloud', u'publicurl': u'http://172.17.117.9:8773/services/Cloud'}>
2015-10-07 18:02:39,014 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.9:3333', u'region': u'RegionOne', u'enabled': True, u'internalurl': u'http://172.17.117.9:3333', u'service_id': u'e34dec43597b48e7addef58136f73b1f', u'id': u'c93fd782d59042f4b49fa6c88e578c47', u'publicurl': u'http://172.17.117.9:3333'}>
2015-10-07 18:02:39,014 _validate_dict_data DEBUG: actual: {'adminurl': u'http://172.17.117.9:3333', 'region': u'RegionOne', 'internalurl': u'http://172.17.117.9:3333', 'service_id': u'e34dec43597b48e7addef58136f73b1f', 'id': u'c93fd782d59042f4b49fa6c88e578c47', 'publicurl': u'http://172.17.117.9:3333'}
2015-10-07 18:02:39,014 _validate_dict_data DEBUG: expected: {'adminurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'region': 'RegionOne', 'internalurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'service_id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'publicurl': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:02:39,015 validate_endpoint_data DEBUG: endpoint: <Endpoint {u'adminurl': u'http://172.17.117.6:9292', u'region': u'RegionOne', u'enabled': True, u'id': u'87dc5725884d4704ba6c4ef1bb99b142', u'service_id': u'251ce680646a41da95563b40228fff11', u'internalurl': u'http://172.17.117.6:9292', u'publicurl': u'http://172.17.117.6:9292'}>
2015-10-07 18:02:39,015 validate_svc_catalog_endpoint_data DEBUG: Validating service catalog endpoint data...
2015-10-07 18:02:39,015 validate_svc_catalog_endpoint_data DEBUG: actual: {u's3': [{u'adminURL': u'http://172.17.117.9:3333', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.9:3333', u'internalURL': u'http://172.17.117.9:3333', u'id': u'01309cfdda2f4efcb42dcb9e56614a4d'}], u'image': [{u'adminURL': u'http://172.17.117.6:9292', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.6:9292', u'internalURL': u'http://172.17.117.6:9292', u'id': u'1aacd8f1456e4e1eb28098b40eff3c44'}], u'compute': [{u'adminURL': u'http://172.17.117.9:8774/v2/96919090cdf74961ae7c5cda305cecb9', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.9:8774/v2/96919090cdf74961ae7c5cda305cecb9', u'internalURL': u'http://172.17.117.9:8774/v2/96919090cdf74961ae7c5cda305cecb9', u'id': u'534c706d233a40d78e66fe069e08fd7b'}], u'ec2': [{u'adminURL': u'http://172.17.117.9:8773/services/Cloud', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.9:8773/services/Cloud', u'internalURL': u'http://172.17.117.9:8773/services/Cloud', u'id': u'3b4f1713181d44639243839509430f15'}], u'identity': [{u'adminURL': u'http://172.17.117.7:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.7:5000/v2.0', u'internalURL': u'http://172.17.117.7:5000/v2.0', u'id': u'465fc36b1de4445e88745b00b0271fa6'}]}
2015-10-07 18:02:39,015 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.9:3333', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.9:3333', u'internalURL': u'http://172.17.117.9:3333', u'id': u'01309cfdda2f4efcb42dcb9e56614a4d'}
2015-10-07 18:02:39,015 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:02:39,015 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.9:8774/v2/96919090cdf74961ae7c5cda305cecb9', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.9:8774/v2/96919090cdf74961ae7c5cda305cecb9', u'internalURL': u'http://172.17.117.9:8774/v2/96919090cdf74961ae7c5cda305cecb9', u'id': u'534c706d233a40d78e66fe069e08fd7b'}
2015-10-07 18:02:39,015 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:02:39,016 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.9:8773/services/Cloud', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.9:8773/services/Cloud', u'internalURL': u'http://172.17.117.9:8773/services/Cloud', u'id': u'3b4f1713181d44639243839509430f15'}
2015-10-07 18:02:39,016 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:02:39,016 _validate_dict_data DEBUG: actual: {u'adminURL': u'http://172.17.117.7:35357/v2.0', u'region': u'RegionOne', u'publicURL': u'http://172.17.117.7:5000/v2.0', u'internalURL': u'http://172.17.117.7:5000/v2.0', u'id': u'465fc36b1de4445e88745b00b0271fa6'}
2015-10-07 18:02:39,016 _validate_dict_data DEBUG: expected: {'adminURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'region': 'RegionOne', 'id': <bound method OpenStackAmuletUtils.not_null of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'internalURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>, 'publicURL': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b8871a10550>>}
2015-10-07 18:02:39,016 validate_services DEBUG: Checking status of system services...
2015-10-07 18:02:39,016 validate_services WARNING: DEPRECATION WARNING:  use validate_services_by_name instead of validate_services due to init system differences.
2015-10-07 18:02:40,381 validate_services DEBUG: rabbitmq-server/0 `sudo service rabbitmq-server status` returned 0
2015-10-07 18:02:41,478 validate_services DEBUG: nova-cloud-controller/0 `status nova-conductor` returned 0
2015-10-07 18:02:42,562 validate_services DEBUG: nova-compute/0 `status nova-compute` returned 0
2015-10-07 18:02:43,695 validate_services DEBUG: nova-compute/0 `status nova-network` returned 0
2015-10-07 18:02:44,738 validate_services DEBUG: nova-compute/0 `status nova-api` returned 0
2015-10-07 18:02:45,742 validate_services DEBUG: mysql/0 `status mysql` returned 0
2015-10-07 18:02:46,808 validate_services DEBUG: keystone/0 `status keystone` returned 0
2015-10-07 18:02:48,006 validate_services DEBUG: glance/0 `status glance-registry` returned 0
2015-10-07 18:02:48,898 validate_services DEBUG: glance/0 `status glance-api` returned 0
2015-10-07 18:02:49,449 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 18:03:09,455 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 18:03:10,771 _get_proc_start_time DEBUG: Pid for nova-api-ec2 on nova-cloud-controller/0: 5146
2015-10-07 18:03:13,764 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 18:03:13,764 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 18:03:14,818 _get_proc_start_time DEBUG: Pid for nova-api-os-compute on nova-cloud-controller/0: 5153
2015-10-07 18:03:17,870 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 18:03:17,870 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 18:03:18,924 _get_proc_start_time DEBUG: Pid for nova-objectstore on nova-cloud-controller/0: 5093
2015-10-07 18:03:21,792 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 18:03:21,793 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 18:03:22,788 _get_proc_start_time DEBUG: Pid for nova-cert on nova-cloud-controller/0: 5101
2015-10-07 18:03:25,756 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 18:03:25,757 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 18:03:26,788 _get_proc_start_time DEBUG: Pid for nova-scheduler on nova-cloud-controller/0: 5109
2015-10-07 18:03:29,552 service_restarted WARNING: DEPRECATION WARNING:  use validate_service_config_changed instead of service_restarted due to known races.
2015-10-07 18:03:29,553 _get_proc_start_time WARNING: DEPRECATION WARNING:  pgrep_full bool is no longer implemented re: lp 1474030.
2015-10-07 18:03:30,673 _get_proc_start_time DEBUG: Pid for nova-conductor on nova-cloud-controller/0: 5144

juju-test.conductor.051-basic-trusty-juno-git RESULT  : PASS
juju-test.conductor DEBUG   : Tearing down osci-sv17 juju environment
juju-test.conductor DEBUG   : Calling "juju destroy-environment --force -y osci-sv17"
WARNING cannot delete security group "juju-osci-sv17-0". Used by another environment?
juju-test.conductor DEBUG   : Starting a bootstrap for osci-sv17, kill after 300
juju-test.conductor DEBUG   : Running the following: juju bootstrap -e osci-sv17
Bootstrapping environment "osci-sv17"
Starting new instance for initial state server
Launching instance
 - 2c4e4297-fed1-48cc-804e-5a2e242a89ec
Installing Juju agent on bootstrap instance
Waiting for address
Attempting to connect to 172.17.117.13:22
Logging to /var/log/cloud-init-output.log on remote host
Running apt-get update
Running apt-get upgrade
Installing package: curl
Installing package: cpu-checker
Installing package: bridge-utils
Installing package: rsyslog-gnutls
Installing package: cloud-utils
Installing package: cloud-image-utils
Installing package: tmux
Fetching tools: curl -sSfw 'tools from %{url_effective} downloaded: HTTP %{http_code}; time %{time_total}s; size %{size_download} bytes; speed %{speed_download} bytes/s ' --retry 10 -o $bin/tools.tar.gz <[https://streams.canonical.com/juju/tools/releases/juju-1.24.6-trusty-amd64.tgz]>
Bootstrapping Juju machine agent
Starting Juju machine agent (jujud-machine-0)
Bootstrap agent installed
Waiting for API to become available
Waiting for API to become available
Waiting for API to become available
Bootstrap complete
juju-test.conductor DEBUG   : Waiting for bootstrap
juju-test.conductor DEBUG   : Still not bootstrapped
juju-test.conductor DEBUG   : Running the following: juju status -e osci-sv17
juju-test.conductor DEBUG   : State for 1.24.6: started
juju-test.conductor.052-basic-trusty-kilo-git DEBUG   : Running 052-basic-trusty-kilo-git (tests/052-basic-trusty-kilo-git)
2015-10-07 18:06:45 Starting deployment of osci-sv17
2015-10-07 18:07:05 Deploying services...
2015-10-07 18:07:05  Deploying service glance using local:trusty/glance
2015-10-07 18:07:11  Deploying service keystone using local:trusty/keystone
2015-10-07 18:07:15  Deploying service mysql using local:trusty/mysql
2015-10-07 18:07:20  Deploying service nova-cloud-controller using /tmp/charmHEDI9X/trusty/nova-cloud-controller
2015-10-07 18:07:35  Deploying service nova-compute using local:trusty/nova-compute
2015-10-07 18:07:42  Deploying service rabbitmq-server using local:trusty/rabbitmq-server
Connection Timeout: disconnecting client after 300.0 seconds
2015-10-07 18:18:19 Adding relations...
2015-10-07 18:18:19  Adding relation nova-cloud-controller:image-service <-> glance:image-service
2015-10-07 18:18:19  Adding relation glance:shared-db <-> mysql:shared-db
2015-10-07 18:18:20  Adding relation nova-cloud-controller:identity-service <-> keystone:identity-service
2015-10-07 18:18:20  Adding relation nova-compute:amqp <-> rabbitmq-server:amqp
2015-10-07 18:18:20  Adding relation nova-cloud-controller:shared-db <-> mysql:shared-db
2015-10-07 18:18:21  Adding relation nova-cloud-controller:cloud-compute <-> nova-compute:cloud-compute
2015-10-07 18:18:21  Adding relation glance:identity-service <-> keystone:identity-service
2015-10-07 18:18:21  Adding relation nova-compute:shared-db <-> mysql:shared-db
2015-10-07 18:18:22  Adding relation glance:amqp <-> rabbitmq-server:amqp
2015-10-07 18:18:22  Adding relation keystone:shared-db <-> mysql:shared-db
2015-10-07 18:18:22  Adding relation nova-cloud-controller:amqp <-> rabbitmq-server:amqp
2015-10-07 18:18:23  Adding relation nova-compute:image-service <-> glance:image-service
2015-10-07 18:19:23 Deployment complete in 758.27 seconds
Traceback (most recent call last):
  File "tests/052-basic-trusty-kilo-git", line 12, in <module>
    deployment.run_tests()
  File "/var/lib/jenkins/checkout/nova-cloud-controller/tests/charmhelpers/contrib/amulet/deployment.py", line 95, in run_tests
    getattr(self, test)()
  File "/var/lib/jenkins/checkout/nova-cloud-controller/tests/basic_deployment.py", line 638, in test_image_instance_create
    "m1.tiny")
  File "/var/lib/jenkins/checkout/nova-cloud-controller/tests/charmhelpers/contrib/openstack/amulet/utils.py", line 322, in create_instance
    image = nova.images.find(name=image_name)
  File "/usr/lib/python2.7/dist-packages/novaclient/base.py", line 190, in find
    matches = self.findall(**kwargs)
  File "/usr/lib/python2.7/dist-packages/novaclient/base.py", line 237, in findall
    found.append(self.get(obj.id))
  File "/usr/lib/python2.7/dist-packages/novaclient/v1_1/images.py", line 53, in get
    return self._get("/images/%s" % base.getid(image), "image")
  File "/usr/lib/python2.7/dist-packages/novaclient/base.py", line 147, in _get
    _resp, body = self.api.client.get(url)
  File "/usr/lib/python2.7/dist-packages/novaclient/client.py", line 283, in get
    return self._cs_request(url, 'GET', **kwargs)
  File "/usr/lib/python2.7/dist-packages/novaclient/client.py", line 260, in _cs_request
    **kwargs)
  File "/usr/lib/python2.7/dist-packages/novaclient/client.py", line 242, in _time_request
    resp, body = self.request(url, method, **kwargs)
  File "/usr/lib/python2.7/dist-packages/novaclient/client.py", line 236, in request
    raise exceptions.from_response(resp, body, url, method)
novaclient.exceptions.ClientException: The server has either erred or is incapable of performing the requested operation. (HTTP 500) (Request-ID: req-9012c70b-3139-498a-89e1-33723d426b74)
juju-test.conductor.052-basic-trusty-kilo-git DEBUG   : 2015-10-07 18:22:41,094 authenticate_keystone_admin DEBUG: Authenticating keystone admin...
2015-10-07 18:22:48,246 authenticate_glance_admin DEBUG: Authenticating glance admin...
2015-10-07 18:22:48,247 tenant_exists DEBUG: Checking if tenant exists (demoTenant)...
2015-10-07 18:22:48,537 authenticate_keystone_user DEBUG: Authenticating keystone user (demoUser)...
2015-10-07 18:22:48,827 authenticate_nova_user DEBUG: Authenticating nova user (demoUser)...
2015-10-07 18:22:48,828 validate_config_data DEBUG: Validating config file data (filter:ratelimit in /etc/nova/api-paste.ini on nova-cloud-controller/0)...
2015-10-07 18:22:56,778 _validate_dict_data DEBUG: actual: {u'private-address': u'172.17.117.14', u'glance-api-server': u'http://172.17.117.14:9292'}
2015-10-07 18:22:56,779 _validate_dict_data DEBUG: expected: {'private-address': <bound method OpenStackAmuletUtils.valid_ip of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b324f2cf550>>, 'glance-api-server': <bound method OpenStackAmuletUtils.valid_url of <charmhelpers.contrib.openstack.amulet.utils.OpenStackAmuletUtils object at 0x2b324f2cf550>>}
2015-10-07 18:22:56,781 create_cirros_image DEBUG: Creating glance cirros image (cirros-image)...
2015-10-07 18:22:56,781 create_cirros_image DEBUG: AMULET_HTTP_PROXY: http://squid.internal:3128/
2015-10-07 18:22:59,729 resource_reaches_status DEBUG: Image status wait:  expected, actual status = active, active
2015-10-07 18:22:59,729 create_cirros_image DEBUG: Validating image attributes...
2015-10-07 18:22:59,890 create_cirros_image DEBUG: Image attributes - name:cirros-image public:True id:b93be4f5-287e-499f-882c-cc42c175fe8a stat:active container fmt:bare disk fmt:qcow2
2015-10-07 18:22:59,890 create_instance DEBUG: Creating instance (cirros|cirros-image|m1.tiny)

juju-test.conductor.052-basic-trusty-kilo-git DEBUG   : Got exit code: 1
juju-test.conductor.052-basic-trusty-kilo-git RESULT  : FAIL
juju-test.conductor INFO    : Breaking here as requested by --set-e
juju-test INFO    : Results: 8 passed, 1 failed, 0 errored
ERROR subprocess encountered error code 1
make: *** [test] Error 1
ERROR:root:Make target returned non-zero.
Download as text