diff --git a/hot/blazar/blazar_host.yaml b/hot/blazar/blazar_host.yaml new file mode 100644 index 00000000..1ec65e13 --- /dev/null +++ b/hot/blazar/blazar_host.yaml @@ -0,0 +1,20 @@ +heat_template_version: 2018-08-31 + +description: Sample Blazar host template + +parameters: + name: + type: string + description: The name of the host + default: sample_blazar_host + +resources: + sample_host: + type: OS::Blazar::Host + properties: + name: {get_param: name} + +outputs: + cpu_info: + value: {get_attr: [sample_host, cpu_info]} + description: Information of the CPU of the host diff --git a/hot/blazar/blazar_lease.yaml b/hot/blazar/blazar_lease.yaml new file mode 100644 index 00000000..98407498 --- /dev/null +++ b/hot/blazar/blazar_lease.yaml @@ -0,0 +1,37 @@ +heat_template_version: 2018-08-31 + +description: Sample Blazar lease template + +parameters: + name: + type: string + description: The name of the lease + default: sample_blazar_lease + +resources: + sample_lease: + type: OS::Blazar::Lease + properties: + name: {get_param: name} + start_date: "2030-01-01 10:00" + end_date: "2030-01-10 10:00" + reservations: + - resource_type: "physical:host" + min: 4 + max: 6 + hypervisor_properties: "[\">=\", \"$vcpus\", \"4\"]" + resource_properties: "" + - resource_type: "virtual:instance" + amount: 4 + vcpus: 2 + memory_mb: 4096 + disk_gb: 100 + affinity: false + +outputs: + host_reservation_id: + value: {get_attr: [sample_lease, reservations, 0, id]} + description: ID of host reservation + instance_reservation_id: + value: {get_attr: [sample_lease, reservations, 1, id]} + description: ID of instance reservation