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 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698
|
[DEFAULT]
#
# From nova
#
# Number of times to retry live-migration before failing. If == -1, try until
# out of hosts. If == 0, only try once, no retries. (integer value)
#migrate_max_retries=-1
# The topic console auth proxy nodes listen on (string value)
#consoleauth_topic=consoleauth
# The driver to use for database access (string value)
#db_driver=nova.db
# Backend to use for IPv6 generation (string value)
#ipv6_backend=rfc2462
# The driver for servicegroup service (valid options are: db, zk, mc) (string
# value)
#servicegroup_driver=db
# The availability_zone to show internal services under (string value)
#internal_service_availability_zone=internal
internal_service_availability_zone=internal
# Default compute node availability_zone (string value)
#default_availability_zone=nova
default_availability_zone=nova
# The topic cert nodes listen on (string value)
#cert_topic=cert
# Image ID used when starting up a cloudpipe vpn server (string value)
#vpn_image_id=0
# Flavor for vpn instances (string value)
#vpn_flavor=m1.tiny
# Template for cloudpipe instance boot script (string value)
#boot_script_template=$pybasedir/nova/cloudpipe/bootscript.template
# Network to push into openvpn config (string value)
#dmz_net=10.0.0.0
# Netmask to push into openvpn config (string value)
#dmz_mask=255.255.255.0
# Suffix to add to project name for vpn key and secgroups (string value)
#vpn_key_suffix=-vpn
# Record sessions to FILE.[session_number] (boolean value)
#record=false
# Become a daemon (background process) (boolean value)
#daemon=false
# Disallow non-encrypted connections (boolean value)
#ssl_only=false
# Source is ipv6 (boolean value)
#source_is_ipv6=false
# SSL certificate file (string value)
#cert=self.pem
# SSL key file (if separate from cert) (string value)
#key=<None>
# Run webserver on same port. Serve files from DIR. (string value)
#web=/usr/share/spice-html5
# Host on which to listen for incoming requests (string value)
#novncproxy_host=0.0.0.0
novncproxy_host=0.0.0.0
# Port on which to listen for incoming requests (integer value)
# Minimum value: 1
# Maximum value: 65535
#novncproxy_port=6080
novncproxy_port=6080
# Host on which to listen for incoming requests (string value)
#serialproxy_host=0.0.0.0
# Port on which to listen for incoming requests (integer value)
# Minimum value: 1
# Maximum value: 65535
#serialproxy_port=6083
# Host on which to listen for incoming requests (string value)
#html5proxy_host=0.0.0.0
# Port on which to listen for incoming requests (integer value)
# Minimum value: 1
# Maximum value: 65535
#html5proxy_port=6082
# Driver to use for the console proxy (string value)
#console_driver=nova.console.xvp.XVPConsoleProxy
# Stub calls to compute worker for tests (boolean value)
#stub_compute=false
# Publicly visible name for this console host (string value)
#console_public_hostname=x86-017.build.eng.bos.redhat.com
# The topic console proxy nodes listen on (string value)
#console_topic=console
# XVP conf template (string value)
#console_xvp_conf_template=$pybasedir/nova/console/xvp.conf.template
# Generated XVP conf file (string value)
#console_xvp_conf=/etc/xvp.conf
# XVP master process pid file (string value)
#console_xvp_pid=/var/run/xvp.pid
# XVP log file (string value)
#console_xvp_log=/var/log/xvp.log
# Port for XVP to multiplex VNC connections on (integer value)
# Minimum value: 1
# Maximum value: 65535
#console_xvp_multiplex_port=5900
# How many seconds before deleting tokens (integer value)
#console_token_ttl=600
# Filename of root CA (string value)
#ca_file=cacert.pem
# Filename of private key (string value)
#key_file=private/cakey.pem
# Filename of root Certificate Revocation List (string value)
#crl_file=crl.pem
# Where we keep our keys (string value)
#keys_path=$state_path/keys
# Where we keep our root CA (string value)
#ca_path=$state_path/CA
# Should we use a CA for each project? (boolean value)
#use_project_ca=false
# Subject for certificate for users, %s for project, user, timestamp (string
# value)
#user_cert_subject=/C=US/ST=California/O=OpenStack/OU=NovaDev/CN=%.16s-%.16s-%s
# Subject for certificate for projects, %s for project, timestamp (string
# value)
#project_cert_subject=/C=US/ST=California/O=OpenStack/OU=NovaDev/CN=project-ca-%.16s-%s
# Services to be added to the available pool on create (boolean value)
#enable_new_services=true
# Template string to be used to generate instance names (string value)
#instance_name_template=instance-%08x
# Template string to be used to generate snapshot names (string value)
#snapshot_name_template=snapshot-%s
# When set, compute API will consider duplicate hostnames invalid within the
# specified scope, regardless of case. Should be empty, "project" or "global".
# (string value)
#osapi_compute_unique_server_name_scope =
# Make exception message format errors fatal (boolean value)
#fatal_exception_format_errors=false
# Parent directory for tempdir used for image decryption (string value)
#image_decryption_dir=/tmp
# Hostname or IP for OpenStack to use when accessing the S3 api (string value)
#s3_host=$my_ip
# Port used when accessing the S3 api (integer value)
# Minimum value: 1
# Maximum value: 65535
#s3_port=3333
# Access key to use for S3 server for images (string value)
#s3_access_key=notchecked
# Secret key to use for S3 server for images (string value)
#s3_secret_key=notchecked
# Whether to use SSL when talking to S3 (boolean value)
#s3_use_ssl=false
# Whether to affix the tenant id to the access key when downloading from S3
# (boolean value)
#s3_affix_tenant=false
# IP address of this host (string value)
#my_ip=10.16.48.92
# Block storage IP address of this host (string value)
#my_block_storage_ip=$my_ip
# Name of this node. This can be an opaque identifier. It is not necessarily
# a hostname, FQDN, or IP address. However, the node name must be valid within
# an AMQP key, and if using ZeroMQ, a valid hostname, FQDN, or IP address
# (string value)
#host=x86-017.build.eng.bos.redhat.com
# Use IPv6 (boolean value)
#use_ipv6=false
use_ipv6=False
# If set, send compute.instance.update notifications on instance state changes.
# Valid values are None for no notifications, "vm_state" for notifications on
# VM state changes, or "vm_and_task_state" for notifications on VM and task
# state changes. (string value)
#notify_on_state_change=<None>
# If set, send api.fault notifications on caught exceptions in the API service.
# (boolean value)
#notify_api_faults=false
notify_api_faults=False
# Default notification level for outgoing notifications (string value)
# Allowed values: DEBUG, INFO, WARN, ERROR, CRITICAL
#default_notification_level=INFO
# Default publisher_id for outgoing notifications (string value)
#default_publisher_id=<None>
# DEPRECATED: THIS VALUE SHOULD BE SET WHEN CREATING THE NETWORK. If True in
# multi_host mode, all compute hosts share the same dhcp address. The same IP
# address used for DHCP will be added on each nova-network node which is only
# visible to the vms on the same host. (boolean value)
#share_dhcp_address=false
# DEPRECATED: THIS VALUE SHOULD BE SET WHEN CREATING THE NETWORK. MTU setting
# for network interface. (integer value)
#network_device_mtu=<None>
# Path to S3 buckets (string value)
#buckets_path=$state_path/buckets
# IP address for S3 API to listen (string value)
#s3_listen=0.0.0.0
# Port for S3 API to listen (integer value)
# Minimum value: 1
# Maximum value: 65535
#s3_listen_port=3333
# Directory where the nova python module is installed (string value)
#pybasedir=/builddir/build/BUILD/nova-12.0.2
# Directory where nova binaries are installed (string value)
#bindir=/usr/local/bin
# Top-level directory for maintaining nova's state (string value)
#state_path=/var/lib/nova
state_path=/var/lib/nova
# An alias for a PCI passthrough device requirement. This allows users to
# specify the alias in the extra_spec for a flavor, without needing to repeat
# all the PCI property requirements. For example: pci_alias = { "name":
# "QuickAssist", "product_id": "0443", "vendor_id": "8086",
# "device_type": "ACCEL" } defines an alias for the Intel QuickAssist card.
# (multi valued) (multi valued)
#pci_alias =
# White list of PCI devices available to VMs. For example:
# pci_passthrough_whitelist = [{"vendor_id": "8086", "product_id": "0443"}]
# (multi valued)
#pci_passthrough_whitelist =
# Number of instances allowed per project (integer value)
#quota_instances=10
# Number of instance cores allowed per project (integer value)
#quota_cores=20
# Megabytes of instance RAM allowed per project (integer value)
#quota_ram=51200
# Number of floating IPs allowed per project (integer value)
#quota_floating_ips=10
# Number of fixed IPs allowed per project (this should be at least the number
# of instances allowed) (integer value)
#quota_fixed_ips=-1
# Number of metadata items allowed per instance (integer value)
#quota_metadata_items=128
# Number of injected files allowed (integer value)
#quota_injected_files=5
# Number of bytes allowed per injected file (integer value)
#quota_injected_file_content_bytes=10240
# Length of injected file path (integer value)
#quota_injected_file_path_length=255
# Number of security groups per project (integer value)
#quota_security_groups=10
# Number of security rules per security group (integer value)
#quota_security_group_rules=20
# Number of key pairs per user (integer value)
#quota_key_pairs=100
# Number of server groups per project (integer value)
#quota_server_groups=10
# Number of servers per server group (integer value)
#quota_server_group_members=10
# Number of seconds until a reservation expires (integer value)
#reservation_expire=86400
# Count of reservations until usage is refreshed. This defaults to 0(off) to
# avoid additional load but it is useful to turn on to help keep quota usage up
# to date and reduce the impact of out of sync usage issues. (integer value)
#until_refresh=0
# Number of seconds between subsequent usage refreshes. This defaults to 0(off)
# to avoid additional load but it is useful to turn on to help keep quota usage
# up to date and reduce the impact of out of sync usage issues. Note that
# quotas are not updated on a periodic task, they will update on a new
# reservation if max_age has passed since the last reservation (integer value)
#max_age=0
# Default driver to use for quota checks (string value)
#quota_driver=nova.quota.DbQuotaDriver
# Seconds between nodes reporting state to datastore (integer value)
#report_interval=10
report_interval=10
# Enable periodic tasks (boolean value)
#periodic_enable=true
# Range of seconds to randomly delay when starting the periodic task scheduler
# to reduce stampeding. (Disable by setting to 0) (integer value)
#periodic_fuzzy_delay=60
# A list of APIs to enable by default (list value)
#enabled_apis=ec2,osapi_compute,metadata
enabled_apis=ec2,osapi_compute,metadata
# A list of APIs with enabled SSL (list value)
#enabled_ssl_apis =
# The IP address on which the EC2 API will listen. (string value)
#ec2_listen=0.0.0.0
ec2_listen=0.0.0.0
# The port on which the EC2 API will listen. (integer value)
# Minimum value: 1
# Maximum value: 65535
#ec2_listen_port=8773
ec2_listen_port=8773
# Number of workers for EC2 API service. The default will be equal to the
# number of CPUs available. (integer value)
#ec2_workers=<None>
ec2_workers=12
# The IP address on which the OpenStack API will listen. (string value)
#osapi_compute_listen=0.0.0.0
osapi_compute_listen=0.0.0.0
# The port on which the OpenStack API will listen. (integer value)
# Minimum value: 1
# Maximum value: 65535
#osapi_compute_listen_port=8774
osapi_compute_listen_port=8774
# Number of workers for OpenStack API service. The default will be the number
# of CPUs available. (integer value)
#osapi_compute_workers=<None>
osapi_compute_workers=12
# OpenStack metadata service manager (string value)
#metadata_manager=nova.api.manager.MetadataManager
# The IP address on which the metadata API will listen. (string value)
#metadata_listen=0.0.0.0
metadata_listen=0.0.0.0
# The port on which the metadata API will listen. (integer value)
# Minimum value: 1
# Maximum value: 65535
#metadata_listen_port=8775
metadata_listen_port=8775
# Number of workers for metadata service. The default will be the number of
# CPUs available. (integer value)
#metadata_workers=<None>
metadata_workers=12
# Full class name for the Manager for compute (string value)
#compute_manager=nova.compute.manager.ComputeManager
compute_manager=nova.compute.manager.ComputeManager
# Full class name for the Manager for console proxy (string value)
#console_manager=nova.console.manager.ConsoleProxyManager
# Manager for console auth (string value)
#consoleauth_manager=nova.consoleauth.manager.ConsoleAuthManager
# Full class name for the Manager for cert (string value)
#cert_manager=nova.cert.manager.CertManager
# Full class name for the Manager for network (string value)
#network_manager=nova.network.manager.FlatDHCPManager
# Full class name for the Manager for scheduler (string value)
#scheduler_manager=nova.scheduler.manager.SchedulerManager
# Maximum time since last check-in for up service (integer value)
#service_down_time=60
service_down_time=60
# Whether to log monkey patching (boolean value)
#monkey_patch=false
# List of modules/decorators to monkey patch (list value)
#monkey_patch_modules=nova.api.ec2.cloud:nova.notifications.notify_decorator,nova.compute.api:nova.notifications.notify_decorator
# Length of generated instance admin passwords (integer value)
#password_length=12
# Time period to generate instance usages for. Time period must be hour, day,
# month or year (string value)
#instance_usage_audit_period=month
# Start and use a daemon that can run the commands that need to be run with
# root privileges. This option is usually enabled on nodes that run nova
# compute processes (boolean value)
#use_rootwrap_daemon=false
# Path to the rootwrap configuration file to use for running commands as root
# (string value)
#rootwrap_config=/etc/nova/rootwrap.conf
rootwrap_config=/etc/nova/rootwrap.conf
# Explicitly specify the temporary working directory (string value)
#tempdir=<None>
# Port that the XCP VNC proxy should bind to (integer value)
# Minimum value: 1
# Maximum value: 65535
#xvpvncproxy_port=6081
# Address that the XCP VNC proxy should bind to (string value)
#xvpvncproxy_host=0.0.0.0
# The full class name of the volume API class to use (string value)
#volume_api_class=nova.volume.cinder.API
volume_api_class=nova.volume.cinder.API
# File name for the paste.deploy config for nova-api (string value)
#api_paste_config=api-paste.ini
api_paste_config=api-paste.ini
# A python format string that is used as the template to generate log lines.
# The following values can be formatted into it: client_ip, date_time,
# request_line, status_code, body_length, wall_seconds. (string value)
#wsgi_log_format=%(client_ip)s "%(request_line)s" status: %(status_code)s len: %(body_length)s time: %(wall_seconds).7f
# The HTTP header used to determine the scheme for the original request, even
# if it was removed by an SSL terminating proxy. Typical value is
# "HTTP_X_FORWARDED_PROTO". (string value)
#secure_proxy_ssl_header=<None>
# CA certificate file to use to verify connecting clients (string value)
#ssl_ca_file=<None>
# SSL certificate of API server (string value)
#ssl_cert_file=<None>
# SSL private key of API server (string value)
#ssl_key_file=<None>
# Sets the value of TCP_KEEPIDLE in seconds for each server socket. Not
# supported on OS X. (integer value)
#tcp_keepidle=600
# Size of the pool of greenthreads used by wsgi (integer value)
#wsgi_default_pool_size=1000
# Maximum line size of message headers to be accepted. max_header_line may need
# to be increased when using large tokens (typically those generated by the
# Keystone v3 API with big service catalogs). (integer value)
#max_header_line=16384
# If False, closes the client socket connection explicitly. (boolean value)
#wsgi_keep_alive=true
# Timeout for client connections' socket operations. If an incoming connection
# is idle for this number of seconds it will be closed. A value of '0' means
# wait forever. (integer value)
#client_socket_timeout=900
#
# From nova.api
#
# File to load JSON formatted vendor data from (string value)
#vendordata_jsonfile_path=<None>
# Permit instance snapshot operations. (boolean value)
#allow_instance_snapshots=true
# Whether to use per-user rate limiting for the api. This option is only used
# by v2 api. Rate limiting is removed from v2.1 api. (boolean value)
#api_rate_limit=false
#
# The strategy to use for auth: keystone or noauth2. noauth2 is designed for
# testing only, as it does no actual credential checking. noauth2 provides
# administrative credentials only if 'admin' is specified as the username.
# (string value)
#auth_strategy=keystone
auth_strategy=keystone
# Treat X-Forwarded-For as the canonical remote address. Only enable this if
# you have a sanitizing proxy. (boolean value)
#use_forwarded_for=false
use_forwarded_for=False
# The IP address of the EC2 API server (string value)
#ec2_host=$my_ip
# The internal IP address of the EC2 API server (string value)
#ec2_dmz_host=$my_ip
# The port of the EC2 API server (integer value)
# Minimum value: 1
# Maximum value: 65535
#ec2_port=8773
# The protocol to use when connecting to the EC2 API server (string value)
# Allowed values: http, https
#ec2_scheme=http
# The path prefix used to call the ec2 API server (string value)
#ec2_path=/
# List of region=fqdn pairs separated by commas (list value)
#region_list =
# Number of failed auths before lockout. (integer value)
#lockout_attempts=5
# Number of minutes to lockout if triggered. (integer value)
#lockout_minutes=15
# Number of minutes for lockout window. (integer value)
#lockout_window=15
# URL to get token from ec2 request. (string value)
#keystone_ec2_url=http://localhost:5000/v2.0/ec2tokens
# Return the IP address as private dns hostname in describe instances (boolean
# value)
#ec2_private_dns_show_ip=false
# Validate security group names according to EC2 specification (boolean value)
#ec2_strict_validation=true
# Time in seconds before ec2 timestamp expires (integer value)
#ec2_timestamp_expiry=300
# Disable SSL certificate verification. (boolean value)
#keystone_ec2_insecure=false
# List of metadata versions to skip placing into the config drive (string
# value)
#config_drive_skip_versions=1.0 2007-01-19 2007-03-01 2007-08-29 2007-10-10 2007-12-15 2008-02-01 2008-09-01
# Driver to use for vendor data (string value)
#vendordata_driver=nova.api.metadata.vendordata_json.JsonFileVendorData
# Time in seconds to cache metadata; 0 to disable metadata caching entirely
# (not recommended). Increasingthis should improve response times of the
# metadata API when under heavy load. Higher values may increase memoryusage
# and result in longer times for host metadata changes to take effect. (integer
# value)
#metadata_cache_expiration=15
# The maximum number of items returned in a single response from a collection
# resource (integer value)
#osapi_max_limit=1000
# Base URL that will be presented to users in links to the OpenStack Compute
# API (string value)
#osapi_compute_link_prefix=<None>
# Base URL that will be presented to users in links to glance resources (string
# value)
#osapi_glance_link_prefix=<None>
# DEPRECATED: Specify list of extensions to load when using
# osapi_compute_extension option with
# nova.api.openstack.compute.legacy_v2.contrib.select_extensions This option
# will be removed in the near future. After that point you have to run all of
# the API. (list value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#osapi_compute_ext_list =
# Full path to fping. (string value)
#fping_path=/usr/sbin/fping
fping_path=/usr/sbin/fping
# Enables or disables quota checking for tenant networks (boolean value)
#enable_network_quota=false
# Control for checking for default networks (string value)
#use_neutron_default_nets=False
# Default tenant id when creating neutron networks (string value)
#neutron_default_tenant_id=default
# Number of private networks allowed per project (integer value)
#quota_networks=3
# osapi compute extension to load. This option will be removed in the near
# future. After that point you have to run all of the API. (multi valued)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#osapi_compute_extension=nova.api.openstack.compute.legacy_v2.contrib.standard_extensions
# List of instance states that should hide network info (list value)
#osapi_hide_server_address_states=building
# Enables returning of the instance password by the relevant server API calls
# such as create, rebuild or rescue, If the hypervisor does not support
# password injection then the password returned will not be correct (boolean
# value)
#enable_instance_password=true
#
# From nova.compute
#
# Allow destination machine to match source for resize. Useful when testing in
# single-host environments. (boolean value)
#allow_resize_to_same_host=false
allow_resize_to_same_host=False
# Availability zone to use when user doesn't specify one (string value)
#default_schedule_zone=<None>
# These are image properties which a snapshot should not inherit from an
# instance (list value)
#non_inheritable_image_properties=cache_in_nova,bittorrent
# Kernel image that indicates not to use a kernel, but to use a raw disk image
# instead (string value)
#null_kernel=nokernel
# When creating multiple instances with a single request using the os-multiple-
# create API extension, this template will be used to build the display name
# for each instance. The benefit is that the instances end up with different
# hostnames. To restore legacy behavior of every instance having the same name,
# set this option to "%(name)s". Valid keys for the template are: name, uuid,
# count. (string value)
#multi_instance_display_name_template=%(name)s-%(count)d
# Maximum number of devices that will result in a local image being created on
# the hypervisor node. A negative number means unlimited. Setting
# max_local_block_devices to 0 means that any request that attempts to create a
# local disk will fail. This option is meant to limit the number of local discs
# (so root local disc that is the result of --image being used, and any other
# ephemeral and swap disks). 0 does not mean that images will be automatically
# converted to volumes and boot instances from volumes - it just means that all
# requests that attempt to create a local disk will fail. (integer value)
#max_local_block_devices=3
# Default flavor to use for the EC2 API only. The Nova API does not support a
# default flavor. (string value)
#default_flavor=m1.small
# Console proxy host to use to connect to instances on this host. (string
# value)
#console_host=x86-017.build.eng.bos.redhat.com
# Name of network to use to set access IPs for instances (string value)
#default_access_ip_network_name=<None>
# Whether to batch up the application of IPTables rules during a host restart
# and apply all at the end of the init phase (boolean value)
#defer_iptables_apply=false
# Where instances are stored on disk (string value)
#instances_path=$state_path/instances
# Generate periodic compute.instance.exists notifications (boolean value)
#instance_usage_audit=false
# Number of 1 second retries needed in live_migration (integer value)
#live_migration_retry_count=30
# Whether to start guests that were running before the host rebooted (boolean
# value)
#resume_guests_state_on_host_boot=false
# Number of times to retry network allocation on failures (integer value)
#network_allocate_retries=0
# Maximum number of instance builds to run concurrently (integer value)
#max_concurrent_builds=10
# Maximum number of live migrations to run concurrently. This limit is enforced
# to avoid outbound live migrations overwhelming the host/network and causing
# failures. It is not recommended that you change this unless you are very sure
# that doing so is safe and stable in your environment. (integer value)
#max_concurrent_live_migrations=1
# Number of times to retry block device allocation on failures (integer value)
#block_device_allocate_retries=60
# The number of times to attempt to reap an instance's files. (integer value)
#maximum_instance_delete_attempts=5
# Interval to pull network bandwidth usage info. Not supported on all
# hypervisors. Set to -1 to disable. Setting this to 0 will run at the default
# rate. (integer value)
#bandwidth_poll_interval=600
# Interval to sync power states between the database and the hypervisor. Set to
# -1 to disable. Setting this to 0 will run at the default rate. (integer
# value)
#sync_power_state_interval=600
# Number of seconds between instance network information cache updates (integer
# value)
#heal_instance_info_cache_interval=60
heal_instance_info_cache_interval=60
# Interval in seconds for reclaiming deleted instances (integer value)
#reclaim_instance_interval=0
# Interval in seconds for gathering volume usages (integer value)
#volume_usage_poll_interval=0
# Interval in seconds for polling shelved instances to offload. Set to -1 to
# disable.Setting this to 0 will run at the default rate. (integer value)
#shelved_poll_interval=3600
# Time in seconds before a shelved instance is eligible for removing from a
# host. -1 never offload, 0 offload immediately when shelved (integer value)
#shelved_offload_time=0
# Interval in seconds for retrying failed instance file deletes. Set to -1 to
# disable. Setting this to 0 will run at the default rate. (integer value)
#instance_delete_interval=300
# Waiting time interval (seconds) between block device allocation retries on
# failures (integer value)
#block_device_allocate_retries_interval=3
# Waiting time interval (seconds) between sending the scheduler a list of
# current instance UUIDs to verify that its view of instances is in sync with
# nova. If the CONF option `scheduler_tracks_instance_changes` is False,
# changing this option will have no effect. (integer value)
#scheduler_instance_sync_interval=120
# Interval in seconds for updating compute resources. A number less than 0
# means to disable the task completely. Leaving this at the default of 0 will
# cause this to run at the default periodic interval. Setting it to any
# positive value will cause it to run at approximately that number of seconds.
# (integer value)
#update_resources_interval=0
# Action to take if a running deleted instance is detected.Set to 'noop' to
# take no action. (string value)
# Allowed values: noop, log, shutdown, reap
#running_deleted_instance_action=reap
# Number of seconds to wait between runs of the cleanup task. (integer value)
#running_deleted_instance_poll_interval=1800
# Number of seconds after being deleted when a running instance should be
# considered eligible for cleanup. (integer value)
#running_deleted_instance_timeout=0
# Automatically hard reboot an instance if it has been stuck in a rebooting
# state longer than N seconds. Set to 0 to disable. (integer value)
#reboot_timeout=0
# Amount of time in seconds an instance can be in BUILD before going into ERROR
# status. Set to 0 to disable. (integer value)
#instance_build_timeout=0
# Automatically unrescue an instance after N seconds. Set to 0 to disable.
# (integer value)
#rescue_timeout=0
# Automatically confirm resizes after N seconds. Set to 0 to disable. (integer
# value)
#resize_confirm_window=0
# Total amount of time to wait in seconds for an instance to perform a clean
# shutdown. (integer value)
#shutdown_timeout=60
# Monitor classes available to the compute which may be specified more than
# once. This option is DEPRECATED and no longer used. Use setuptools entry
# points to list available monitor plugins. (multi valued)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#compute_available_monitors =
# A list of monitors that can be used for getting compute metrics. You can use
# the alias/name from the setuptools entry points for nova.compute.monitors.*
# namespaces. If no namespace is supplied, the "cpu." namespace is assumed for
# backwards-compatibility. An example value that would enable both the CPU and
# NUMA memory bandwidth monitors that used the virt driver variant:
# ["cpu.virt_driver", "numa_mem_bw.virt_driver"] (list value)
#compute_monitors =
# Amount of disk in MB to reserve for the host (integer value)
#reserved_host_disk_mb=0
# Amount of memory in MB to reserve for the host (integer value)
#reserved_host_memory_mb=512
reserved_host_memory_mb=512
# Class that will manage stats for the local compute host (string value)
#compute_stats_class=nova.compute.stats.Stats
# The names of the extra resources to track. (list value)
#compute_resources=vcpu
# Virtual CPU to physical CPU allocation ratio which affects all CPU filters.
# This configuration specifies a global ratio for CoreFilter. For
# AggregateCoreFilter, it will fall back to this configuration value if no per-
# aggregate setting found. NOTE: This can be set per-compute, or if set to 0.0,
# the value set on the scheduler node(s) will be used and defaulted to 16.0
# (floating point value)
#cpu_allocation_ratio=0.0
cpu_allocation_ratio=16.0
# Virtual ram to physical ram allocation ratio which affects all ram filters.
# This configuration specifies a global ratio for RamFilter. For
# AggregateRamFilter, it will fall back to this configuration value if no per-
# aggregate setting found. NOTE: This can be set per-compute, or if set to 0.0,
# the value set on the scheduler node(s) will be used and defaulted to 1.5
# (floating point value)
#ram_allocation_ratio=0.0
ram_allocation_ratio=1.5
# The topic compute nodes listen on (string value)
#compute_topic=compute
#
# From nova.network
#
# The full class name of the network API class to use (string value)
#network_api_class=nova.network.api.API
network_api_class=nova.network.neutronv2.api.API
# Driver to use for network creation (string value)
#network_driver=nova.network.linux_net
# Default pool for floating IPs (string value)
#default_floating_pool=nova
default_floating_pool=public
# Autoassigning floating IP to VM (boolean value)
#auto_assign_floating_ip=false
# Full class name for the DNS Manager for floating IPs (string value)
#floating_ip_dns_manager=nova.network.noop_dns_driver.NoopDNSDriver
# Full class name for the DNS Manager for instance IPs (string value)
#instance_dns_manager=nova.network.noop_dns_driver.NoopDNSDriver
# Full class name for the DNS Zone for instance IPs (string value)
#instance_dns_domain =
# URL for LDAP server which will store DNS entries (string value)
#ldap_dns_url=ldap://ldap.example.com:389
# User for LDAP DNS (string value)
#ldap_dns_user=uid=admin,ou=people,dc=example,dc=org
# Password for LDAP DNS (string value)
#ldap_dns_password=password
# Hostmaster for LDAP DNS driver Statement of Authority (string value)
#ldap_dns_soa_hostmaster=hostmaster@example.org
# DNS Servers for LDAP DNS driver (multi valued)
#ldap_dns_servers=dns.example.org
# Base DN for DNS entries in LDAP (string value)
#ldap_dns_base_dn=ou=hosts,dc=example,dc=org
# Refresh interval (in seconds) for LDAP DNS driver Statement of Authority
# (string value)
#ldap_dns_soa_refresh=1800
# Retry interval (in seconds) for LDAP DNS driver Statement of Authority
# (string value)
#ldap_dns_soa_retry=3600
# Expiry interval (in seconds) for LDAP DNS driver Statement of Authority
# (string value)
#ldap_dns_soa_expiry=86400
# Minimum interval (in seconds) for LDAP DNS driver Statement of Authority
# (string value)
#ldap_dns_soa_minimum=7200
# Location of flagfiles for dhcpbridge (multi valued)
#dhcpbridge_flagfile=/etc/nova/nova.conf
# Location to keep network config files (string value)
#networks_path=$state_path/networks
# Interface for public IP addresses (string value)
#public_interface=eth0
# Location of nova-dhcpbridge (string value)
#dhcpbridge=/usr/bin/nova-dhcpbridge
# Public IP of network host (string value)
#routing_source_ip=$my_ip
# Lifetime of a DHCP lease in seconds (integer value)
#dhcp_lease_time=86400
# If set, uses specific DNS server for dnsmasq. Can be specified multiple
# times. (multi valued)
#dns_server =
# If set, uses the dns1 and dns2 from the network ref. as dns servers. (boolean
# value)
#use_network_dns_servers=false
# A list of dmz ranges that should be accepted (list value)
#dmz_cidr =
# Traffic to this range will always be snatted to the fallback ip, even if it
# would normally be bridged out of the node. Can be specified multiple times.
# (multi valued)
#force_snat_range =
force_snat_range =0.0.0.0/0
# Override the default dnsmasq settings with this file (string value)
#dnsmasq_config_file =
# Driver used to create ethernet devices. (string value)
#linuxnet_interface_driver=nova.network.linux_net.LinuxBridgeInterfaceDriver
# Name of Open vSwitch bridge used with linuxnet (string value)
#linuxnet_ovs_integration_bridge=br-int
# Send gratuitous ARPs for HA setup (boolean value)
#send_arp_for_ha=false
# Send this many gratuitous ARPs for HA setup (integer value)
#send_arp_for_ha_count=3
# Use single default gateway. Only first nic of vm will get default gateway
# from dhcp server (boolean value)
#use_single_default_gateway=false
# An interface that bridges can forward to. If this is set to all then all
# traffic will be forwarded. Can be specified multiple times. (multi valued)
#forward_bridge_interface=all
# The IP address for the metadata API server (string value)
#metadata_host=$my_ip
metadata_host=VARINET4ADDR
# The port for the metadata API port (integer value)
# Minimum value: 1
# Maximum value: 65535
#metadata_port=8775
# Regular expression to match the iptables rule that should always be on the
# top. (string value)
#iptables_top_regex =
# Regular expression to match the iptables rule that should always be on the
# bottom. (string value)
#iptables_bottom_regex =
# The table that iptables to jump to when a packet is to be dropped. (string
# value)
#iptables_drop_action=DROP
# Amount of time, in seconds, that ovs_vsctl should wait for a response from
# the database. 0 is to wait forever. (integer value)
#ovs_vsctl_timeout=120
# If passed, use fake network devices and addresses (boolean value)
#fake_network=false
# Number of times to retry ebtables commands on failure. (integer value)
#ebtables_exec_attempts=3
# Number of seconds to wait between ebtables retries. (floating point value)
#ebtables_retry_interval=1.0
# Bridge for simple network instances (string value)
#flat_network_bridge=<None>
# DNS server for simple network (string value)
#flat_network_dns=8.8.4.4
# Whether to attempt to inject network setup into guest (boolean value)
#flat_injected=false
# FlatDhcp will bridge into this interface if set (string value)
#flat_interface=<None>
# First VLAN for private networks (integer value)
# Minimum value: 1
# Maximum value: 4094
#vlan_start=100
# VLANs will bridge into this interface if set (string value)
#vlan_interface=<None>
# Number of networks to support (integer value)
#num_networks=1
# Public IP for the cloudpipe VPN servers (string value)
#vpn_ip=$my_ip
# First Vpn port for private networks (integer value)
#vpn_start=1000
# Number of addresses in each private subnet (integer value)
#network_size=256
# Fixed IPv6 address block (string value)
#fixed_range_v6=fd00::/48
# Default IPv4 gateway (string value)
#gateway=<None>
# Default IPv6 gateway (string value)
#gateway_v6=<None>
# Number of addresses reserved for vpn clients (integer value)
#cnt_vpn_clients=0
# Seconds after which a deallocated IP is disassociated (integer value)
#fixed_ip_disassociate_timeout=600
# Number of attempts to create unique mac address (integer value)
#create_unique_mac_address_attempts=5
# If True, skip using the queue and make local calls (boolean value)
#fake_call=false
# If True, unused gateway devices (VLAN and bridge) are deleted in VLAN network
# mode with multi hosted networks (boolean value)
#teardown_unused_network_gateway=false
# If True, send a dhcp release on instance termination (boolean value)
#force_dhcp_release=True
# If True, when a DNS entry must be updated, it sends a fanout cast to all
# network hosts to update their DNS entries in multi host mode (boolean value)
#update_dns_entries=false
# Number of seconds to wait between runs of updates to DNS entries. (integer
# value)
#dns_update_periodic_interval=-1
# Domain to use for building the hostnames (string value)
#dhcp_domain=novalocal
dhcp_domain=novalocal
# Indicates underlying L3 management library (string value)
#l3_lib=nova.network.l3.LinuxNetL3
# The topic network nodes listen on (string value)
#network_topic=network
# Default value for multi_host in networks. Also, if set, some rpc network
# calls will be sent directly to host. (boolean value)
#multi_host=false
# The full class name of the security API class (string value)
#security_group_api=nova
security_group_api=neutron
#
# From nova.openstack.common.memorycache
#
# Memcached servers or None for in process cache. (list value)
#memcached_servers=<None>
#
# From nova.openstack.common.policy
#
# The JSON file that defines policies. (string value)
#policy_file=policy.json
# Default rule. Enforced when a requested rule is not found. (string value)
#policy_default_rule=default
# Directories where policy configuration files are stored. They can be relative
# to any directory in the search path defined by the config_dir option, or
# absolute paths. The file defined by policy_file must exist for these
# directories to be searched. Missing or empty directories are ignored. (multi
# valued)
#policy_dirs=policy.d
#
# From nova.scheduler
#
# Virtual disk to physical disk allocation ratio (floating point value)
#disk_allocation_ratio=1.0
# Tells filters to ignore hosts that have this many or more instances currently
# in build, resize, snapshot, migrate, rescue or unshelve task states (integer
# value)
#max_io_ops_per_host=8
# Ignore hosts that have too many instances (integer value)
#max_instances_per_host=50
# Absolute path to scheduler configuration JSON file. (string value)
#scheduler_json_config_location =
# The scheduler host manager class to use (string value)
#scheduler_host_manager=nova.scheduler.host_manager.HostManager
# New instances will be scheduled on a host chosen randomly from a subset of
# the N best hosts. This property defines the subset size that a host is chosen
# from. A value of 1 chooses the first host returned by the weighing functions.
# This value must be at least 1. Any value less than 1 will be ignored, and 1
# will be used instead (integer value)
#scheduler_host_subset_size=1
# Force the filter to consider only keys matching the given namespace. (string
# value)
#aggregate_image_properties_isolation_namespace=<None>
# The separator used between the namespace and keys (string value)
#aggregate_image_properties_isolation_separator=.
# Images to run on isolated host (list value)
#isolated_images =
# Host reserved for specific images (list value)
#isolated_hosts =
# Whether to force isolated hosts to run only isolated images (boolean value)
#restrict_isolated_hosts_to_isolated_images=true
# Filter classes available to the scheduler which may be specified more than
# once. An entry of "nova.scheduler.filters.all_filters" maps to all filters
# included with nova. (multi valued)
#scheduler_available_filters=nova.scheduler.filters.all_filters
# Which filter class names to use for filtering hosts when not specified in the
# request. (list value)
#scheduler_default_filters=RetryFilter,AvailabilityZoneFilter,RamFilter,DiskFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter
scheduler_default_filters=RetryFilter,AvailabilityZoneFilter,RamFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,CoreFilter
# Which weight class names to use for weighing hosts (list value)
#scheduler_weight_classes=nova.scheduler.weights.all_weighers
# Determines if the Scheduler tracks changes to instances to help with its
# filtering decisions. (boolean value)
#scheduler_tracks_instance_changes=true
# Which filter class names to use for filtering baremetal hosts when not
# specified in the request. (list value)
#baremetal_scheduler_default_filters=RetryFilter,AvailabilityZoneFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ExactRamFilter,ExactDiskFilter,ExactCoreFilter
# Flag to decide whether to use baremetal_scheduler_default_filters or not.
# (boolean value)
#scheduler_use_baremetal_filters=false
# Default driver to use for the scheduler (string value)
#scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
# How often (in seconds) to run periodic tasks in the scheduler driver of your
# choice. Please note this is likely to interact with the value of
# service_down_time, but exactly how they interact will depend on your choice
# of scheduler driver. (integer value)
#scheduler_driver_task_period=60
# The topic scheduler nodes listen on (string value)
#scheduler_topic=scheduler
# Maximum number of attempts to schedule an instance (integer value)
#scheduler_max_attempts=3
# Multiplier used for weighing host io ops. Negative numbers mean a preference
# to choose light workload compute hosts. (floating point value)
#io_ops_weight_multiplier=-1.0
# Multiplier used for weighing ram. Negative numbers mean to stack vs spread.
# (floating point value)
#ram_weight_multiplier=1.0
#
# From nova.virt
#
# Config drive format. (string value)
# Allowed values: iso9660, vfat
#config_drive_format=iso9660
# Set to "always" to force injection to take place on a config drive. NOTE: The
# "always" will be deprecated in the Liberty release cycle. (string value)
# Allowed values: always, True, False
#force_config_drive=<None>
# Name and optionally path of the tool used for ISO image creation (string
# value)
#mkisofs_cmd=genisoimage
# Name of the mkfs commands for ephemeral device. The format is <os_type>=<mkfs
# command> (multi valued)
#virt_mkfs =
# Attempt to resize the filesystem by accessing the image over a block device.
# This is done by the host and may not be necessary if the image contains a
# recent version of cloud-init. Possible mechanisms require the nbd driver (for
# qcow and raw), or loop (for raw). (boolean value)
#resize_fs_using_block_device=false
# Amount of time, in seconds, to wait for NBD device start up. (integer value)
#timeout_nbd=10
# Driver to use for controlling virtualization. Options include:
# libvirt.LibvirtDriver, xenapi.XenAPIDriver, fake.FakeDriver,
# ironic.IronicDriver, vmwareapi.VMwareVCDriver, hyperv.HyperVDriver (string
# value)
#compute_driver=libvirt.LibvirtDriver
compute_driver=libvirt.LibvirtDriver
# The default format an ephemeral_volume will be formatted with on creation.
# (string value)
#default_ephemeral_format=<None>
# VM image preallocation mode: "none" => no storage provisioning is done up
# front, "space" => storage is fully allocated at instance start (string value)
# Allowed values: none, space
#preallocate_images=none
# Whether to use cow images (boolean value)
#use_cow_images=true
# Fail instance boot if vif plugging fails (boolean value)
#vif_plugging_is_fatal=true
vif_plugging_is_fatal=True
# Number of seconds to wait for neutron vif plugging events to arrive before
# continuing or failing (see vif_plugging_is_fatal). If this is set to zero and
# vif_plugging_is_fatal is False, events should not be expected to arrive at
# all. (integer value)
#vif_plugging_timeout=300
vif_plugging_timeout=300
# Firewall driver (defaults to hypervisor specific iptables driver) (string
# value)
#firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver
firewall_driver=nova.virt.firewall.NoopFirewallDriver
# Whether to allow network traffic from same network (boolean value)
#allow_same_net_traffic=true
# Defines which pcpus that instance vcpus can use. For example, "4-12,^8,15"
# (string value)
#vcpu_pin_set=<None>
# Number of seconds to wait between runs of the image cache manager. Set to -1
# to disable. Setting this to 0 will run at the default rate. (integer value)
#image_cache_manager_interval=2400
# Where cached images are stored under $instances_path. This is NOT the full
# path - just a folder name. For per-compute-host cached images, set to
# _base_$my_ip (string value)
#image_cache_subdirectory_name=_base
# Should unused base images be removed? (boolean value)
#remove_unused_base_images=true
# Unused unresized base images younger than this will not be removed (integer
# value)
#remove_unused_original_minimum_age_seconds=86400
# Force backing images to raw format (boolean value)
#force_raw_images=true
force_raw_images=True
# Template file for injected network (string value)
#injected_network_template=/usr/share/nova/interfaces.template
#
# From oslo.log
#
# Print debugging output (set logging level to DEBUG instead of default INFO
# level). (boolean value)
#debug=false
debug=True
# If set to false, will disable INFO logging level, making WARNING the default.
# (boolean value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#verbose=true
verbose=True
# The name of a logging configuration file. This file is appended to any
# existing logging configuration files. For details about logging configuration
# files, see the Python logging module documentation. (string value)
# Deprecated group;name - DEFAULT;log_config
#log_config_append=<None>
# DEPRECATED. A logging.Formatter log message format string which may use any
# of the available logging.LogRecord attributes. This option is deprecated.
# Please use logging_context_format_string and logging_default_format_string
# instead. (string value)
#log_format=<None>
# Format string for %%(asctime)s in log records. Default: %(default)s . (string
# value)
#log_date_format=%Y-%m-%d %H:%M:%S
# (Optional) Name of log file to output to. If no default is set, logging will
# go to stdout. (string value)
# Deprecated group;name - DEFAULT;logfile
#log_file=<None>
# (Optional) The base directory used for relative --log-file paths. (string
# value)
# Deprecated group;name - DEFAULT;logdir
#log_dir=/var/log/nova
log_dir=/var/log/nova
# Use syslog for logging. Existing syslog format is DEPRECATED and will be
# changed later to honor RFC5424. (boolean value)
#use_syslog=false
use_syslog=False
# (Optional) Enables or disables syslog rfc5424 format for logging. If enabled,
# prefixes the MSG part of the syslog message with APP-NAME (RFC5424). The
# format without the APP-NAME is deprecated in Kilo, and will be removed in
# Mitaka, along with this option. (boolean value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#use_syslog_rfc_format=true
# Syslog facility to receive log lines. (string value)
#syslog_log_facility=LOG_USER
syslog_log_facility=LOG_USER
# Log output to standard error. (boolean value)
#use_stderr=False
use_stderr=True
# Format string to use for log messages with context. (string value)
#logging_context_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [%(request_id)s %(user_identity)s] %(instance)s%(message)s
# Format string to use for log messages without context. (string value)
#logging_default_format_string=%(asctime)s.%(msecs)03d %(process)d %(levelname)s %(name)s [-] %(instance)s%(message)s
# Data to append to log format when level is DEBUG. (string value)
#logging_debug_format_suffix=%(funcName)s %(pathname)s:%(lineno)d
# Prefix each line of exception output with this format. (string value)
#logging_exception_prefix=%(asctime)s.%(msecs)03d %(process)d ERROR %(name)s %(instance)s
# List of logger=LEVEL pairs. (list value)
#default_log_levels=amqp=WARN,amqplib=WARN,boto=WARN,qpid=WARN,sqlalchemy=WARN,suds=INFO,oslo.messaging=INFO,iso8601=WARN,requests.packages.urllib3.connectionpool=WARN,urllib3.connectionpool=WARN,websocket=WARN,requests.packages.urllib3.util.retry=WARN,urllib3.util.retry=WARN,keystonemiddleware=WARN,routes.middleware=WARN,stevedore=WARN,taskflow=WARN
# Enables or disables publication of error events. (boolean value)
#publish_errors=false
# The format for an instance that is passed with the log message. (string
# value)
#instance_format="[instance: %(uuid)s] "
# The format for an instance UUID that is passed with the log message. (string
# value)
#instance_uuid_format="[instance: %(uuid)s] "
# Enables or disables fatal status of deprecations. (boolean value)
#fatal_deprecations=false
#
# From oslo.messaging
#
# Size of RPC connection pool. (integer value)
# Deprecated group;name - DEFAULT;rpc_conn_pool_size
#rpc_conn_pool_size=30
# ZeroMQ bind address. Should be a wildcard (*), an ethernet interface, or IP.
# The "host" option should point or resolve to this address. (string value)
#rpc_zmq_bind_address=*
# MatchMaker driver. (string value)
#rpc_zmq_matchmaker=local
# ZeroMQ receiver listening port. (integer value)
#rpc_zmq_port=9501
# Number of ZeroMQ contexts, defaults to 1. (integer value)
#rpc_zmq_contexts=1
# Maximum number of ingress messages to locally buffer per topic. Default is
# unlimited. (integer value)
#rpc_zmq_topic_backlog=<None>
# Directory for holding IPC sockets. (string value)
#rpc_zmq_ipc_dir=/var/run/openstack
# Name of this node. Must be a valid hostname, FQDN, or IP address. Must match
# "host" option, if running Nova. (string value)
#rpc_zmq_host=localhost
# Seconds to wait before a cast expires (TTL). Only supported by impl_zmq.
# (integer value)
#rpc_cast_timeout=30
# Heartbeat frequency. (integer value)
#matchmaker_heartbeat_freq=300
# Heartbeat time-to-live. (integer value)
#matchmaker_heartbeat_ttl=600
# Size of executor thread pool. (integer value)
# Deprecated group;name - DEFAULT;rpc_thread_pool_size
#executor_thread_pool_size=64
# The Drivers(s) to handle sending notifications. Possible values are
# messaging, messagingv2, routing, log, test, noop (multi valued)
#notification_driver =
notification_driver =nova.openstack.common.notifier.rabbit_notifier,ceilometer.compute.nova_notifier
# AMQP topic used for OpenStack notifications. (list value)
# Deprecated group;name - [rpc_notifier2]/topics
#notification_topics=notifications
notification_topics=notifications
# Seconds to wait for a response from a call. (integer value)
#rpc_response_timeout=60
# A URL representing the messaging driver to use and its full configuration. If
# not set, we fall back to the rpc_backend option and driver specific
# configuration. (string value)
#transport_url=<None>
# The messaging driver to use, defaults to rabbit. Other drivers include qpid
# and zmq. (string value)
#rpc_backend=rabbit
rpc_backend=rabbit
# The default exchange under which topics are scoped. May be overridden by an
# exchange name specified in the transport_url option. (string value)
#control_exchange=openstack
#
# From oslo.service.periodic_task
#
# Some periodic tasks can be run in a separate process. Should we run them
# here? (boolean value)
#run_external_periodic_tasks=true
#
# From oslo.service.service
#
# Enable eventlet backdoor. Acceptable values are 0, <port>, and
# <start>:<end>, where 0 results in listening on a random tcp port number;
# <port> results in listening on the specified port number (and not enabling
# backdoor if that port is in use); and <start>:<end> results in listening on
# the smallest unused port number within the specified range of port numbers.
# The chosen port is displayed in the service's log file. (string value)
#backdoor_port=<None>
# Enables or disables logging values of all registered options when starting a
# service (at DEBUG level). (boolean value)
#log_options=true
sql_connection=mysql+pymysql://nova:qum5net@VARINET4ADDR/nova
image_service=nova.image.glance.GlanceImageService
lock_path=/var/lib/nova/tmp
osapi_volume_listen=0.0.0.0
vncserver_proxyclient_address=VARHOSTNAME.ceph.redhat.com
vnc_keymap=en-us
vnc_enabled=True
vncserver_listen=0.0.0.0
novncproxy_base_url=http://VARINET4ADDR:6080/vnc_auto.html
rbd_user = cinder
rbd_secret_uuid = RBDSECRET
[api_database]
#
# From nova
#
# The SQLAlchemy connection string to use to connect to the Nova API database.
# (string value)
#connection=mysql://nova:nova@localhost/nova
# If True, SQLite uses synchronous mode. (boolean value)
#sqlite_synchronous=true
# The SQLAlchemy connection string to use to connect to the slave database.
# (string value)
#slave_connection=<None>
# The SQL mode to be used for MySQL sessions. This option, including the
# default, overrides any server-set SQL mode. To use whatever SQL mode is set
# by the server configuration, set this to no value. Example: mysql_sql_mode=
# (string value)
#mysql_sql_mode=TRADITIONAL
# Timeout before idle SQL connections are reaped. (integer value)
#idle_timeout=3600
# Maximum number of SQL connections to keep open in a pool. (integer value)
#max_pool_size=<None>
# Maximum number of database connection retries during startup. Set to -1 to
# specify an infinite retry count. (integer value)
#max_retries=-1
# Interval between retries of opening a SQL connection. (integer value)
#retry_interval=10
# If set, use this value for max_overflow with SQLAlchemy. (integer value)
#max_overflow=<None>
# Verbosity of SQL debugging information: 0=None, 100=Everything. (integer
# value)
#connection_debug=0
# Add Python stack traces to SQL as comment strings. (boolean value)
#connection_trace=false
# If set, use this value for pool_timeout with SQLAlchemy. (integer value)
#pool_timeout=<None>
[barbican]
#
# From nova
#
# Info to match when looking for barbican in the service catalog. Format is:
# separated values of the form: <service_type>:<service_name>:<endpoint_type>
# (string value)
#catalog_info=key-manager:barbican:public
# Override service catalog lookup with template for barbican endpoint e.g.
# http://localhost:9311/v1/%(project_id)s (string value)
#endpoint_template=<None>
# Region name of this node (string value)
#os_region_name=<None>
[cells]
#
# From nova.cells
#
# Enable cell functionality (boolean value)
#enable=false
# The topic cells nodes listen on (string value)
#topic=cells
# Manager for cells (string value)
#manager=nova.cells.manager.CellsManager
# Name of this cell (string value)
#name=nova
# Key/Multi-value list with the capabilities of the cell (list value)
#capabilities=hypervisor=xenserver;kvm,os=linux;windows
# Seconds to wait for response from a call to a cell. (integer value)
#call_timeout=60
# Percentage of cell capacity to hold in reserve. Affects both memory and disk
# utilization (floating point value)
#reserve_percent=10.0
# Type of cell (string value)
# Allowed values: api, compute
#cell_type=compute
# Number of seconds after which a lack of capability and capacity updates
# signals the child cell is to be treated as a mute. (integer value)
#mute_child_interval=300
# Seconds between bandwidth updates for cells. (integer value)
#bandwidth_update_interval=600
# Cells communication driver to use (string value)
#driver=nova.cells.rpc_driver.CellsRPCDriver
# Number of seconds after an instance was updated or deleted to continue to
# update cells (integer value)
#instance_updated_at_threshold=3600
# Number of instances to update per periodic task run (integer value)
#instance_update_num_instances=1
# Maximum number of hops for cells routing. (integer value)
#max_hop_count=10
# Cells scheduler to use (string value)
#scheduler=nova.cells.scheduler.CellsScheduler
# Base queue name to use when communicating between cells. Various topics by
# message type will be appended to this. (string value)
#rpc_driver_queue_base=cells.intercell
# Filter classes the cells scheduler should use. An entry of
# "nova.cells.filters.all_filters" maps to all cells filters included with
# nova. (list value)
#scheduler_filter_classes=nova.cells.filters.all_filters
# Weigher classes the cells scheduler should use. An entry of
# "nova.cells.weights.all_weighers" maps to all cell weighers included with
# nova. (list value)
#scheduler_weight_classes=nova.cells.weights.all_weighers
# How many retries when no cells are available. (integer value)
#scheduler_retries=10
# How often to retry in seconds when no cells are available. (integer value)
#scheduler_retry_delay=2
# Interval, in seconds, for getting fresh cell information from the database.
# (integer value)
#db_check_interval=60
# Configuration file from which to read cells configuration. If given,
# overrides reading cells from the database. (string value)
#cells_config=<None>
# Multiplier used to weigh mute children. (The value should be negative.)
# (floating point value)
#mute_weight_multiplier=-10000.0
# Multiplier used for weighing ram. Negative numbers mean to stack vs spread.
# (floating point value)
#ram_weight_multiplier=10.0
# Multiplier used to weigh offset weigher. (floating point value)
#offset_weight_multiplier=1.0
[cinder]
#
# From nova
#
# Info to match when looking for cinder in the service catalog. Format is:
# separated values of the form: <service_type>:<service_name>:<endpoint_type>
# (string value)
#catalog_info=volumev2:cinderv2:publicURL
catalog_info=volumev2:cinderv2:publicURL
# Override service catalog lookup with template for cinder endpoint e.g.
# http://localhost:8776/v1/%(project_id)s (string value)
#endpoint_template=<None>
# Region name of this node (string value)
#os_region_name=<None>
# Number of cinderclient retries on failed http calls (integer value)
#http_retries=3
# Allow attach between instance and volume in different availability zones.
# (boolean value)
#cross_az_attach=true
[conductor]
#
# From nova
#
# Perform nova-conductor operations locally (boolean value)
#use_local=false
use_local=False
# The topic on which conductor nodes listen (string value)
#topic=conductor
# Full class name for the Manager for conductor (string value)
#manager=nova.conductor.manager.ConductorManager
# Number of workers for OpenStack Conductor service. The default will be the
# number of CPUs available. (integer value)
#workers=<None>
[cors]
#
# From oslo.middleware
#
# Indicate whether this resource may be shared with the domain received in the
# requests "origin" header. (string value)
#allowed_origin=<None>
# Indicate that the actual request can include user credentials (boolean value)
#allow_credentials=true
# Indicate which headers are safe to expose to the API. Defaults to HTTP Simple
# Headers. (list value)
#expose_headers=Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
# Maximum cache age of CORS preflight requests. (integer value)
#max_age=3600
# Indicate which methods can be used during the actual request. (list value)
#allow_methods=GET,POST,PUT,DELETE,OPTIONS
# Indicate which header field names may be used during the actual request.
# (list value)
#allow_headers=Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
[cors.subdomain]
#
# From oslo.middleware
#
# Indicate whether this resource may be shared with the domain received in the
# requests "origin" header. (string value)
#allowed_origin=<None>
# Indicate that the actual request can include user credentials (boolean value)
#allow_credentials=true
# Indicate which headers are safe to expose to the API. Defaults to HTTP Simple
# Headers. (list value)
#expose_headers=Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
# Maximum cache age of CORS preflight requests. (integer value)
#max_age=3600
# Indicate which methods can be used during the actual request. (list value)
#allow_methods=GET,POST,PUT,DELETE,OPTIONS
# Indicate which header field names may be used during the actual request.
# (list value)
#allow_headers=Content-Type,Cache-Control,Content-Language,Expires,Last-Modified,Pragma
[database]
#
# From nova
#
# The file name to use with SQLite. (string value)
# Deprecated group;name - DEFAULT;sqlite_db
#sqlite_db=oslo.sqlite
# If True, SQLite uses synchronous mode. (boolean value)
# Deprecated group;name - DEFAULT;sqlite_synchronous
#sqlite_synchronous=true
# The back end to use for the database. (string value)
# Deprecated group;name - DEFAULT;db_backend
#backend=sqlalchemy
# The SQLAlchemy connection string to use to connect to the database. (string
# value)
# Deprecated group;name - DEFAULT;sql_connection
# Deprecated group;name - [DATABASE]/sql_connection
# Deprecated group;name - [sql]/connection
#connection=<None>
# The SQLAlchemy connection string to use to connect to the slave database.
# (string value)
#slave_connection=<None>
# The SQL mode to be used for MySQL sessions. This option, including the
# default, overrides any server-set SQL mode. To use whatever SQL mode is set
# by the server configuration, set this to no value. Example: mysql_sql_mode=
# (string value)
#mysql_sql_mode=TRADITIONAL
# Timeout before idle SQL connections are reaped. (integer value)
# Deprecated group;name - DEFAULT;sql_idle_timeout
# Deprecated group;name - [DATABASE]/sql_idle_timeout
# Deprecated group;name - [sql]/idle_timeout
#idle_timeout=3600
# Minimum number of SQL connections to keep open in a pool. (integer value)
# Deprecated group;name - DEFAULT;sql_min_pool_size
# Deprecated group;name - [DATABASE]/sql_min_pool_size
#min_pool_size=1
# Maximum number of SQL connections to keep open in a pool. (integer value)
# Deprecated group;name - DEFAULT;sql_max_pool_size
# Deprecated group;name - [DATABASE]/sql_max_pool_size
#max_pool_size=<None>
# Maximum number of database connection retries during startup. Set to -1 to
# specify an infinite retry count. (integer value)
# Deprecated group;name - DEFAULT;sql_max_retries
# Deprecated group;name - [DATABASE]/sql_max_retries
#max_retries=10
# Interval between retries of opening a SQL connection. (integer value)
# Deprecated group;name - DEFAULT;sql_retry_interval
# Deprecated group;name - [DATABASE]/reconnect_interval
#retry_interval=10
# If set, use this value for max_overflow with SQLAlchemy. (integer value)
# Deprecated group;name - DEFAULT;sql_max_overflow
# Deprecated group;name - [DATABASE]/sqlalchemy_max_overflow
#max_overflow=<None>
# Verbosity of SQL debugging information: 0=None, 100=Everything. (integer
# value)
# Deprecated group;name - DEFAULT;sql_connection_debug
#connection_debug=0
# Add Python stack traces to SQL as comment strings. (boolean value)
# Deprecated group;name - DEFAULT;sql_connection_trace
#connection_trace=false
# If set, use this value for pool_timeout with SQLAlchemy. (integer value)
# Deprecated group;name - [DATABASE]/sqlalchemy_pool_timeout
#pool_timeout=<None>
# Enable the experimental use of database reconnect on connection lost.
# (boolean value)
#use_db_reconnect=false
# Seconds between retries of a database transaction. (integer value)
#db_retry_interval=1
# If True, increases the interval between retries of a database operation up to
# db_max_retry_interval. (boolean value)
#db_inc_retry_interval=true
# If db_inc_retry_interval is set, the maximum seconds between retries of a
# database operation. (integer value)
#db_max_retry_interval=10
# Maximum retries in case of connection error or deadlock error before error is
# raised. Set to -1 to specify an infinite retry count. (integer value)
#db_max_retries=20
#
# From oslo.db
#
# The file name to use with SQLite. (string value)
# Deprecated group;name - DEFAULT;sqlite_db
#sqlite_db=oslo.sqlite
# If True, SQLite uses synchronous mode. (boolean value)
# Deprecated group;name - DEFAULT;sqlite_synchronous
#sqlite_synchronous=true
# The back end to use for the database. (string value)
# Deprecated group;name - DEFAULT;db_backend
#backend=sqlalchemy
# The SQLAlchemy connection string to use to connect to the database. (string
# value)
# Deprecated group;name - DEFAULT;sql_connection
# Deprecated group;name - [DATABASE]/sql_connection
# Deprecated group;name - [sql]/connection
#connection=<None>
# The SQLAlchemy connection string to use to connect to the slave database.
# (string value)
#slave_connection=<None>
# The SQL mode to be used for MySQL sessions. This option, including the
# default, overrides any server-set SQL mode. To use whatever SQL mode is set
# by the server configuration, set this to no value. Example: mysql_sql_mode=
# (string value)
#mysql_sql_mode=TRADITIONAL
# Timeout before idle SQL connections are reaped. (integer value)
# Deprecated group;name - DEFAULT;sql_idle_timeout
# Deprecated group;name - [DATABASE]/sql_idle_timeout
# Deprecated group;name - [sql]/idle_timeout
#idle_timeout=3600
# Minimum number of SQL connections to keep open in a pool. (integer value)
# Deprecated group;name - DEFAULT;sql_min_pool_size
# Deprecated group;name - [DATABASE]/sql_min_pool_size
#min_pool_size=1
# Maximum number of SQL connections to keep open in a pool. (integer value)
# Deprecated group;name - DEFAULT;sql_max_pool_size
# Deprecated group;name - [DATABASE]/sql_max_pool_size
#max_pool_size=<None>
# Maximum number of database connection retries during startup. Set to -1 to
# specify an infinite retry count. (integer value)
# Deprecated group;name - DEFAULT;sql_max_retries
# Deprecated group;name - [DATABASE]/sql_max_retries
#max_retries=10
# Interval between retries of opening a SQL connection. (integer value)
# Deprecated group;name - DEFAULT;sql_retry_interval
# Deprecated group;name - [DATABASE]/reconnect_interval
#retry_interval=10
# If set, use this value for max_overflow with SQLAlchemy. (integer value)
# Deprecated group;name - DEFAULT;sql_max_overflow
# Deprecated group;name - [DATABASE]/sqlalchemy_max_overflow
#max_overflow=<None>
# Verbosity of SQL debugging information: 0=None, 100=Everything. (integer
# value)
# Deprecated group;name - DEFAULT;sql_connection_debug
#connection_debug=0
# Add Python stack traces to SQL as comment strings. (boolean value)
# Deprecated group;name - DEFAULT;sql_connection_trace
#connection_trace=false
# If set, use this value for pool_timeout with SQLAlchemy. (integer value)
# Deprecated group;name - [DATABASE]/sqlalchemy_pool_timeout
#pool_timeout=<None>
# Enable the experimental use of database reconnect on connection lost.
# (boolean value)
#use_db_reconnect=false
# Seconds between retries of a database transaction. (integer value)
#db_retry_interval=1
# If True, increases the interval between retries of a database operation up to
# db_max_retry_interval. (boolean value)
#db_inc_retry_interval=true
# If db_inc_retry_interval is set, the maximum seconds between retries of a
# database operation. (integer value)
#db_max_retry_interval=10
# Maximum retries in case of connection error or deadlock error before error is
# raised. Set to -1 to specify an infinite retry count. (integer value)
#db_max_retries=20
[ephemeral_storage_encryption]
#
# From nova.compute
#
# Whether to encrypt ephemeral storage (boolean value)
#enabled=false
# The cipher and mode to be used to encrypt ephemeral storage. Which ciphers
# are available ciphers depends on kernel support. See /proc/crypto for the
# list of available options. (string value)
#cipher=aes-xts-plain64
# The bit length of the encryption key to be used to encrypt ephemeral storage
# (in XTS mode only half of the bits are used for encryption key) (integer
# value)
#key_size=512
[glance]
#
# From nova
#
# Default glance hostname or IP address (string value)
#host=$my_ip
# Default glance port (integer value)
# Minimum value: 1
# Maximum value: 65535
#port=9292
# Default protocol to use when connecting to glance. Set to https for SSL.
# (string value)
# Allowed values: http, https
#protocol=http
# A list of the glance api servers available to nova. Prefix with https:// for
# ssl-based glance api servers. ([hostname|ip]:port) (list value)
#api_servers=<None>
api_servers=VARINET4ADDR:9292
# Allow to perform insecure SSL (https) requests to glance (boolean value)
#api_insecure=false
# Number of retries when uploading / downloading an image to / from glance.
# (integer value)
#num_retries=0
# A list of url scheme that can be downloaded directly via the direct_url.
# Currently supported schemes: [file]. (list value)
#allowed_direct_url_schemes =
[guestfs]
#
# From nova.virt
#
# Enable guestfs debug (boolean value)
#debug=false
[hyperv]
#
# From nova.virt
#
# The name of a Windows share name mapped to the "instances_path" dir and used
# by the resize feature to copy files to the target host. If left blank, an
# administrative share will be used, looking for the same "instances_path" used
# locally (string value)
#instances_path_share =
# Force V1 WMI utility classes (boolean value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#force_hyperv_utils_v1=false
# Force V1 volume utility class (boolean value)
#force_volumeutils_v1=false
# External virtual switch Name, if not provided, the first external virtual
# switch is used (string value)
#vswitch_name=<None>
# Required for live migration among hosts with different CPU features (boolean
# value)
#limit_cpu_features=false
# Sets the admin password in the config drive image (boolean value)
#config_drive_inject_password=false
# Path of qemu-img command which is used to convert between different image
# types (string value)
#qemu_img_cmd=qemu-img.exe
# Attaches the Config Drive image as a cdrom drive instead of a disk drive
# (boolean value)
#config_drive_cdrom=false
# Enables metrics collections for an instance by using Hyper-V's metric APIs.
# Collected data can by retrieved by other apps and services, e.g.: Ceilometer.
# Requires Hyper-V / Windows Server 2012 and above (boolean value)
#enable_instance_metrics_collection=false
# Enables dynamic memory allocation (ballooning) when set to a value greater
# than 1. The value expresses the ratio between the total RAM assigned to an
# instance and its startup RAM amount. For example a ratio of 2.0 for an
# instance with 1024MB of RAM implies 512MB of RAM allocated at startup
# (floating point value)
#dynamic_memory_ratio=1.0
# Number of seconds to wait for instance to shut down after soft reboot request
# is made. We fall back to hard reboot if instance does not shutdown within
# this window. (integer value)
#wait_soft_reboot_seconds=60
# The number of times to retry to attach a volume (integer value)
#volume_attach_retry_count=10
# Interval between volume attachment attempts, in seconds (integer value)
#volume_attach_retry_interval=5
# The number of times to retry checking for a disk mounted via iSCSI. (integer
# value)
#mounted_disk_query_retry_count=10
# Interval between checks for a mounted iSCSI disk, in seconds. (integer value)
#mounted_disk_query_retry_interval=5
[image_file_url]
#
# From nova
#
# List of file systems that are configured in this file in the
# image_file_url:<list entry name> sections (list value)
#filesystems =
[ironic]
#
# From nova.virt
#
# Version of Ironic API service endpoint. (integer value)
#api_version=1
# URL for Ironic API endpoint. (string value)
#api_endpoint=<None>
# Ironic keystone admin name (string value)
#admin_username=<None>
# Ironic keystone admin password. (string value)
#admin_password=<None>
# Ironic keystone auth token.DEPRECATED: use admin_username, admin_password,
# and admin_tenant_name instead (string value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#admin_auth_token=<None>
# Keystone public API endpoint. (string value)
#admin_url=<None>
# Log level override for ironicclient. Set this in order to override the global
# "default_log_levels", "verbose", and "debug" settings. DEPRECATED: use
# standard logging configuration. (string value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#client_log_level=<None>
# Ironic keystone tenant name. (string value)
#admin_tenant_name=<None>
# How many retries when a request does conflict. If <= 0, only try once, no
# retries. (integer value)
#api_max_retries=60
# How often to retry in seconds when a request does conflict (integer value)
#api_retry_interval=2
[keymgr]
#
# From nova
#
# Fixed key returned by key manager, specified in hex (string value)
#fixed_key=<None>
# The full class name of the key manager API class (string value)
#api_class=nova.keymgr.conf_key_mgr.ConfKeyManager
[keystone_authtoken]
#
# From keystonemiddleware.auth_token
#
# Complete public Identity API endpoint. (string value)
#auth_uri=<None>
auth_uri=http://VARINET4ADDR:5000/v2.0
# API version of the admin Identity API endpoint. (string value)
#auth_version=<None>
# Do not handle authorization requests within the middleware, but delegate the
# authorization decision to downstream WSGI components. (boolean value)
#delay_auth_decision=false
# Request timeout value for communicating with Identity API server. (integer
# value)
#http_connect_timeout=<None>
# How many times are we trying to reconnect when communicating with Identity
# API Server. (integer value)
#http_request_max_retries=3
# Env key for the swift cache. (string value)
#cache=<None>
# Required if identity server requires client certificate (string value)
#certfile=<None>
# Required if identity server requires client certificate (string value)
#keyfile=<None>
# A PEM encoded Certificate Authority to use when verifying HTTPs connections.
# Defaults to system CAs. (string value)
#cafile=<None>
# Verify HTTPS connections. (boolean value)
#insecure=false
# The region in which the identity server can be found. (string value)
#region_name=<None>
# Directory used to cache files related to PKI tokens. (string value)
#signing_dir=<None>
# Optionally specify a list of memcached server(s) to use for caching. If left
# undefined, tokens will instead be cached in-process. (list value)
# Deprecated group;name - DEFAULT;memcache_servers
#memcached_servers=<None>
# In order to prevent excessive effort spent validating tokens, the middleware
# caches previously-seen tokens for a configurable duration (in seconds). Set
# to -1 to disable caching completely. (integer value)
#token_cache_time=300
# Determines the frequency at which the list of revoked tokens is retrieved
# from the Identity service (in seconds). A high number of revocation events
# combined with a low cache duration may significantly reduce performance.
# (integer value)
#revocation_cache_time=10
# (Optional) If defined, indicate whether token data should be authenticated or
# authenticated and encrypted. Acceptable values are MAC or ENCRYPT. If MAC,
# token data is authenticated (with HMAC) in the cache. If ENCRYPT, token data
# is encrypted and authenticated in the cache. If the value is not one of these
# options or empty, auth_token will raise an exception on initialization.
# (string value)
#memcache_security_strategy=<None>
# (Optional, mandatory if memcache_security_strategy is defined) This string is
# used for key derivation. (string value)
#memcache_secret_key=<None>
# (Optional) Number of seconds memcached server is considered dead before it is
# tried again. (integer value)
#memcache_pool_dead_retry=300
# (Optional) Maximum total number of open connections to every memcached
# server. (integer value)
#memcache_pool_maxsize=10
# (Optional) Socket timeout in seconds for communicating with a memcached
# server. (integer value)
#memcache_pool_socket_timeout=3
# (Optional) Number of seconds a connection to memcached is held unused in the
# pool before it is closed. (integer value)
#memcache_pool_unused_timeout=60
# (Optional) Number of seconds that an operation will wait to get a memcached
# client connection from the pool. (integer value)
#memcache_pool_conn_get_timeout=10
# (Optional) Use the advanced (eventlet safe) memcached client pool. The
# advanced pool will only work under python 2.x. (boolean value)
#memcache_use_advanced_pool=false
# (Optional) Indicate whether to set the X-Service-Catalog header. If False,
# middleware will not ask for service catalog on token validation and will not
# set the X-Service-Catalog header. (boolean value)
#include_service_catalog=true
# Used to control the use and type of token binding. Can be set to: "disabled"
# to not check token binding. "permissive" (default) to validate binding
# information if the bind type is of a form known to the server and ignore it
# if not. "strict" like "permissive" but if the bind type is unknown the token
# will be rejected. "required" any form of token binding is needed to be
# allowed. Finally the name of a binding method that must be present in tokens.
# (string value)
#enforce_token_bind=permissive
# If true, the revocation list will be checked for cached tokens. This requires
# that PKI tokens are configured on the identity server. (boolean value)
#check_revocations_for_cached=false
# Hash algorithms to use for hashing PKI tokens. This may be a single algorithm
# or multiple. The algorithms are those supported by Python standard
# hashlib.new(). The hashes will be tried in the order given, so put the
# preferred one first for performance. The result of the first hash will be
# stored in the cache. This will typically be set to multiple values only while
# migrating from a less secure algorithm to a more secure one. Once all the old
# tokens are expired this option should be set to a single value for better
# performance. (list value)
#hash_algorithms=md5
# Prefix to prepend at the beginning of the path. Deprecated, use identity_uri.
# (string value)
#auth_admin_prefix =
# Host providing the admin Identity API endpoint. Deprecated, use identity_uri.
# (string value)
#auth_host=127.0.0.1
# Port of the admin Identity API endpoint. Deprecated, use identity_uri.
# (integer value)
#auth_port=35357
# Protocol of the admin Identity API endpoint (http or https). Deprecated, use
# identity_uri. (string value)
#auth_protocol=http
# Complete admin Identity API endpoint. This should specify the unversioned
# root endpoint e.g. https://localhost:35357/ (string value)
#identity_uri=<None>
identity_uri=http://VARINET4ADDR:35357
# This option is deprecated and may be removed in a future release. Single
# shared secret with the Keystone configuration used for bootstrapping a
# Keystone installation, or otherwise bypassing the normal authentication
# process. This option should not be used, use `admin_user` and
# `admin_password` instead. (string value)
#admin_token=<None>
# Service username. (string value)
#admin_user=<None>
admin_user=nova
# Service user password. (string value)
#admin_password=<None>
admin_password=qum5net
# Service tenant name. (string value)
#admin_tenant_name=admin
admin_tenant_name=services
[libvirt]
#
# From nova.virt
#
# Rescue ami image. This will not be used if an image id is provided by the
# user. (string value)
#rescue_image_id=<None>
# Rescue aki image (string value)
#rescue_kernel_id=<None>
# Rescue ari image (string value)
#rescue_ramdisk_id=<None>
# Libvirt domain type (string value)
# Allowed values: kvm, lxc, qemu, uml, xen, parallels
#virt_type=kvm
virt_type=kvm
# Override the default libvirt URI (which is dependent on virt_type) (string
# value)
#connection_uri =
# Inject the admin password at boot time, without an agent. (boolean value)
#inject_password=false
inject_password=False
# Inject the ssh public key at boot time (boolean value)
#inject_key=false
inject_key=False
# The partition to inject to : -2 => disable, -1 => inspect (libguestfs only),
# 0 => not partitioned, >0 => partition number (integer value)
#inject_partition=-2
inject_partition=-2
# Sync virtual and real mouse cursors in Windows VMs (boolean value)
#use_usb_tablet=true
# Migration target URI (any included "%s" is replaced with the migration target
# hostname) (string value)
#live_migration_uri=qemu+tcp://%s/system
live_migration_uri=qemu+tcp://nova@%s/system
# Migration flags to be set for live migration (string value)
#live_migration_flag=VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_LIVE, VIR_MIGRATE_TUNNELLED
live_migration_flag="VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_LIVE, VIR_MIGRATE_PERSIST_DEST, VIR_MIGRATE_TUNNELLED"
# Migration flags to be set for block migration (string value)
#block_migration_flag=VIR_MIGRATE_UNDEFINE_SOURCE, VIR_MIGRATE_PEER2PEER, VIR_MIGRATE_LIVE, VIR_MIGRATE_TUNNELLED, VIR_MIGRATE_NON_SHARED_INC
# Maximum bandwidth(in MiB/s) to be used during migration. If set to 0, will
# choose a suitable default. Some hypervisors do not support this feature and
# will return an error if bandwidth is not 0. Please refer to the libvirt
# documentation for further details (integer value)
#live_migration_bandwidth=0
# Maximum permitted downtime, in milliseconds, for live migration switchover.
# Will be rounded up to a minimum of 100ms. Use a large value if guest liveness
# is unimportant. (integer value)
#live_migration_downtime=500
# Number of incremental steps to reach max downtime value. Will be rounded up
# to a minimum of 3 steps (integer value)
#live_migration_downtime_steps=10
# Time to wait, in seconds, between each step increase of the migration
# downtime. Minimum delay is 10 seconds. Value is per GiB of guest RAM + disk
# to be transferred, with lower bound of a minimum of 2 GiB per device (integer
# value)
#live_migration_downtime_delay=75
# Time to wait, in seconds, for migration to successfully complete transferring
# data before aborting the operation. Value is per GiB of guest RAM + disk to
# be transferred, with lower bound of a minimum of 2 GiB. Should usually be
# larger than downtime delay * downtime steps. Set to 0 to disable timeouts.
# (integer value)
#live_migration_completion_timeout=800
# Time to wait, in seconds, for migration to make forward progress in
# transferring data before aborting the operation. Set to 0 to disable
# timeouts. (integer value)
#live_migration_progress_timeout=150
# Snapshot image format. Defaults to same as source image (string value)
# Allowed values: raw, qcow2, vmdk, vdi
#snapshot_image_format=<None>
# Override the default disk prefix for the devices attached to a server, which
# is dependent on virt_type. (valid options are: sd, xvd, uvd, vd) (string
# value)
#disk_prefix=<None>
# Number of seconds to wait for instance to shut down after soft reboot request
# is made. We fall back to hard reboot if instance does not shutdown within
# this window. (integer value)
#wait_soft_reboot_seconds=120
# Set to "host-model" to clone the host CPU feature flags; to "host-
# passthrough" to use the host CPU model exactly; to "custom" to use a named
# CPU model; to "none" to not set any CPU model. If virt_type="kvm|qemu", it
# will default to "host-model", otherwise it will default to "none" (string
# value)
# Allowed values: host-model, host-passthrough, custom, none
#cpu_mode=<None>
cpu_mode=host-model
# Set to a named libvirt CPU model (see names listed in
# /usr/share/libvirt/cpu_map.xml). Only has effect if cpu_mode="custom" and
# virt_type="kvm|qemu" (string value)
#cpu_model=<None>
# Location where libvirt driver will store snapshots before uploading them to
# image service (string value)
#snapshots_directory=$instances_path/snapshots
# Location where the Xen hvmloader is kept (string value)
#xen_hvmloader_path=/usr/lib/xen/boot/hvmloader
# Specific cachemodes to use for different disk types e.g:
# file=directsync,block=none (list value)
#disk_cachemodes =
disk_cachemodes="network=writeback"
# A path to a device that will be used as source of entropy on the host.
# Permitted options are: /dev/random or /dev/hwrng (string value)
#rng_dev_path=<None>
# For qemu or KVM guests, set this option to specify a default machine type per
# host architecture. You can find a list of supported machine types in your
# environment by checking the output of the "virsh capabilities"command. The
# format of the value for this config option is host-arch=machine-type. For
# example: x86_64=machinetype1,armv7l=machinetype2 (list value)
#hw_machine_type=<None>
# The data source used to the populate the host "serial" UUID exposed to guest
# in the virtual BIOS. (string value)
# Allowed values: none, os, hardware, auto
#sysinfo_serial=auto
# A number of seconds to memory usage statistics period. Zero or negative value
# mean to disable memory usage statistics. (integer value)
#mem_stats_period_seconds=10
# List of uid targets and ranges.Syntax is guest-uid:host-uid:countMaximum of 5
# allowed. (list value)
#uid_maps =
# List of guid targets and ranges.Syntax is guest-gid:host-gid:countMaximum of
# 5 allowed. (list value)
#gid_maps =
# In a realtime host context vCPUs for guest will run in that scheduling
# priority. Priority depends on the host kernel (usually 1-99) (integer value)
#realtime_scheduler_priority=1
# VM Images format. If default is specified, then use_cow_images flag is used
# instead of this one. (string value)
# Allowed values: raw, qcow2, lvm, rbd, ploop, default
#images_type=default
images_type=rbd
# LVM Volume Group that is used for VM images, when you specify
# images_type=lvm. (string value)
#images_volume_group=<None>
# Create sparse logical volumes (with virtualsize) if this flag is set to True.
# (boolean value)
#sparse_logical_volumes=false
# The RADOS pool in which rbd volumes are stored (string value)
#images_rbd_pool=rbd
images_rbd_pool=vms
# Path to the ceph configuration file to use (string value)
#images_rbd_ceph_conf =
images_rbd_ceph_conf = /etc/ceph/ceph.conf
rbd_user = cinder
rbd_secret_uuid = RBDSECRET
# Discard option for nova managed disks. Need Libvirt(1.0.6) Qemu1.5 (raw
# format) Qemu1.6(qcow2 format) (string value)
# Allowed values: ignore, unmap
#hw_disk_discard=<None>
hw_disk_discard=unmap
# Allows image information files to be stored in non-standard locations (string
# value)
#image_info_filename_pattern=$instances_path/$image_cache_subdirectory_name/%(image)s.info
# DEPRECATED: Should unused kernel images be removed? This is only safe to
# enable if all compute nodes have been updated to support this option (running
# Grizzly or newer level compute). This will be the default behavior in the
# 13.0.0 release. (boolean value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#remove_unused_kernels=true
# Unused resized base images younger than this will not be removed (integer
# value)
#remove_unused_resized_minimum_age_seconds=3600
# Write a checksum for files in _base to disk (boolean value)
#checksum_base_images=false
# How frequently to checksum base images (integer value)
#checksum_interval_seconds=3600
# Method used to wipe old volumes. (string value)
# Allowed values: none, zero, shred
#volume_clear=zero
# Size in MiB to wipe at start of old volumes. 0 => all (integer value)
#volume_clear_size=0
# Compress snapshot images when possible. This currently applies exclusively to
# qcow2 images (boolean value)
#snapshot_compression=false
# Use virtio for bridge interfaces with KVM/QEMU (boolean value)
#use_virtio_for_bridges=true
# Protocols listed here will be accessed directly from QEMU. Currently
# supported protocols: [gluster] (list value)
#qemu_allowed_storage_drivers =
vif_driver=nova.virt.libvirt.vif.LibvirtGenericVIFDriver
[matchmaker_redis]
#
# From oslo.messaging
#
# Host to locate redis. (string value)
#host=127.0.0.1
# Use this port to connect to redis host. (integer value)
#port=6379
# Password for Redis server (optional). (string value)
#password=<None>
[matchmaker_ring]
#
# From oslo.messaging
#
# Matchmaker ring file (JSON). (string value)
# Deprecated group;name - DEFAULT;matchmaker_ringfile
#ringfile=/etc/oslo/matchmaker_ring.json
[metrics]
#
# From nova.scheduler
#
# Multiplier used for weighing metrics. (floating point value)
#weight_multiplier=1.0
# How the metrics are going to be weighed. This should be in the form of
# "<name1>=<ratio1>, <name2>=<ratio2>, ...", where <nameX> is one of the
# metrics to be weighed, and <ratioX> is the corresponding ratio. So for
# "name1=1.0, name2=-1.0" The final weight would be name1.value * 1.0 +
# name2.value * -1.0. (list value)
#weight_setting =
# How to treat the unavailable metrics. When a metric is NOT available for a
# host, if it is set to be True, it would raise an exception, so it is
# recommended to use the scheduler filter MetricFilter to filter out those
# hosts. If it is set to be False, the unavailable metric would be treated as a
# negative factor in weighing process, the returned value would be set by the
# option weight_of_unavailable. (boolean value)
#required=true
# The final weight value to be returned if required is set to False and any one
# of the metrics set by weight_setting is unavailable. (floating point value)
#weight_of_unavailable=-10000.0
[neutron]
#
# From nova.api
#
# Set flag to indicate Neutron will proxy metadata requests and resolve
# instance ids. (boolean value)
#service_metadata_proxy=false
service_metadata_proxy=True
# Shared secret to validate proxies Neutron metadata requests (string value)
#metadata_proxy_shared_secret =
metadata_proxy_shared_secret =qum5net
#
# From nova.network
#
# URL for connecting to neutron (string value)
#url=http://127.0.0.1:9696
url=http://VARINET4ADDR:9696
# User id for connecting to neutron in admin context. DEPRECATED: specify an
# auth_plugin and appropriate credentials instead. (string value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#admin_user_id=<None>
# Username for connecting to neutron in admin context DEPRECATED: specify an
# auth_plugin and appropriate credentials instead. (string value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#admin_username=<None>
admin_username=neutron
# Password for connecting to neutron in admin context DEPRECATED: specify an
# auth_plugin and appropriate credentials instead. (string value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#admin_password=<None>
admin_password=qum5net
# Tenant id for connecting to neutron in admin context DEPRECATED: specify an
# auth_plugin and appropriate credentials instead. (string value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#admin_tenant_id=<None>
# Tenant name for connecting to neutron in admin context. This option will be
# ignored if neutron_admin_tenant_id is set. Note that with Keystone V3 tenant
# names are only unique within a domain. DEPRECATED: specify an auth_plugin and
# appropriate credentials instead. (string value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#admin_tenant_name=<None>
admin_tenant_name=services
# Region name for connecting to neutron in admin context (string value)
#region_name=<None>
region_name=RegionOne
# Authorization URL for connecting to neutron in admin context. DEPRECATED:
# specify an auth_plugin and appropriate credentials instead. (string value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#admin_auth_url=http://localhost:5000/v2.0
admin_auth_url=http://VARINET4ADDR:5000/v2.0
# Authorization strategy for connecting to neutron in admin context.
# DEPRECATED: specify an auth_plugin and appropriate credentials instead. If an
# auth_plugin is specified strategy will be ignored. (string value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#auth_strategy=keystone
auth_strategy=keystone
# Name of Integration Bridge used by Open vSwitch (string value)
#ovs_bridge=br-int
ovs_bridge=br-int
# Number of seconds before querying neutron for extensions (integer value)
#extension_sync_interval=600
extension_sync_interval=600
#
# From nova.network.neutronv2
#
# Authentication URL (string value)
#auth_url=<None>
# Name of the plugin to load (string value)
#auth_plugin=<None>
# PEM encoded Certificate Authority to use when verifying HTTPs connections.
# (string value)
# Deprecated group;name - [neutron]/ca_certificates_file
#cafile=<None>
# PEM encoded client certificate cert file (string value)
#certfile=<None>
# Domain ID to scope to (string value)
#domain_id=<None>
# Domain name to scope to (string value)
#domain_name=<None>
# Verify HTTPS connections. (boolean value)
# Deprecated group;name - [neutron]/api_insecure
#insecure=false
# PEM encoded client certificate key file (string value)
#keyfile=<None>
# User's password (string value)
#password=<None>
# Domain ID containing project (string value)
#project_domain_id=<None>
# Domain name containing project (string value)
#project_domain_name=<None>
# Project ID to scope to (string value)
#project_id=<None>
# Project name to scope to (string value)
#project_name=<None>
# Tenant ID to scope to (string value)
#tenant_id=<None>
# Tenant name to scope to (string value)
#tenant_name=<None>
# Timeout value for http requests (integer value)
# Deprecated group;name - [neutron]/url_timeout
#timeout=<None>
timeout=30
# Trust ID (string value)
#trust_id=<None>
# User's domain id (string value)
#user_domain_id=<None>
# User's domain name (string value)
#user_domain_name=<None>
# User id (string value)
#user_id=<None>
# Username (string value)
# Deprecated group;name - DEFAULT;username
#username=<None>
default_tenant_id=default
[osapi_v21]
#
# From nova.api
#
# DEPRECATED: Whether the V2.1 API is enabled or not. This option will be
# removed in the near future. (boolean value)
# Deprecated group;name - [osapi_v21]/enabled
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#enabled=true
# DEPRECATED: A list of v2.1 API extensions to never load. Specify the
# extension aliases here. This option will be removed in the near future. After
# that point you have to run all of the API. (list value)
# Deprecated group;name - [osapi_v21]/extensions_blacklist
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#extensions_blacklist =
# DEPRECATED: If the list is not empty then a v2.1 API extension will only be
# loaded if it exists in this list. Specify the extension aliases here. This
# option will be removed in the near future. After that point you have to run
# all of the API. (list value)
# Deprecated group;name - [osapi_v21]/extensions_whitelist
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#extensions_whitelist =
[oslo_concurrency]
#
# From oslo.concurrency
#
# Enables or disables inter-process locks. (boolean value)
# Deprecated group;name - DEFAULT;disable_process_locking
#disable_process_locking=false
# Directory to use for lock files. For security, the specified directory
# should only be writable by the user running the processes that need locking.
# Defaults to environment variable OSLO_LOCK_PATH. If external locks are used,
# a lock path must be set. (string value)
# Deprecated group;name - DEFAULT;lock_path
#lock_path=/var/lib/nova/tmp
[oslo_messaging_amqp]
#
# From oslo.messaging
#
# address prefix used when sending to a specific server (string value)
# Deprecated group;name - [amqp1]/server_request_prefix
#server_request_prefix=exclusive
# address prefix used when broadcasting to all servers (string value)
# Deprecated group;name - [amqp1]/broadcast_prefix
#broadcast_prefix=broadcast
# address prefix when sending to any server in group (string value)
# Deprecated group;name - [amqp1]/group_request_prefix
#group_request_prefix=unicast
# Name for the AMQP container (string value)
# Deprecated group;name - [amqp1]/container_name
#container_name=<None>
# Timeout for inactive connections (in seconds) (integer value)
# Deprecated group;name - [amqp1]/idle_timeout
#idle_timeout=0
# Debug: dump AMQP frames to stdout (boolean value)
# Deprecated group;name - [amqp1]/trace
#trace=false
# CA certificate PEM file to verify server certificate (string value)
# Deprecated group;name - [amqp1]/ssl_ca_file
#ssl_ca_file =
# Identifying certificate PEM file to present to clients (string value)
# Deprecated group;name - [amqp1]/ssl_cert_file
#ssl_cert_file =
# Private key PEM file used to sign cert_file certificate (string value)
# Deprecated group;name - [amqp1]/ssl_key_file
#ssl_key_file =
# Password for decrypting ssl_key_file (if encrypted) (string value)
# Deprecated group;name - [amqp1]/ssl_key_password
#ssl_key_password=<None>
# Accept clients using either SSL or plain TCP (boolean value)
# Deprecated group;name - [amqp1]/allow_insecure_clients
#allow_insecure_clients=false
[oslo_messaging_qpid]
#
# From oslo.messaging
#
# Use durable queues in AMQP. (boolean value)
# Deprecated group;name - DEFAULT;amqp_durable_queues
# Deprecated group;name - DEFAULT;rabbit_durable_queues
#amqp_durable_queues=false
# Auto-delete queues in AMQP. (boolean value)
# Deprecated group;name - DEFAULT;amqp_auto_delete
#amqp_auto_delete=false
# Send a single AMQP reply to call message. The current behaviour since oslo-
# incubator is to send two AMQP replies - first one with the payload, a second
# one to ensure the other have finish to send the payload. We are going to
# remove it in the N release, but we must keep backward compatible at the same
# time. This option provides such compatibility - it defaults to False in
# Liberty and can be turned on for early adopters with a new installations or
# for testing. Please note, that this option will be removed in the Mitaka
# release. (boolean value)
#send_single_reply=false
# Qpid broker hostname. (string value)
# Deprecated group;name - DEFAULT;qpid_hostname
#qpid_hostname=localhost
# Qpid broker port. (integer value)
# Deprecated group;name - DEFAULT;qpid_port
#qpid_port=5672
# Qpid HA cluster host:port pairs. (list value)
# Deprecated group;name - DEFAULT;qpid_hosts
#qpid_hosts=$qpid_hostname:$qpid_port
# Username for Qpid connection. (string value)
# Deprecated group;name - DEFAULT;qpid_username
#qpid_username =
# Password for Qpid connection. (string value)
# Deprecated group;name - DEFAULT;qpid_password
#qpid_password =
# Space separated list of SASL mechanisms to use for auth. (string value)
# Deprecated group;name - DEFAULT;qpid_sasl_mechanisms
#qpid_sasl_mechanisms =
# Seconds between connection keepalive heartbeats. (integer value)
# Deprecated group;name - DEFAULT;qpid_heartbeat
#qpid_heartbeat=60
# Transport to use, either 'tcp' or 'ssl'. (string value)
# Deprecated group;name - DEFAULT;qpid_protocol
#qpid_protocol=tcp
# Whether to disable the Nagle algorithm. (boolean value)
# Deprecated group;name - DEFAULT;qpid_tcp_nodelay
#qpid_tcp_nodelay=true
# The number of prefetched messages held by receiver. (integer value)
# Deprecated group;name - DEFAULT;qpid_receiver_capacity
#qpid_receiver_capacity=1
# The qpid topology version to use. Version 1 is what was originally used by
# impl_qpid. Version 2 includes some backwards-incompatible changes that allow
# broker federation to work. Users should update to version 2 when they are
# able to take everything down, as it requires a clean break. (integer value)
# Deprecated group;name - DEFAULT;qpid_topology_version
#qpid_topology_version=1
[oslo_messaging_rabbit]
#
# From oslo.messaging
#
# Use durable queues in AMQP. (boolean value)
# Deprecated group;name - DEFAULT;amqp_durable_queues
# Deprecated group;name - DEFAULT;rabbit_durable_queues
#amqp_durable_queues=false
amqp_durable_queues=False
# Auto-delete queues in AMQP. (boolean value)
# Deprecated group;name - DEFAULT;amqp_auto_delete
#amqp_auto_delete=false
# Send a single AMQP reply to call message. The current behaviour since oslo-
# incubator is to send two AMQP replies - first one with the payload, a second
# one to ensure the other have finish to send the payload. We are going to
# remove it in the N release, but we must keep backward compatible at the same
# time. This option provides such compatibility - it defaults to False in
# Liberty and can be turned on for early adopters with a new installations or
# for testing. Please note, that this option will be removed in the Mitaka
# release. (boolean value)
#send_single_reply=false
# SSL version to use (valid only if SSL enabled). Valid values are TLSv1 and
# SSLv23. SSLv2, SSLv3, TLSv1_1, and TLSv1_2 may be available on some
# distributions. (string value)
# Deprecated group;name - DEFAULT;kombu_ssl_version
#kombu_ssl_version =
# SSL key file (valid only if SSL enabled). (string value)
# Deprecated group;name - DEFAULT;kombu_ssl_keyfile
#kombu_ssl_keyfile =
# SSL cert file (valid only if SSL enabled). (string value)
# Deprecated group;name - DEFAULT;kombu_ssl_certfile
#kombu_ssl_certfile =
# SSL certification authority file (valid only if SSL enabled). (string value)
# Deprecated group;name - DEFAULT;kombu_ssl_ca_certs
#kombu_ssl_ca_certs =
# How long to wait before reconnecting in response to an AMQP consumer cancel
# notification. (floating point value)
# Deprecated group;name - DEFAULT;kombu_reconnect_delay
#kombu_reconnect_delay=1.0
kombu_reconnect_delay=1.0
# How long to wait before considering a reconnect attempt to have failed. This
# value should not be longer than rpc_response_timeout. (integer value)
#kombu_reconnect_timeout=60
# Determines how the next RabbitMQ node is chosen in case the one we are
# currently connected to becomes unavailable. Takes effect only if more than
# one RabbitMQ node is provided in config. (string value)
# Allowed values: round-robin, shuffle
#kombu_failover_strategy=round-robin
# The RabbitMQ broker address where a single node is used. (string value)
# Deprecated group;name - DEFAULT;rabbit_host
#rabbit_host=localhost
rabbit_host=VARINET4ADDR
# The RabbitMQ broker port where a single node is used. (integer value)
# Deprecated group;name - DEFAULT;rabbit_port
#rabbit_port=5672
rabbit_port=5672
# RabbitMQ HA cluster host:port pairs. (list value)
# Deprecated group;name - DEFAULT;rabbit_hosts
#rabbit_hosts=$rabbit_host:$rabbit_port
rabbit_hosts=VARINET4ADDR:5672
# Connect over SSL for RabbitMQ. (boolean value)
# Deprecated group;name - DEFAULT;rabbit_use_ssl
#rabbit_use_ssl=false
rabbit_use_ssl=False
# The RabbitMQ userid. (string value)
# Deprecated group;name - DEFAULT;rabbit_userid
#rabbit_userid=guest
rabbit_userid=guest
# The RabbitMQ password. (string value)
# Deprecated group;name - DEFAULT;rabbit_password
#rabbit_password=guest
rabbit_password=guest
# The RabbitMQ login method. (string value)
# Deprecated group;name - DEFAULT;rabbit_login_method
#rabbit_login_method=AMQPLAIN
# The RabbitMQ virtual host. (string value)
# Deprecated group;name - DEFAULT;rabbit_virtual_host
#rabbit_virtual_host=/
rabbit_virtual_host=/
# How frequently to retry connecting with RabbitMQ. (integer value)
#rabbit_retry_interval=1
# How long to backoff for between retries when connecting to RabbitMQ. (integer
# value)
# Deprecated group;name - DEFAULT;rabbit_retry_backoff
#rabbit_retry_backoff=2
# Maximum number of RabbitMQ connection retries. Default is 0 (infinite retry
# count). (integer value)
# Deprecated group;name - DEFAULT;rabbit_max_retries
#rabbit_max_retries=0
# Use HA queues in RabbitMQ (x-ha-policy: all). If you change this option, you
# must wipe the RabbitMQ database. (boolean value)
# Deprecated group;name - DEFAULT;rabbit_ha_queues
#rabbit_ha_queues=false
rabbit_ha_queues=False
# Specifies the number of messages to prefetch. Setting to zero allows
# unlimited messages. (integer value)
#rabbit_qos_prefetch_count=0
# Number of seconds after which the Rabbit broker is considered down if
# heartbeat's keep-alive fails (0 disable the heartbeat). EXPERIMENTAL (integer
# value)
#heartbeat_timeout_threshold=60
heartbeat_timeout_threshold=0
# How often times during the heartbeat_timeout_threshold we check the
# heartbeat. (integer value)
#heartbeat_rate=2
heartbeat_rate=2
# Deprecated, use rpc_backend=kombu+memory or rpc_backend=fake (boolean value)
# Deprecated group;name - DEFAULT;fake_rabbit
#fake_rabbit=false
[oslo_middleware]
#
# From oslo.middleware
#
# The maximum body size for each request, in bytes. (integer value)
# Deprecated group;name - DEFAULT;osapi_max_request_body_size
# Deprecated group;name - DEFAULT;max_request_body_size
#max_request_body_size=114688
#
# From oslo.middleware
#
# The HTTP Header that will be used to determine what the original request
# protocol scheme was, even if it was hidden by an SSL termination proxy.
# (string value)
#secure_proxy_ssl_header=X-Forwarded-Proto
[rdp]
#
# From nova
#
# Location of RDP html5 console proxy, in the form "http://127.0.0.1:6083/"
# (string value)
#html5_proxy_base_url=http://127.0.0.1:6083/
# Enable RDP related features (boolean value)
#enabled=false
[serial_console]
#
# From nova
#
# Host on which to listen for incoming requests (string value)
#serialproxy_host=0.0.0.0
# Port on which to listen for incoming requests (integer value)
# Minimum value: 1
# Maximum value: 65535
#serialproxy_port=6083
# Enable serial console related features (boolean value)
#enabled=false
# Range of TCP ports to use for serial ports on compute hosts (string value)
#port_range=10000:20000
# Location of serial console proxy. (string value)
#base_url=ws://127.0.0.1:6083/
# IP address on which instance serial console should listen (string value)
#listen=127.0.0.1
# The address to which proxy clients (like nova-serialproxy) should connect
# (string value)
#proxyclient_address=127.0.0.1
[spice]
#
# From nova
#
# Host on which to listen for incoming requests (string value)
#html5proxy_host=0.0.0.0
# Port on which to listen for incoming requests (integer value)
# Minimum value: 1
# Maximum value: 65535
#html5proxy_port=6082
# Location of spice HTML5 console proxy, in the form
# "http://127.0.0.1:6082/spice_auto.html" (string value)
#html5proxy_base_url=http://127.0.0.1:6082/spice_auto.html
# IP address on which instance spice server should listen (string value)
#server_listen=127.0.0.1
# The address to which proxy clients (like nova-spicehtml5proxy) should connect
# (string value)
#server_proxyclient_address=127.0.0.1
# Enable spice related features (boolean value)
#enabled=false
# Enable spice guest agent support (boolean value)
#agent_enabled=true
# Keymap for spice (string value)
#keymap=en-us
[ssl]
#
# From oslo.service.sslutils
#
# CA certificate file to use to verify connecting clients. (string value)
#ca_file=<None>
# Certificate file to use when starting the server securely. (string value)
#cert_file=<None>
# Private key file to use when starting the server securely. (string value)
#key_file=<None>
[trusted_computing]
#
# From nova.scheduler
#
# Attestation server HTTP (string value)
#attestation_server=<None>
# Attestation server Cert file for Identity verification (string value)
#attestation_server_ca_file=<None>
# Attestation server port (string value)
#attestation_port=8443
# Attestation web API URL (string value)
#attestation_api_url=/OpenAttestationWebServices/V1.0
# Attestation authorization blob - must change (string value)
#attestation_auth_blob=<None>
# Attestation status cache valid period length (integer value)
#attestation_auth_timeout=60
# Disable SSL cert verification for Attestation service (boolean value)
#attestation_insecure_ssl=false
[upgrade_levels]
#
# From nova
#
# Set a version cap for messages sent to the base api in any service (string
# value)
#baseapi=<None>
# Set a version cap for messages sent to cert services (string value)
#cert=<None>
# Set a version cap for messages sent to conductor services (string value)
#conductor=<None>
# Set a version cap for messages sent to console services (string value)
#console=<None>
# Set a version cap for messages sent to consoleauth services (string value)
#consoleauth=<None>
#
# From nova.cells
#
# Set a version cap for messages sent between cells services (string value)
#intercell=<None>
# Set a version cap for messages sent to local cells services (string value)
#cells=<None>
#
# From nova.compute
#
# Set a version cap for messages sent to compute services. If you plan to do a
# live upgrade from an old version to a newer version, you should set this
# option to the old version before beginning the live upgrade procedure. Only
# upgrading to the next version is supported, so you cannot skip a release for
# the live upgrade procedure. (string value)
#compute=<None>
#
# From nova.network
#
# Set a version cap for messages sent to network services (string value)
#network=<None>
#
# From nova.scheduler
#
# Set a version cap for messages sent to scheduler services (string value)
#scheduler=<None>
[vmware]
#
# From nova.virt
#
# The maximum number of ObjectContent data objects that should be returned in a
# single result. A positive value will cause the operation to suspend the
# retrieval when the count of objects reaches the specified maximum. The server
# may still limit the count to something less than the configured value. Any
# remaining objects may be retrieved with additional requests. (integer value)
#maximum_objects=100
# The PBM status. (boolean value)
#pbm_enabled=false
# PBM service WSDL file location URL. e.g.
# file:///opt/SDK/spbm/wsdl/pbmService.wsdl Not setting this will disable
# storage policy based placement of instances. (string value)
#pbm_wsdl_location=<None>
# The PBM default policy. If pbm_wsdl_location is set and there is no defined
# storage policy for the specific request then this policy will be used.
# (string value)
#pbm_default_policy=<None>
# Hostname or IP address for connection to VMware vCenter host. (string value)
#host_ip=<None>
# Port for connection to VMware vCenter host. (integer value)
# Minimum value: 1
# Maximum value: 65535
#host_port=443
# Username for connection to VMware vCenter host. (string value)
#host_username=<None>
# Password for connection to VMware vCenter host. (string value)
#host_password=<None>
# Specify a CA bundle file to use in verifying the vCenter server certificate.
# (string value)
#ca_file=<None>
# If true, the vCenter server certificate is not verified. If false, then the
# default CA truststore is used for verification. This option is ignored if
# "ca_file" is set. (boolean value)
#insecure=false
# Name of a VMware Cluster ComputeResource. (string value)
#cluster_name=<None>
# Regex to match the name of a datastore. (string value)
#datastore_regex=<None>
# The interval used for polling of remote tasks. (floating point value)
#task_poll_interval=0.5
# The number of times we retry on failures, e.g., socket error, etc. (integer
# value)
#api_retry_count=10
# VNC starting port (integer value)
# Minimum value: 1
# Maximum value: 65535
#vnc_port=5900
# Total number of VNC ports (integer value)
#vnc_port_total=10000
# Whether to use linked clone (boolean value)
#use_linked_clone=true
# Optional VIM Service WSDL Location e.g http://<server>/vimService.wsdl.
# Optional over-ride to default location for bug work-arounds (string value)
#wsdl_location=<None>
# Physical ethernet adapter name for vlan networking (string value)
#vlan_interface=vmnic0
# Name of Integration Bridge (string value)
#integration_bridge=br-int
# Set this value if affected by an increased network latency causing repeated
# characters when typing in a remote console. (integer value)
#console_delay_seconds=<None>
# Identifies the remote system that serial port traffic will be sent to. If
# this is not set, no serial ports will be added to the created VMs. (string
# value)
#serial_port_service_uri=<None>
# Identifies a proxy service that provides network access to the
# serial_port_service_uri. This option is ignored if serial_port_service_uri is
# not specified. (string value)
#serial_port_proxy_uri=<None>
# The prefix for where cached images are stored. This is NOT the full path -
# just a folder prefix. This should only be used when a datastore cache should
# be shared between compute nodes. Note: this should only be used when the
# compute nodes have a shared file system. (string value)
#cache_prefix=<None>
[vnc]
#
# From nova
#
# Location of VNC console proxy, in the form
# "http://127.0.0.1:6080/vnc_auto.html" (string value)
# Deprecated group;name - DEFAULT;novncproxy_base_url
#novncproxy_base_url=http://127.0.0.1:6080/vnc_auto.html
# Location of nova xvp VNC console proxy, in the form
# "http://127.0.0.1:6081/console" (string value)
# Deprecated group;name - DEFAULT;xvpvncproxy_base_url
#xvpvncproxy_base_url=http://127.0.0.1:6081/console
# IP address on which instance vncservers should listen (string value)
# Deprecated group;name - DEFAULT;vncserver_listen
#vncserver_listen=127.0.0.1
# The address to which proxy clients (like nova-xvpvncproxy) should connect
# (string value)
# Deprecated group;name - DEFAULT;vncserver_proxyclient_address
#vncserver_proxyclient_address=127.0.0.1
# Enable VNC related features (boolean value)
# Deprecated group;name - DEFAULT;vnc_enabled
#enabled=true
# Keymap for VNC (string value)
# Deprecated group;name - DEFAULT;vnc_keymap
#keymap=en-us
[workarounds]
#
# From nova
#
# This option allows a fallback to sudo for performance reasons. For example
# see https://bugs.launchpad.net/nova/+bug/1415106 (boolean value)
#disable_rootwrap=false
# When using libvirt 1.2.2 live snapshots fail intermittently under load. This
# config option provides a mechanism to enable live snapshot while this is
# resolved. See https://bugs.launchpad.net/nova/+bug/1334398 (boolean value)
#disable_libvirt_livesnapshot=true
# DEPRECATED: Whether to destroy instances on startup when we suspect they have
# previously been evacuated. This can result in data loss if undesired. See
# https://launchpad.net/bugs/1419785 (boolean value)
# This option is deprecated for removal.
# Its value may be silently ignored in the future.
#destroy_after_evacuate=true
# Whether or not to handle events raised from the compute driver's 'emit_event'
# method. These are lifecycle events raised from compute drivers that implement
# the method. An example of a lifecycle event is an instance starting or
# stopping. If the instance is going through task state changes due to an API
# operation, like resize, the events are ignored. However, this is an advanced
# feature which allows the hypervisor to signal to the compute service that an
# unexpected state change has occurred in an instance and the instance can be
# shutdown automatically - which can inherently race in reboot operations or
# when the compute service or host is rebooted, either planned or due to an
# unexpected outage. Care should be taken when using this and
# sync_power_state_interval is negative since then if any instances are out of
# sync between the hypervisor and the Nova database they will have to be
# synchronized manually. See https://bugs.launchpad.net/bugs/1444630 (boolean
# value)
#handle_virt_lifecycle_events=true
[xenserver]
#
# From nova.virt
#
# Name of Integration Bridge used by Open vSwitch (string value)
#ovs_integration_bridge=xapi1
# Number of seconds to wait for agent reply (integer value)
#agent_timeout=30
# Number of seconds to wait for agent to be fully operational (integer value)
#agent_version_timeout=300
# Number of seconds to wait for agent reply to resetnetwork request (integer
# value)
#agent_resetnetwork_timeout=60
# Specifies the path in which the XenAPI guest agent should be located. If the
# agent is present, network configuration is not injected into the image. Used
# if compute_driver=xenapi.XenAPIDriver and flat_injected=True (string value)
#agent_path=usr/sbin/xe-update-networking
# Disables the use of the XenAPI agent in any image regardless of what image
# properties are present. (boolean value)
#disable_agent=false
# Determines if the XenAPI agent should be used when the image used does not
# contain a hint to declare if the agent is present or not. The hint is a
# glance property "xenapi_use_agent" that has the value "True" or "False". Note
# that waiting for the agent when it is not present will significantly increase
# server boot times. (boolean value)
#use_agent_default=false
# Timeout in seconds for XenAPI login. (integer value)
#login_timeout=10
# Maximum number of concurrent XenAPI connections. Used only if
# compute_driver=xenapi.XenAPIDriver (integer value)
#connection_concurrent=5
# URL for connection to XenServer/Xen Cloud Platform. A special value of
# unix://local can be used to connect to the local unix socket. Required if
# compute_driver=xenapi.XenAPIDriver (string value)
#connection_url=<None>
# Username for connection to XenServer/Xen Cloud Platform. Used only if
# compute_driver=xenapi.XenAPIDriver (string value)
#connection_username=root
# Password for connection to XenServer/Xen Cloud Platform. Used only if
# compute_driver=xenapi.XenAPIDriver (string value)
#connection_password=<None>
# The interval used for polling of coalescing vhds. Used only if
# compute_driver=xenapi.XenAPIDriver (floating point value)
#vhd_coalesce_poll_interval=5.0
# Ensure compute service is running on host XenAPI connects to. (boolean value)
#check_host=true
# Max number of times to poll for VHD to coalesce. Used only if
# compute_driver=xenapi.XenAPIDriver (integer value)
#vhd_coalesce_max_attempts=20
# Base path to the storage repository (string value)
#sr_base_path=/var/run/sr-mount
# The iSCSI Target Host (string value)
#target_host=<None>
# The iSCSI Target Port, default is port 3260 (string value)
#target_port=3260
# IQN Prefix (string value)
#iqn_prefix=iqn.2010-10.org.openstack
# Used to enable the remapping of VBD dev (Works around an issue in Ubuntu
# Maverick) (boolean value)
#remap_vbd_dev=false
# Specify prefix to remap VBD dev to (ex. /dev/xvdb -> /dev/sdb) (string value)
#remap_vbd_dev_prefix=sd
# Base URL for torrent files; must contain a slash character (see RFC 1808,
# step 6) (string value)
#torrent_base_url=<None>
# Probability that peer will become a seeder. (1.0 = 100%) (floating point
# value)
#torrent_seed_chance=1.0
# Number of seconds after downloading an image via BitTorrent that it should be
# seeded for other peers. (integer value)
#torrent_seed_duration=3600
# Cached torrent files not accessed within this number of seconds can be reaped
# (integer value)
#torrent_max_last_accessed=86400
# Beginning of port range to listen on (integer value)
# Minimum value: 1
# Maximum value: 65535
#torrent_listen_port_start=6881
# End of port range to listen on (integer value)
# Minimum value: 1
# Maximum value: 65535
#torrent_listen_port_end=6891
# Number of seconds a download can remain at the same progress percentage w/o
# being considered a stall (integer value)
#torrent_download_stall_cutoff=600
# Maximum number of seeder processes to run concurrently within a given dom0.
# (-1 = no limit) (integer value)
#torrent_max_seeder_processes_per_host=1
# To use for hosts with different CPUs (boolean value)
#use_join_force=true
# Cache glance images locally. `all` will cache all images, `some` will only
# cache images that have the image_property `cache_in_nova=True`, and `none`
# turns off caching entirely (string value)
# Allowed values: all, some, none
#cache_images=all
# Compression level for images, e.g., 9 for gzip -9. Range is 1-9, 9 being most
# compressed but most CPU intensive on dom0. (integer value)
# Minimum value: 1
# Maximum value: 9
#image_compression_level=<None>
# Default OS type (string value)
#default_os_type=linux
# Time to wait for a block device to be created (integer value)
#block_device_creation_timeout=10
# Maximum size in bytes of kernel or ramdisk images (integer value)
#max_kernel_ramdisk_size=16777216
# Filter for finding the SR to be used to install guest instances on. To use
# the Local Storage in default XenServer/XCP installations set this flag to
# other-config:i18n-key=local-storage. To select an SR with a different
# matching criteria, you could set it to other-config:my_favorite_sr=true. On
# the other hand, to fall back on the Default SR, as displayed by XenCenter,
# set this flag to: default-sr:true (string value)
#sr_matching_filter=default-sr:true
# Whether to use sparse_copy for copying data on a resize down (False will use
# standard dd). This speeds up resizes down considerably since large runs of
# zeros won't have to be rsynced (boolean value)
#sparse_copy=true
# Maximum number of retries to unplug VBD. if <=0, should try once and no retry
# (integer value)
#num_vbd_unplug_retries=10
# Whether or not to download images via Bit Torrent. (string value)
# Allowed values: all, some, none
#torrent_images=none
# Name of network to use for booting iPXE ISOs (string value)
#ipxe_network_name=<None>
# URL to the iPXE boot menu (string value)
#ipxe_boot_menu_url=<None>
# Name and optionally path of the tool used for ISO image creation (string
# value)
#ipxe_mkisofs_cmd=mkisofs
# Number of seconds to wait for instance to go to running state (integer value)
#running_timeout=60
# The XenAPI VIF driver using XenServer Network APIs. (string value)
#vif_driver=nova.virt.xenapi.vif.XenAPIBridgeDriver
# Dom0 plugin driver used to handle image uploads. (string value)
#image_upload_handler=nova.virt.xenapi.image.glance.GlanceStore
# Number of seconds to wait for an SR to settle if the VDI does not exist when
# first introduced (integer value)
#introduce_vdi_retry_wait=20
[zookeeper]
#
# From nova
#
# The ZooKeeper addresses for servicegroup service in the format of
# host1:port,host2:port,host3:port (string value)
#address=<None>
# The recv_timeout parameter for the zk session (integer value)
#recv_timeout=4000
# The prefix used in ZooKeeper to store ephemeral nodes (string value)
#sg_prefix=/servicegroups
# Number of seconds to wait until retrying to join the session (integer value)
#sg_retry_interval=5
[osapi_v3]
enabled=False
|