placement.pp 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # == Class: nova::placement
  2. #
  3. # Class for configuring [placement] section in nova.conf.
  4. #
  5. # === Parameters:
  6. #
  7. # [*password*]
  8. # (required) Password for connecting to Nova Placement API service in
  9. # admin context through the OpenStack Identity service.
  10. #
  11. # [*auth_type*]
  12. # Name of the auth type to load (string value)
  13. # Defaults to 'password'
  14. #
  15. # [*project_name*]
  16. # (optional) Project name for connecting to Nova Placement API service in
  17. # admin context through the OpenStack Identity service.
  18. # Defaults to 'services'
  19. #
  20. # [*project_domain_name*]
  21. # (optional) Project Domain name for connecting to Nova Placement API service in
  22. # admin context through the OpenStack Identity service.
  23. # Defaults to 'Default'
  24. #
  25. # [*user_domain_name*]
  26. # (optional) User Domain name for connecting to Nova Placement API service in
  27. # admin context through the OpenStack Identity service.
  28. # Defaults to 'Default'
  29. #
  30. # [*os_region_name*]
  31. # (optional) Region name for connecting to Nova Placement API service in admin context
  32. # through the OpenStack Identity service.
  33. # Defaults to 'RegionOne'
  34. #
  35. # [*os_interface*]
  36. # (optional) interface name name used for getting the keystone endpoint for
  37. # the placement API.
  38. # Defaults to $::os_service_default
  39. #
  40. # [*username*]
  41. # (optional) Username for connecting to Nova Placement API service in admin context
  42. # through the OpenStack Identity service.
  43. # Defaults to 'placement'
  44. #
  45. # [*auth_url*]
  46. # (optional) Points to the OpenStack Identity server IP and port.
  47. # This is the Identity (keystone) admin API server IP and port value,
  48. # and not the Identity service API IP and port.
  49. # Defaults to 'http://127.0.0.1:35357/v3'
  50. #
  51. class nova::placement(
  52. $password = false,
  53. $auth_type = 'password',
  54. $auth_url = 'http://127.0.0.1:35357/v3',
  55. $os_region_name = 'RegionOne',
  56. $os_interface = $::os_service_default,
  57. $project_domain_name = 'Default',
  58. $project_name = 'services',
  59. $user_domain_name = 'Default',
  60. $username = 'placement',
  61. ) {
  62. include ::nova::deps
  63. nova_config {
  64. 'placement/auth_type': value => $auth_type;
  65. 'placement/auth_url': value => $auth_url;
  66. 'placement/password': value => $password, secret => true;
  67. 'placement/project_domain_name': value => $project_domain_name;
  68. 'placement/project_name': value => $project_name;
  69. 'placement/user_domain_name': value => $user_domain_name;
  70. 'placement/username': value => $username;
  71. 'placement/os_region_name': value => $os_region_name;
  72. 'placement/os_interface': value => $os_interface;
  73. }
  74. }