Skip to content
Snippets Groups Projects
  1. Jan 09, 2024
    • Ghanshyam Mann's avatar
      Update python classifier in setup.cfg · 27f162cf
      Ghanshyam Mann authored
      As per the current release tested runtime, we test
      till python 3.11 so updating the same in python
      classifier in setup.cfg
      
      Change-Id: I241e77dbf6bb2085a5bf5d54f9e5b0d2af96fbf3
      27f162cf
  2. Nov 08, 2023
  3. Jun 21, 2023
  4. Apr 13, 2022
    • Christian Berendt's avatar
      ovs-dpdk: add ovs-dpdkctl.sh to the role itself · 89659b46
      Christian Berendt authored
      Currently the ovs-dpdkctl.sh file is present in the tools
      directory and the "Copying ovs-dpdkctl tool" task accesses it.
      
      This is bad practice. Files copied from a role should either be
      referenced by an absolute path or be part of the role itself.
      
      This change moves the ovs-dpdkctl.sh file in the files
      directory of the role.
      
      Change-Id: I01459d39207e54f270f32f37b4a5153c5a819347
      89659b46
  5. Feb 21, 2022
  6. Feb 16, 2022
  7. Jun 30, 2021
  8. May 05, 2021
    • Pierre Riteau's avatar
      setup.cfg: Replace dashes with underscores · 43ca9dad
      Pierre Riteau authored
      Setuptools v54.1.0 introduces a warning that the use of dash-separated
      options in 'setup.cfg' will not be supported in a future version [1].
      Get ahead of the issue by replacing the dashes with underscores. Without
      this, we see 'UserWarning' messages like the following on new enough
      versions of setuptools:
      
        UserWarning: Usage of dash-separated 'description-file' will not be
        supported in future versions. Please use the underscore name
        'description_file' instead
      
      [1] https://github.com/pypa/setuptools/commit/a2e9ae4cb
      
      Change-Id: I666f8a174f53529eff1ba974c1c2265db99601c0
      43ca9dad
  9. Jul 15, 2020
  10. Apr 26, 2020
    • Radosław Piliszek's avatar
      Cleanup py27 support · 234272eb
      Radosław Piliszek authored
      Removes and/or replaces all mentions of py27.
      
      Cleans up obsolete requirements and their lower-constraints.
      
      Separates test-requirements.
      
      Makes lower-constraints pass outside of CI (MarkupSafe).
      
      Adds FIXMEs about some hacky Mocks that may misbehave.
      
      Change-Id: Ifc090bf3c1db17d8542ee591c91e8225a597bfe2
      234272eb
  11. Dec 11, 2019
  12. Oct 13, 2019
  13. Mar 14, 2019
  14. Dec 04, 2018
  15. Nov 26, 2018
    • Eduardo Gonzalez's avatar
      Support stop specific containers · 1a682fab
      Eduardo Gonzalez authored
      With this change, an operator may be able to stop a
      service container without stopping all services in a host.
      This change is the starting point to start
      fast-forward upgrades support.
      In next changes new flags will be introducced to disable
      stop dataplane services during upgrades.
      
      Change-Id: Ifde7a39d7d8596ef0d7405ecf1ac1d49a459d9ef
      Implements: blueprint support-stop-containers
      1a682fab
  16. Jun 09, 2018
  17. May 21, 2018
  18. Nov 28, 2017
  19. Sep 06, 2017
  20. Jul 18, 2017
  21. Jul 13, 2017
    • Eduardo Gonzalez's avatar
      Remove doc build errors · 66b91d8b
      Eduardo Gonzalez authored
      Gates only build deploy-guide docs, not every doc.
      This change clean doc errors, only Line to long.
      
      Also, removes doc/build folder in tox doc environment.
      doc/build is folder where previus executions are stored
      causing next execution to fail due rendered versions does
      not follow doc style checks.
      
      Change-Id: I623a7ee245729a06509f3a7039d5d5ed3813d977
      66b91d8b
  22. Feb 15, 2017
    • Jeffrey Zhang's avatar
      Rename kolla namespace to kolla_ansible · 177fbea7
      Jeffrey Zhang authored
      * Rename kolla namespace to kolla_ansible
      * remove oslo.config.opts entry points which is uesless
      * delete useless tools/version-check.py script
      
      Change-Id: I005dd7223ff23afbb2ce8cbfd0ebec0969102798
      177fbea7
  23. Feb 08, 2017
    • Cao Xuan Hoang's avatar
      Remove support for py34 · 9738f00e
      Cao Xuan Hoang authored
      The gating on python 3.4 is restricted to <= Mitaka. This is due to
      the change from Ubuntu Trusty to Xenial, where only python3.5 is
      available. There is no need to continue to keep these settings.
      
      Change-Id: I7762918aa4d78028d1ceb2cc727c3c7dedd05a00
      9738f00e
  24. Jan 17, 2017
  25. Nov 30, 2016
    • Jeffrey Zhang's avatar
      clean up kolla related files · 92ff63f3
      Jeffrey Zhang authored
      * rename package name from kolla to kolla-ansible
      * remove docker for data_files
      * remove kolla docker
      * remove kolla-build console_scripts
      
      Change-Id: I53abbf79dffb54eb785a39ba04d375bc4e4f27b0
      92ff63f3
  26. Nov 28, 2016
    • Vladislav Belogrudov's avatar
      Add tool to merge passwords during release upgrade · 14f9246f
      Vladislav Belogrudov authored
      Typical usage:
         cp /etc/kolla/passwords.yml /etc/kolla/passwords.yml.old
         kolla-genpwd
         kolla-mergepwd --old /etc/kolla/passwords.yml.old \
                        --new /etc/kolla/passwords.yml     \
                        --final /etc/kolla/passwords.yml
      
      Change-Id: Ibbc598909e28e096145841aec929d0cfcf8f7cab
      Implements: blueprint kolla-merge-passwords
      14f9246f
  27. Nov 23, 2016
    • Borne Mace's avatar
      Added support for a stop playbook in kolla · 2cfc069e
      Borne Mace authored
      Behavior of stop playbook is very similar to the destroy
      playbook.  This is meant when you may just want to bring down
      the service for some sort of maintenance but not destroy all
      the associated data. Also added support for the new playbook
      into the kolla-ansible command.
      
      Change-Id: Icf0ca91de71dc8ead3a024de3e5b9e49116560d1
      Implements: blueprint ansible-stop-host-playbook
      2cfc069e
  28. Nov 02, 2016
  29. Oct 10, 2016
    • Borne Mace's avatar
      Added missing cleanup-images in setup.cfg · 9685eca0
      Borne Mace authored
      The destroy playbook calls the cleanup-images script.  All other
      scripts related to destroy were in setup.cfg while cleanup-images
      was missing.
      
      TrivialFix
      
      Change-Id: I3d5dc435d03aded9e8b415dda8435b5e1c5ec937
      9685eca0
  30. Aug 18, 2016
  31. Jul 31, 2016
  32. Jul 14, 2016
    • Yatin Kumbhare's avatar
      Add Python 3.5 classifier and venv · bcebc7cb
      Yatin Kumbhare authored
      Now that there is a passing gate job, we can claim support for
      Python 3.5 in the classifier. This patch also adds the convenience
      py35 venv.
      
      Change-Id: Ia7b1fb88ac108e1e8fd6ed963967e731ae3ca5a4
      Closes-Bug: #1603006
      bcebc7cb
  33. Apr 19, 2016
  34. Mar 23, 2016
  35. Mar 21, 2016
    • SamYaple's avatar
      Add generate_passwords.py to generate passwords · f03e06e0
      SamYaple authored
      
      As with all tools, this is a first pass at the generation. Perhaps we
      even want to move this into kolla/kolla/cmd and be generated with tox
      itself in the future.
      
      This tool, when run, will only populate empty fields that have no
      values meaning that it is safe to run repeatedly on the same file.
      
      Of note, there is no way to preserve comments in the file after it has
      been processed by the yaml parser in python. Comments and sections
      will remain in the passwords.yml template for additional documentation
      if the user wishes to populate the file themselves.
      
      Use SystemRandom and clean up the docs a bit to not use pronouns.
      
      Co-Authored-By: default avatarSteven Dake <stdake@cisco.com>
      
      Closes-Bug: #1559266
      Change-Id: I2932d592df8871f1b7811059206d0b4d0553a687
      f03e06e0
  36. Feb 02, 2016
  37. Jan 06, 2016
  38. Dec 27, 2015
    • SamYaple's avatar
      Fix version in master · 82fcf8fa
      SamYaple authored
      Master version was still set to 1.0.0. This became alot more obvious
      in a recent patch when we started pulling that version number for the
      tag...
      
      TrivialFix
      
      Change-Id: Ie9c95a4dc606d0527c44fcd624b4473e45f7f3cf
      82fcf8fa
  39. Dec 14, 2015
Loading