deps.pp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. # == Class: nova::deps
  2. #
  3. # Nova anchors and dependency management
  4. #
  5. class nova::deps {
  6. # Setup anchors for install, config and service phases of the module. These
  7. # anchors allow external modules to hook the begin and end of any of these
  8. # phases. Package or service management can also be replaced by ensuring the
  9. # package is absent or turning off service management and having the
  10. # replacement depend on the appropriate anchors. When applicable, end tags
  11. # should be notified so that subscribers can determine if installation,
  12. # config or service state changed and act on that if needed.
  13. anchor { 'nova::install::begin': }
  14. -> Package<| tag == 'nova-package'|>
  15. ~> anchor { 'nova::install::end': }
  16. -> anchor { 'nova::config::begin': }
  17. -> Nova_config<||>
  18. ~> anchor { 'nova::config::end': }
  19. -> anchor { 'nova::db::begin': }
  20. -> anchor { 'nova::db::end': }
  21. ~> anchor { 'nova::service::begin': }
  22. ~> Service<| tag == 'nova-service' |>
  23. ~> anchor { 'nova::service::end': }
  24. # paste-api.ini config shold occur in the config block also.
  25. Anchor['nova::config::begin']
  26. -> Nova_paste_api_ini<||>
  27. ~> Anchor['nova::config::end']
  28. # Support packages need to be installed in the install phase, but we don't
  29. # put them in the chain above because we don't want any false dependencies
  30. # between packages with the nova-package tag and the nova-support-package
  31. # tag. Note: the package resources here will have a 'before' relationshop on
  32. # the nova::install::end anchor. The line between nova-support-package and
  33. # nova-package should be whether or not Nova services would need to be
  34. # restarted if the package state was changed.
  35. Anchor['nova::install::begin']
  36. -> Package<| tag == 'nova-support-package'|>
  37. -> Anchor['nova::install::end']
  38. # TODO(aschultz): check if we can remove these as I think they are no longer
  39. # valid since nova_cells is replaced by cell_v2 and the others are part of
  40. # nova network
  41. # The following resourcs are managed by calling 'nova manage' and so the
  42. # database must be provisioned before they can be applied.
  43. Anchor['nova::dbsync_api::end']
  44. -> Nova_cells<||>
  45. Anchor['nova::dbsync::end']
  46. -> Nova_cells<||>
  47. Anchor['nova::dbsync_api::end']
  48. -> Nova_floating<||>
  49. Anchor['nova::dbsync::end']
  50. -> Nova_floating<||>
  51. Anchor['nova::dbsync_api::end']
  52. -> Nova_network<||>
  53. Anchor['nova::dbsync::end']
  54. -> Nova_network<||>
  55. # all db settings should be applied and all packages should be installed
  56. # before dbsync starts
  57. Oslo::Db<||> -> Anchor['nova::dbsync::begin']
  58. # Installation or config changes will always restart services.
  59. Anchor['nova::install::end'] ~> Anchor['nova::service::begin']
  60. Anchor['nova::config::end'] ~> Anchor['nova::service::begin']
  61. # This is here for backwards compatability for any external users of the
  62. # nova-start anchor. This should be considered deprecated and removed in the
  63. # N cycle
  64. anchor { 'nova-start':
  65. require => Anchor['nova::install::end'],
  66. before => Anchor['nova::config::begin'],
  67. }
  68. #############################################################################
  69. # NOTE(aschultz): these are defined here because this syntax allows us
  70. # to override the subscribe/notify order using the spaceship operator.
  71. # The ->/~> does not seem to be able to be updated after the fact. Since
  72. # we have to flip cell v2 ordering for the N->O upgrade process, we need
  73. # to not use the chaining arrows. ugh.
  74. #############################################################################
  75. # Wedge this in after the db creation and before the services
  76. anchor { 'nova::dbsync_api::begin':
  77. subscribe => Anchor['nova::db::end']
  78. } ->
  79. anchor { 'nova::dbsync_api::end':
  80. notify => Anchor['nova::service::begin'],
  81. }
  82. # Wedge this after db creation and api sync but before the services
  83. anchor { 'nova::dbsync::begin':
  84. subscribe => [
  85. Anchor['nova::db::end'],
  86. Anchor['nova::dbsync_api::end']
  87. ]
  88. } ->
  89. anchor { 'nova::dbsync::end':
  90. notify => Anchor['nova::service::begin']
  91. }
  92. # Wedge cell_v2 put this between api sync and db sync by default but can
  93. # be overridden using the spaceship operator to move it around when needed
  94. anchor { 'nova::cell_v2::begin':
  95. subscribe => Anchor['nova::dbsync_api::end']
  96. } ->
  97. Nova::Cell_v2::Cell<||> ~>
  98. anchor { 'nova::cell_v2::end':
  99. notify => Anchor['nova::dbsync::begin']
  100. }
  101. # Wedge online data migrations after db/api_sync and before service
  102. anchor { 'nova::db_online_data_migrations::begin':
  103. subscribe => Anchor['nova::dbsync_api::end']
  104. } ->
  105. anchor { 'nova::db_online_data_migrations::end':
  106. notify => Anchor['nova::service::begin']
  107. }
  108. }