
Currently all the OS::Nova::Server resource created don't pass any user-data. It's possible to pass user-data as well as using heat SoftwareConfig/SoftwareDeployment resources, and this can be useful when you have simple "first boot" tasks which are possible either via cloud-init, or via simple run-once scripts. This enables passing such data by implementing a new provider resource OS::TripleO::NodeUserData, which defaults to passing an empty mime archive (thus it's a no-op). An example of non no-op usage is also provided. Change-Id: Id0caba69768630e3a10439ba1fc2547a609c0cfe
19 lines
1.0 KiB
YAML
19 lines
1.0 KiB
YAML
resource_registry:
|
|
OS::TripleO::BlockStorage: cinder-storage.yaml
|
|
OS::TripleO::Compute: compute.yaml
|
|
OS::TripleO::SoftwareDeployment: OS::Heat::StructuredDeployment
|
|
OS::TripleO::Controller: controller.yaml
|
|
OS::TripleO::ObjectStorage: swift-storage.yaml
|
|
OS::TripleO::Net::SoftwareConfig: net-config-noop.yaml
|
|
OS::TripleO::CephStorage: ceph-storage.yaml
|
|
OS::TripleO::ControllerPostDeployment: controller-post.yaml
|
|
OS::TripleO::ComputePostDeployment: compute-post.yaml
|
|
OS::TripleO::ObjectStoragePostDeployment: swift-storage-post.yaml
|
|
OS::TripleO::BlockStoragePostDeployment: cinder-storage-post.yaml
|
|
OS::TripleO::CephStoragePostDeployment: ceph-storage-post.yaml
|
|
OS::TripleO::SwiftDevicesAndProxy::SoftwareConfig: swift-devices-and-proxy-config.yaml
|
|
OS::TripleO::CephClusterConfig::SoftwareConfig: ceph-cluster-config.yaml
|
|
OS::TripleO::AllNodes::SoftwareConfig: all-nodes-config.yaml
|
|
OS::TripleO::BootstrapNode::SoftwareConfig: bootstrap-config.yaml
|
|
OS::TripleO::NodeUserData: firstboot/userdata_default.yaml
|