You have been subscribed to a public bug:

heat version - 8.0.4

Step to reproduce:
1. template:
heat_template_version: 2017-02-24

description: test template

resources:
  test_subnetpool:
    type: OS::Neutron::SubnetPool
    properties:
      default_prefixlen: 25
      max_prefixlen: 32
      min_prefixlen: 22
      prefixes:
        - "192.168.0.0/16"
  test_net1:
    type: OS::Neutron::Net
  test_subnet1:
    type: OS::Neutron::Subnet
    properties:
      network: { get_resource: test_net1 }
      ip_version: 4
      subnetpool: { get_resource: test_subnetpool }
      gateway_ip: null

2. create stack
3. created subnet have gateway IP: 192.168.0.1 but expected disabled gateway

Because of gateway_ip property ignored when subnetpool present there is
no way to create subnet without gateway from subnetpool.

** Affects: neutron
     Importance: Undecided
         Status: New

-- 
"OS::Neutron::Subnet" ignore gateway_ip when subnetpool used
https://bugs.launchpad.net/bugs/1716721
You received this bug notification because you are a member of Yahoo! 
Engineering Team, which is subscribed to neutron.

-- 
Mailing list: https://launchpad.net/~yahoo-eng-team
Post to     : yahoo-eng-team@lists.launchpad.net
Unsubscribe : https://launchpad.net/~yahoo-eng-team
More help   : https://help.launchpad.net/ListHelp

Reply via email to