quota.pp 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. # == Class: nova::quota
  2. #
  3. # Class for overriding the default quota settings.
  4. #
  5. # === Parameters:
  6. #
  7. # [*quota_instances*]
  8. # (optional) Number of instances
  9. # Defaults to 10
  10. #
  11. # [*quota_cores*]
  12. # (optional) Number of cores
  13. # Defaults to 20
  14. #
  15. # [*quota_ram*]
  16. # (optional) Ram in MB
  17. # Defaults to 51200
  18. #
  19. # [*quota_volumes*]
  20. # (optional) Deprecated. This parameter does nothing and will be removed.
  21. # Defaults to undef
  22. #
  23. # [*quota_gigabytes*]
  24. # (optional) Deprecated. This parameter does nothing and will be removed.
  25. # Defaults to undef
  26. #
  27. # [*quota_floating_ips*]
  28. # (optional) Number of floating IPs
  29. # Defaults to 10
  30. #
  31. # [*quota_fixed_ips*]
  32. # (optional) Number of fixed IPs (this should be at least the number of instances allowed)
  33. # Defaults to -1
  34. #
  35. # [*quota_metadata_items*]
  36. # (optional) Number of metadata items per instance
  37. # Defaults to 128
  38. #
  39. # [*quota_max_injected_files*]
  40. # (optional) Deprecated. Use quota_injected_files instead
  41. # Defaults to undef
  42. #
  43. # [*quota_max_injected_file_content_bytes*]
  44. # (optional) Deprecated. Use quota_injected_file_content_bytes instead
  45. # Defaults to undef
  46. #
  47. # [*quota_max_injected_file_path_bytes*]
  48. # (optional) Deprecated. Use quota_injected_file_path_bytes instead
  49. # Defaults to undef
  50. #
  51. # [*quota_injected_files*]
  52. # (optional) Number of files that can be injected per instance
  53. # Defaults to 5
  54. #
  55. # [*quota_injected_file_content_bytes*]
  56. # (optional) Maximum size in bytes of injected files
  57. # Defaults to 10240
  58. #
  59. # [*quota_injected_file_path_bytes*]
  60. # (optional) Deprecated. Use quota_injected_file_path_length instead
  61. # Defaults to undef
  62. #
  63. # [*quota_injected_file_path_length*]
  64. # (optional) Maximum size in bytes of injected file path
  65. # Defaults to 255
  66. #
  67. # [*quota_security_groups*]
  68. # (optional) Number of security groups
  69. # Defaults to 10
  70. #
  71. # [*quota_security_group_rules*]
  72. # (optional) Number of security group rules
  73. # Defaults to 20
  74. #
  75. # [*quota_key_pairs*]
  76. # (optional) Number of key pairs
  77. # Defaults to 100
  78. #
  79. # [*quota_server_groups*]
  80. # (optional) Number of server groups per project
  81. # Defaults to 10
  82. #
  83. # [*quota_server_group_members*]
  84. # (optional) Number of servers per server group
  85. # Defaults to 10
  86. #
  87. # [*reservation_expire*]
  88. # (optional) Time until reservations expire in seconds
  89. # Defaults to 86400
  90. #
  91. # [*until_refresh*]
  92. # (optional) Count of reservations until usage is refreshed
  93. # Defaults to 0
  94. #
  95. # [*max_age*]
  96. # (optional) Number of seconds between subsequent usage refreshes
  97. # Defaults to 0
  98. #
  99. # [*quota_driver*]
  100. # (optional) Deprecated. Driver to use for quota checks
  101. # Defaults to undef
  102. #
  103. class nova::quota(
  104. $quota_instances = 10,
  105. $quota_cores = 20,
  106. $quota_ram = 51200,
  107. $quota_floating_ips = 10,
  108. $quota_fixed_ips = -1,
  109. $quota_metadata_items = 128,
  110. $quota_injected_files = 5,
  111. $quota_injected_file_content_bytes = 10240,
  112. $quota_injected_file_path_length = 255,
  113. $quota_security_groups = 10,
  114. $quota_security_group_rules = 20,
  115. $quota_key_pairs = 100,
  116. $quota_server_groups = 10,
  117. $quota_server_group_members = 10,
  118. $reservation_expire = 86400,
  119. $until_refresh = 0,
  120. $max_age = 0,
  121. # DEPRECATED PARAMETERS
  122. $quota_volumes = undef,
  123. $quota_gigabytes = undef,
  124. $quota_max_injected_files = undef,
  125. $quota_injected_file_path_bytes = undef,
  126. $quota_max_injected_file_content_bytes = undef,
  127. $quota_max_injected_file_path_bytes = undef,
  128. $quota_driver = undef,
  129. ) {
  130. include ::nova::deps
  131. if $quota_volumes {
  132. warning('The quota_volumes parameter is deprecated and has no effect.')
  133. }
  134. if $quota_gigabytes {
  135. warning('The quota_gigabytes parameter is deprecated and has no effect.')
  136. }
  137. if $quota_driver {
  138. warning('The quota_driver parameter is deprecated and has no effect.')
  139. }
  140. if $quota_max_injected_files {
  141. warning('The quota_max_injected_files parameter is deprecated, use quota_injected_files instead.')
  142. $quota_injected_files_real = $quota_max_injected_files
  143. } else {
  144. $quota_injected_files_real = $quota_injected_files
  145. }
  146. if $quota_max_injected_file_content_bytes {
  147. warning('The quota_max_injected_file_content_bytes is deprecated, use quota_injected_file_content_bytes instead.')
  148. $quota_injected_file_content_bytes_real = $quota_max_injected_file_content_bytes
  149. } else {
  150. $quota_injected_file_content_bytes_real = $quota_injected_file_content_bytes
  151. }
  152. if $quota_max_injected_file_path_bytes {
  153. fail('The quota_max_injected_file_path_bytes parameter is deprecated, use quota_injected_file_path_length instead.')
  154. }
  155. if $quota_injected_file_path_bytes {
  156. warning('The quota_injected_file_path_bytes parameter is deprecated, use quota_injected_file_path_length instead.')
  157. $quota_injected_file_path_length_real = $quota_injected_file_path_bytes
  158. } else {
  159. $quota_injected_file_path_length_real = $quota_injected_file_path_length
  160. }
  161. nova_config {
  162. 'DEFAULT/quota_instances': value => $quota_instances;
  163. 'DEFAULT/quota_cores': value => $quota_cores;
  164. 'DEFAULT/quota_ram': value => $quota_ram;
  165. 'DEFAULT/quota_floating_ips': value => $quota_floating_ips;
  166. 'DEFAULT/quota_fixed_ips': value => $quota_fixed_ips;
  167. 'DEFAULT/quota_metadata_items': value => $quota_metadata_items;
  168. 'DEFAULT/quota_injected_files': value => $quota_injected_files_real;
  169. 'DEFAULT/quota_injected_file_content_bytes': value => $quota_injected_file_content_bytes_real;
  170. 'DEFAULT/quota_injected_file_path_length': value => $quota_injected_file_path_length_real;
  171. 'DEFAULT/quota_security_groups': value => $quota_security_groups;
  172. 'DEFAULT/quota_security_group_rules': value => $quota_security_group_rules;
  173. 'DEFAULT/quota_key_pairs': value => $quota_key_pairs;
  174. 'DEFAULT/quota_server_groups': value => $quota_server_groups;
  175. 'DEFAULT/quota_server_group_members': value => $quota_server_group_members;
  176. 'DEFAULT/reservation_expire': value => $reservation_expire;
  177. 'DEFAULT/until_refresh': value => $until_refresh;
  178. 'DEFAULT/max_age': value => $max_age;
  179. }
  180. }