Make sure services are up before creating an application

... otherwise the murano_application resource fails because of
incomplete service configurations.

Change-Id: I5726e42d293b85819735f53511ef032b524c60f6
This commit is contained in:
Takashi Kajinami 2023-01-30 18:59:16 +09:00
parent e4890cfc26
commit b502a45732
1 changed files with 3 additions and 0 deletions

View File

@ -85,4 +85,7 @@ Puppet::Type.newtype(:murano_application) do
raise ArgumentError, 'Name and package path must be set' unless self[:name] and self[:package_path]
end
autorequire(:anchor) do
['murano::service::end']
end
end