openstack-helm/tools/deployment/common/heat-subnet-pool-deployment.yaml
Vladimir Kozhukalov 52cd767c84 Cleanup unnecessary files
We recently re-worked all the deployment jobs
so they use `deploy-env` Ansible role which works
for both multi-node and single-node environments.
This means there is no need to have diffrent sets
of scripts for these two cases.

Also when we deploy Openstack components it is better
to have values overrides for different scenarios but
not different sets of scripts. Here we remove unused
deployment scripts which in many cases duplicated
the code base.

We will be cleaning up the code base even further to
provide excelent user experience.

Change-Id: Iacda03964a4dd0e60873593df9f590ce20504f2f
2023-11-02 16:12:27 -05:00

29 lines
582 B
YAML

heat_template_version: 2016-10-14
parameters:
subnet_pool_name:
type: string
default: shared-default-subnetpool
subnet_pool_prefixes:
type: comma_delimited_list
default:
- 10.0.0.0/8
subnet_pool_default_prefix_length:
type: number
default: 24
resources:
public_net:
type: OS::Neutron::SubnetPool
properties:
name:
get_param: subnet_pool_name
shared: true
is_default: true
default_prefixlen:
get_param: subnet_pool_default_prefix_length
prefixes:
get_param: subnet_pool_prefixes