openstack-helm/tools/gate/files/heat-basic-bm-deployment.yaml
Vladimir Kozhukalov fc365b8dd5 Bump Cirros image version to 0.6.2
In Bobcat by default the ssh keypair is generated
with ed25519 algorithm which is incompatible with
Cirros 0.3.5. The Cirros 0.6.2 also requires minimum
128Mi of RAM

Change-Id: I0135c09a9ae5bc3171891576b29a450f7000f180
2023-10-12 13:45:53 -05:00

57 lines
950 B
YAML

heat_template_version: 2016-10-14
parameters:
baremetal_net:
type: string
default: baremetal
baremetal_subnet:
type: string
default: baremetal
image:
type: string
default: Cirros 0.6.2 64-bit
flavor:
type: string
default: baremetal
ssh_key:
type: string
default: heat-vm-key
resources:
server:
type: OS::Nova::Server
properties:
image:
get_param: image
flavor:
get_param: flavor
key_name:
get_param: ssh_key
networks:
- port:
get_resource: server_port
user_data_format: RAW
server_port:
type: OS::Neutron::Port
properties:
network:
get_param: baremetal_net
fixed_ips:
- subnet:
get_param: baremetal_subnet
port_security_enabled: false
outputs:
ip:
value:
get_attr:
- server_port
- fixed_ips
- 0
- ip_address