├── .gitreview ├── .gitignore └── README.rst /.gitreview: -------------------------------------------------------------------------------- 1 | [gerrit] 2 | host=review.opendev.org 3 | port=29418 4 | project=openstack/python-ironic-inspector-client.git 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled files 2 | *.py[co] 3 | *.a 4 | *.o 5 | *.so 6 | 7 | # Sphinx 8 | _build 9 | doc/source/reference/api/ 10 | 11 | # release notes build 12 | releasenotes/build 13 | 14 | # Packages/installer info 15 | *.egg 16 | *.egg-info 17 | dist 18 | build 19 | eggs 20 | parts 21 | var 22 | sdist 23 | develop-eggs 24 | .installed.cfg 25 | .eggs/ 26 | 27 | # Other 28 | *.DS_Store 29 | .idea 30 | .testrepository 31 | .tox 32 | .venv 33 | .*.swp 34 | .coverage 35 | cover 36 | AUTHORS 37 | ChangeLog 38 | *.sqlite 39 | *~ 40 | .stestr 41 | 42 | # Vagrant 43 | .vagrant 44 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- 1 | This project is no longer maintained. 2 | 3 | The contents of this repository are still available in the Git 4 | source code management system. To see the contents of this 5 | repository before it reached its end of life, please check out the 6 | previous commit with "git checkout HEAD^1". 7 | 8 | Please use `built-in in-band inspection in ironic 9 | `_ 10 | instead. For existing deployments, see the `migration guide 11 | `_. 12 | 13 | For any further questions, please email 14 | openstack-discuss@lists.openstack.org or join #openstack-dev on 15 | OFTC. 16 | --------------------------------------------------------------------------------