Commit Graph

67 Commits

Author SHA1 Message Date
Alex Kavanagh 1b84195616 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 000e53df53a64ffed76c960f5dbe5410676defa9
  - Updates for caracal testing support
    
    These updates, on the master branch, are to support testing the caracal
    packages and support of the charms for caracal.  They do NOT lock the charms
    down, and don't change the testing branches to stable branches.
    
    Change-Id: Ie58f8722e4eeb06048084fd72c21f1fd614222af
2024-03-25 23:27:59 +00:00
Martin Kalcok 219f03e5d4 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to a008114a9c8499bc92f15c5281bcf1eb1e9fd920
  - Add 2023.2 Bobcat support
    
    * add mantic to metadata series
    * align testing with bobcat
    * add new bobcat bundles
    * add bobcat bundles to tests.yaml
    * add bobcat tests to osci.yaml
    * update build-on and run-on bases
    * drop kinetic
    
    Depends-On: https://review.opendev.org/c/openstack/charm-nova-cloud-controller/+/895840
    Change-Id: I9c8c456fae377cf5330c6fbeef86e4fec47e473b
2023-10-03 13:14:42 +00:00
Dmitrii Shcherbakov 7b4d48c550 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 32e0a1fbdf7edd60d71fed7ec1822f3a912b0bab
  - Add data plane testing for NDR routes
    
    The change includes modifications to bundles to set up components
    necessary to spawn instances and provide actual connectivity to them. It
    makes the testing more heavy but adds assurances that the data plane
    works for the routes advertised by the NDR control plane.
    
    The bundle changes also fix an issue that got in with the original OVN
    bundles: manage-neutron-plugin-legacy-mode is set to True and the plugin
    is determined to be OVS instead of OVN. The control plane for NDR still
    worked but with a non-functioning ML2/ovs config causing OVN DBs to be
    empty.
    
    Func-Test-PR: https://github.com/openstack-charmers/zaza-openstack-tests/pull/1076
    Change-Id: Ie59b942a0800ce8dd979398f41ed2138472481f1
2023-06-21 05:06:40 +00:00
Dmitrii Shcherbakov ad241538b1 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to b97646f6652ada059fb6416d94b8db5da42d9772
  - Add OVN + neutron-dynamic-routing bundles
    
    * OVN + NDR testing is possible as of Neutron 22.0.0 (2023.1 or
      Antelope), see [1][2].
    * Vault is added to non-OVN bundles as the tests.yaml file is shared
      and uses a configure step for Vault
    
    Important note: at the time of writing the OVN integration code in
    Neutron does not have any use for `distributed` and `ha` router extra
    attributes and whether distributed or centralized FIPs are used in OVN
    is governed by the ovn/enable_distributed_floating_ip option which does
    not operate at the per-router granularity and is global.
    
    The docs have not been updated and still say [3] that OVN routers do not
    expose `ha` or `distributed` attributes which are now there as of [1].
    
    At the same time, the NDR implementation uses the `distributed`
    attribute to determine whether to use the gateway port IP and treat FIPs
    as centralized [4] and add a next-hop to the gateway port IP or not in
    the advertised /32 routes. For routers with `distributed == True`,
    NDR only attempts [5] to find ports with device owner
    `'floatingip_agent_gateway'`. Therefore, when distributed FIPs are
    enabled via ovn/enable_distributed_floating_ip, the `distributed` extra
    attribute on a router is set to `False` and /32 routes are advertised
    as centralized.
    
    The distributed FIP case is currently not exercised by the current
    bundles neither for ML2/ovs nor ML2/ovn. The current bundles only test
    the control plane and route advertisement, not packet forwarding via
    advertised next-hops.
    
    [1] https://review.opendev.org/c/openstack/neutron/+/864051
    [2] 4d1a7bd0bc
    [3] cd66232c2b/doc/source/ovn/faq/index.rst (L16-L29)
    [4] 513ea649be/neutron_dynamic_routing/db/bgp_db.py (L564)
    [5] 513ea649be/neutron_dynamic_routing/db/bgp_db.py (L567-L580)
    
    Change-Id: I21ba5d79ff100b839874a65e4ddd32f20dfb1311
2023-05-31 05:50:37 +00:00
Dmitrii Shcherbakov 0b04fdafb9 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 5963ea4fc32ef269d93f2fc8e05b363815397c43
  - Update the charm for new releases
    
    * Switch to test bundles;
    * Update charmcraft.yaml;
    * Update requirements files;
    * Switch to ch:osci-frr from ch:quagga;
    * Update tox config files.
    
    Func-Test-PR: https://github.com/openstack-charmers/zaza-openstack-tests/pull/1060
    Change-Id: Ie611966bb19631a586285f45f27dc52b96ff2937
2023-05-25 06:01:56 +00:00
Alex Kavanagh ac3ad2c3f0 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 13a994f78db35c2f0c17ebaa93c7738b8fc6a5b4
  - Migrate charm charmcraft and for the yoga track
    
    Change-Id: I455d079ffb7ca081d8a1b54d1afcc28d5b8e1751
2022-04-22 19:26:52 +00:00
Hervé Beraud e6c2a98c63 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 033a7945202e9b352321ae7441bbf94a6169e09a
  - Use unittest.mock instead of mock
    
    The mock third party library was needed for mock support in py2
    runtimes. Since we now only support py36 and later, we can use the
    standard lib unittest.mock module instead.
    
    Note that https://github.com/openstack/charms.openstack is used during tests
    and he need `mock`, unfortunatelly it doesn't declare `mock` in its
    requirements so it retrieve mock from other charm project (cross dependency).
    So we depend on charms.openstack first and when
    Ib1ed5b598a52375e29e247db9ab4786df5b6d142 will be merged then CI
    will pass without errors.
    
    Depends-On: Ib1ed5b598a52375e29e247db9ab4786df5b6d142
    Change-Id: I2bb3b81355a3bd9f6f055d1c66b038f4f0abfd0e
2021-12-16 10:26:30 +00:00
Corey Bryant 505cfa1b38 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 5a518be8841cd5b73765a25310cc48e632d4061d
  - Additional test updates
    
    * switch to release-specific zosci functional tests
    * switch to yoga zosci unit test job
    * add py39
    
    Change-Id: Ia7f9d5b00ac17636cb59280c78ffa60d815db832
2021-11-18 14:36:21 +00:00
Corey Bryant fa690999e3 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 594689b69970bde4cb3ef09f615de4adcf338f20
  - Add yoga bundles and release-tool syncs
    
    * charm-helpers sync for classic charms
    * pin pyparsing for aodhclient
    * pin cffi for py35
    * add non-voting focal-yoga bundle
    * add non-voting jammy-yoga bundle
    * add series metadata for jammy
    * switch xena bundles to voting
    * run focal-ussuri as smoke tests
    * remove trusty, xenial, and groovy metadata and tests
    
    Change-Id: I11f3688718d11db7043a47d661b75e8ee629f180
2021-11-15 09:47:10 +00:00
Alex Kavanagh cbee3d6322 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 7f8c15924991b33e12ee159e0d1458b6ceb95908
  - Add xena bundles
    
    - add non-voting focal-xena bundle
    - add non-voting impish-xena bundle
    - rebuild to pick up charm-helpers changes
    - update tox/pip.sh to ensure setuptools<50.0.0
    
    Change-Id: I65e364b76039cf7ffa496e1c7070d811ee592eb0
2021-11-03 17:19:05 +00:00
Aurelien Lourot 042d7affa9 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 6b5d9fbaf7bd538bfbc13047b87a98dab8ddeac9
  - Sync release-tools
    
    In order to fix ResolutionImpossible on tox invocation.
    
    https://github.com/openstack-charmers/release-tools/issues/151
    https://github.com/openstack-charmers/release-tools/pull/152
    
    Change-Id: Iff416d760df7ab86b73f6e62e046bfc668c91f10
2021-07-29 08:49:30 +00:00
Alex Kavanagh 754078856a Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to c134578bbc8933ebcfca34966f33b9ac4161b441
  - Test bundles for focal-wallaby and hirsute-wallaby
    
    These are the test bundles (and any associated changes) for
    focal-wallaby and hirsute-wallaby support.
    
    Change-Id: I6d21ce67b7d85811dc6b7f800ee5367a71fc3b98
    Co-authored-by: Aurelien Lourot <aurelien.lourot@canonical.com>
2021-07-01 07:32:40 +00:00
Zuul 6e6b8c7c3a Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 2342815d1c6e750a307af415252b6be0dedaff3e
  - Merge "Add impish to metadata.yaml"
  - Add impish to metadata.yaml
    
    Change-Id: Iaf3302b712c8d3f0fb7a538b7e93ccb2233b4a1b
2021-06-07 09:24:51 +00:00
Corey Bryant 47f157a4fb Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 71133c3825095e07e3c9f61447494a8d15a1a4c1
  - rebuild - restore c-h proxy env vars for add-apt-repository
    
    Change-Id: I733d30de317723b8e500b4f93967ea8fbc1bcf90
2021-06-04 23:35:08 +00:00
Alex Kavanagh d4b90791db Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 4a383916b10eb34ea77fa8f8715c2063a7c0d80c
  - Updates to flip all libraries back to master
    
    This patchset updates all the requirements for charms.openstack,
    charm-helpers, charms.ceph, zaza and zaza-openstack-tests back
    to master branch.
    
    Change-Id: I3460aefa4931e7c90c690a6c077ff569c31bc0a3
2021-05-03 21:01:19 +00:00
Alex Kavanagh 84da684269 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to be7a3a5262a718735f4314d00c02a56aa1de8f40
  - 21.04 libraries freeze for charms on master branch
    
    * charm-helpers sync for classic charms
    * build.lock file for reactive charms
    * ensure tox.ini is from release-tools
    * ensure requirements.txt files are from release-tools
    * On reactive charms:
      - ensure stable/21.04 branch for charms.openstack
      - ensure stable/21.04 branch for charm-helpers
    
    Change-Id: Ie62670221edbd995c6a2d9256dba58105fb9c28e
2021-04-06 20:35:23 +00:00
Chris MacNaughton 6cd43ee4a3 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to e8a343b131c584e35e3af9833e8676ad00c92e1c
  - Add new osci.yaml
    
    This change is preparatory to migration Ubuntu OpenStack CI
    from Jenkins to Zuul
    
    Change-Id: I996496c12e189257a27fdb39dd094ccb0a6df929
2021-03-10 09:19:14 +00:00
Alex Kavanagh 3d5c38ef65 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 5e68058fafae1bd7fa5ace16686ab759578313a3
  - Add hirsute and remove trusty from metadata.yaml
    
    This update adds the new hirsute Ubuntu release (21.04) and
    removes trusty support (14.04 which is EOL at 21.04).
    
    Change-Id: I35feba77b5fe2b0bb5b23d5bff02b3ea5d6c357f
2021-03-03 10:51:33 +00:00
Billy Olsen 51757d2a46 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to a5e355d6c30e16ab3627e4cb48ebfd0c49aa6fe9
  - Prune gate tests
    
    Prune gate tests and move tests to dev_bundles.
    
    Change-Id: Iec84e483079151942d8aa7a98c7e2610742b6544
2021-02-23 09:51:17 +00:00
Alex Kavanagh 7eef22f091 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to d8ebb7a5dcddfe754135e6fe0a8ffe230703f2a0
  - Updates to pin charm-tools to 2.8.3
    
    * Update requirements.txt to pin charm-tools to 2.8.3
    * Update tox.ini to change the build parameters.
    * This upgrades from <2.7 which adds reproducible charms
    * Bug was fixed that controlled the default output directory
      doesn't get 'builds' appended.  The tox change puts it
      back so that stable & master both build to the same
      directory.  This may be reviewed in the future.
    
    Change-Id: I4ad9e3f8abb39a7e865d1db377da60335a47594d
2021-02-18 15:03:26 +00:00
Alex Kavanagh 6c636656b8 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to d83bf07623d19ab18b6c9346ac3cf1ba21f91247
  - Rebuild to use charm-tools pre 2.8 release
    
    Reverting to an earlier version of charm-tools to
    resolve some building issues seen with latest 2.8.2
    version.
    
    Change-Id: I17ff809af5c11317f69a923163c2545a19ca4968
2021-02-02 21:50:03 +00:00
David Ames 07a5736028 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 49c9289e8a783dc3573b8bce97d433fc2f2dc3b8
  - Rebuild with udpated charm-tools 2.8.2
    
    Validate the newest version of charm-tools: 2.8.2
    https://github.com/juju/charm-tools/pull/598
    
    Change-Id: I4afa236f1a4336ec630803b8a0dfd55a124ab1b8
2021-02-02 08:38:03 +00:00
Alex Kavanagh 06fa04946d Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to ca6a7558b64ad2590b6bd013119f731b4a43d2d5
  - Updates for testing period for 20.01 release
    
    Includes updates to charmhelpers/charms.openstack for cert_utils
    and unit-get for the install hook error on Juju 2.9
    
    * charm-helpers sync for classic charms
    * rebuild for reactive charms
    * ensure tox.ini is from release-tools
    * ensure requirements.txt files are from release-tools
    * On reactive charms:
      - ensure master branch for charms.openstack
      - ensure master branch for charm-helpers
    
    Change-Id: Ib0ae239fa70656318174d13b857aee6de7c67afc
2021-01-19 09:17:06 +00:00
Zuul 6ac06123ed Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 3120fc8f957cbf9e167e4a6672662ad5cfe52aee
  - Merge "Add Groovy to the test gate"
  - Add Groovy to the test gate
    
    Change-Id: Ib1cf61f53fe0c82714025a1f6a38fc00ed677753
2021-01-14 10:07:27 +00:00
Aurelien Lourot a1a9ca68ac Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to 864baaddb8c6fc8580ed8b663377647e226bc62b
  - Remove Disco and Eoan bits
    
    Change-Id: I1f8e6f2eb3746c2ce7c92de60cfc21c87dc9a68e
2021-01-13 15:22:43 +00:00
Aurelien Lourot 592f1a5629 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  to e7d6f4ddd0137d6e0e1c25fdd18318bde0b1139a
  - Sync release-tools
    
    Sync release-tools boilerplate containing these changes
    in order to pin pip < 20.3:
    https://github.com/openstack-charmers/release-tools/pull/125
    https://github.com/openstack-charmers/release-tools/pull/126
    
    Change-Id: I44b3540287fd3301100399371724a6742fe16ff1
2020-12-14 22:19:25 +00:00
Alex Kavanagh c734721dfe Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Rebuild reactive charms to pick up latest charm-helpers release.
    
    v0.20.18 has been released and needs incorporating into the reactive charms.
    
    Change-Id: I23ddf2bb56f73953670c1a6230592fb7ec9d6677
2020-10-15 11:19:48 +00:00
Alex Kavanagh ea0042e0f2 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Sync libraries & common files prior to freeze
    
    * charm-helpers sync for classic charms
    * charms.ceph sync for ceph charms
    * rebuild for reactive charms
    * sync tox.ini files as needed
    * sync requirements.txt files to sync to standard
    
    Change-Id: I33b46b798a639ac38a265140fd383dee97415158
2020-10-06 14:07:18 +00:00
Aurelien Lourot d5d330a9e4 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Add focal-victoria to the test gate
    
    Change-Id: I680f08751f5a8ae2a22a3e006b99c4bb0702b979
2020-09-08 11:13:35 +00:00
Alex Kavanagh a93f1b2e23 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Release sync for 20.08
    
    - Classic charms: sync charm-helpers.
    - Classic ceph based charms:  also sync charms.ceph
    - Reactive charms: trigger a rebuild
    - sync tox.ini
    - sync requirements.txt and test-requirements.txt
    
    Change-Id: Ie6280abef46bfa70e141d7e6eada41ead8ce1a39
2020-07-30 13:52:12 +00:00
Zuul 0e29c250cb Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Merge "Remove duplicate dependency: Jinja2"
  - Remove duplicate dependency: Jinja2
    
    Closes-Bug: #1885935
    Change-Id: If970fdc135c78c7a5ad1ae14daba3e96b9363c39
2020-07-16 15:35:39 +00:00
Aurelien Lourot 115844d081 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Add Victoria test bundles
    
    Change-Id: Id71a99b13dcd586294fadd6df3d711ccbd539dbb
2020-07-15 11:50:13 +00:00
Corey Bryant 3828339432 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Add victoria package version
    
    Also remove jinja2 from wheelhouse.txt as is a duplicate
    and due to improvements in charm build it now causes the
    build to fail.
    
    Change-Id: I75a1f34cd3b1c31191c6022a2440216bcad18e3b
2020-07-14 22:12:51 +00:00
Zuul f832c3ac1a Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Merge "Stop to use the __future__ module."
  - Stop to use the __future__ module.
    
    The __future__ module [1] was used in this context to ensure compatibility
    between python 2 and python 3.
    
    We previously dropped the support of python 2.7 [2] and now we only support
    python 3 so we don't need to continue to use this module and the imports
    listed below.
    
    Imports commonly used and their related PEPs:
    - `division` is related to PEP 238 [3]
    - `print_function` is related to PEP 3105 [4]
    - `unicode_literals` is related to PEP 3112 [5]
    - `with_statement` is related to PEP 343 [6]
    - `absolute_import` is related to PEP 328 [7]
    
    [1] https://docs.python.org/3/library/__future__.html
    [2] https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html
    [3] https://www.python.org/dev/peps/pep-0238
    [4] https://www.python.org/dev/peps/pep-3105
    [5] https://www.python.org/dev/peps/pep-3112
    [6] https://www.python.org/dev/peps/pep-0343
    [7] https://www.python.org/dev/peps/pep-0328
    
    Change-Id: Ib361c211cb5537953f5d62f256d1def4796531ab
2020-07-13 05:42:46 +00:00
Alex Kavanagh a4ca1d8245 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Updates for 20.08 cycle start for groovy and libs
    
    - Adds groovy to the series in the metadata
    - Classic charms: sync charm-helpers.
    - Classic ceph based charms:  also sync charms.ceph
    - Reactive charms: trigger a rebuild
    
    Change-Id: I9df5207cd2ffe3efcf12e0ccd31f94e2b5436f08
2020-06-05 15:14:38 +00:00
Alex Kavanagh 6b5be98fd8 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Rebuild for sync charm-helpers for 20.05 release
    
    Change-Id: I867c5b5f6853995ce3a1838c83853d10a02c7fb7
2020-05-17 20:38:14 +00:00
Alex Kavanagh 97d0b0928f Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Enable focal and ussuri in the charm functional tests
    
    Change-Id: I71f4d1b541bfb875efb1107639aafe06b97c7064
2020-05-01 09:01:22 +00:00
Zuul ff22534bb5 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Merge "[ussuri][goal] Updates for python 2.7 drop"
  - [ussuri][goal] Updates for python 2.7 drop
    
    OpenStack is dropping the py2.7 support in ussuri cycle.
    
    charm repos need few updates on either py2 drop or updating
    ussuri python template.
    
    Complete discussion & schedule can be found in
    - http://lists.openstack.org/pipermail/openstack-discuss/2019-October/010142.html
    - https://etherpad.openstack.org/p/drop-python2-support
    
    Ussuri Communtiy-wide goal:
    https://governance.openstack.org/tc/goals/selected/ussuri/drop-py27.html
    
    Change-Id: If4e76bcac38ff994486816366d78787a9ac4f5b5
2020-03-25 06:51:01 +00:00
Frode Nordahl 14106f6cc0 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Rebuild for updates to charms.openstack
    
    Change-Id: I1d23abfc743c52600104fccbe4440434c27d6464
2020-03-11 18:53:43 +00:00
Frode Nordahl 4cf381e02c Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Update charm build requirements
    
    Change-Id: Icc10d12a921d4fc6d3d775a591039becef73a846
2020-03-06 12:49:50 +00:00
Alex Kavanagh 1256dcfd6a Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Remove disco support from the charm
    
    Change-Id: I6530b80dddfa84e6602bbfa5d1098c26e2ad77a0
2020-02-19 10:32:10 +00:00
Liam Young 52d4e147ab Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Rebuild for 20.02 release
    
    Change-Id: I1b1e8a1e0166d52c67305218cfc5933b1ff713a6
2020-02-06 15:55:04 +00:00
Zuul e956cb4421 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Merge "Unit testing"
  - Unit testing
    
    Increase unit test coverage to 100%
    
    Change-Id: I56320abb0fc5e5112278ab632dee845c48c8980c
2020-01-23 17:15:31 +00:00
Adam Dyess b270a2ccf8 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Closes-Bug: 1859938
    
    Imports the dragnet module in the reactive handlers module to ensure
    that the BaseOpenStackCharm.singleton is updated with a release_pkt
    attribute
    
    Change-Id: I99d091c21987d9fafba43754e69c5c3e24fa50ca
2020-01-21 22:58:32 +00:00
Sahid Orentino Ferdjaoui da9e5f2e26 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Enable functional tests for train
    
    This patch also add a fix in dragent to handle train version.
    
    Change-Id: I8babe05c1754ee6a327ba9db1fe4b76e65d620df
    Signed-off-by: Sahid Orentino Ferdjaoui <sahid.ferdjaoui@canonical.com>
2019-10-25 09:15:35 +00:00
Ryan Beisner dddcbf7540 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Sync charm/ceph helpers, tox, and requirements
    
    Change-Id: I37c1817d9b5198dfdeee1e7b14e40aec28362385
2019-10-19 13:09:50 +00:00
Zuul 39c4870987 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Merge "Enable bundle specific tox zaza target"
  - Enable bundle specific tox zaza target
    
    Change-Id: Ic6aeedb0be7a29af238c7a540a5dfabcd18445ea
2019-08-23 12:32:41 +00:00
Chris MacNaughton 8e80c4b414 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Update series metadata
    
    Ensure that EOL releases are removed from metadata
    and tests, and that the current dev release is enabled
    in metadata.  Dev release tests are enabled separately
    because of chickens and eggs.
    
    Change-Id: Ib54af6ee5ea51839b67e8f5f131e279abe24bf85
2019-08-19 19:36:50 +00:00
Frode Nordahl 357e2f8281 Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Distribute direct charm dependencies
    
    Do not rely on system installed Python packages but distribute the
    direct charm dependencies as part of the charms wheelhouse.
    
    As the span of distributions we need to support with reactive
    charms widens we will run into compability problems with the
    current model.
    
    For further reference see juju/charm-helpers#341 and
    juju-solutions/layer-basic#135
    
    Change-Id: I87c8649d83dd19eeaea17f2a209993cece723983
2019-08-15 16:00:57 +00:00
Zuul 5f30cf882b Update git submodules
* Update charm-neutron-dynamic-routing from branch 'master'
  - Merge "Add Python 3 Train unit tests"
  - Add Python 3 Train unit tests
    
    This is a mechanically generated patch to ensure unit testing is in place
    for all of the Tested Runtimes for Train.
    
    See the Train python3-updates goal document for details:
    https://governance.openstack.org/tc/goals/train/python3-updates.html
    
    Note that openstack-python35-jobs is retained since this charm is supported
    on Xenial.
    
    Change-Id: I837fd1be8e021c05737d29d0c320736148a589ba
    Story: #2005924
    Task: #34228
2019-08-13 18:12:09 +00:00