This highlights: - The dev-quickstart guide, which is more up to date than most contributor docs. - Common docs (OpenDev / OpenStack contributor guides) - Bug information (also very up to date) This removes: - Top-level link to BfV and multitenant devstacks; these configs are linked from devstack-guide - Hilariously out of date information around branch support Change-Id: If47d9776c65c91b972a3fab8364eacc50a29b2bb Depends-On: https://review.opendev.org/c/openstack/ironic/+/920365
3.7 KiB
Developer's Guide
Getting Started
If you are new to ironic, this section contains information that should help you get started as a developer working on the project or contributing to the project.
This guide assumes you have read the OpenDev getting started documentation. It will also be helpful to be familiar with OpenStack contributors documentation, which contains basic information about how to use many of the community tools and OpenStack practices.
Basics
Basic information about setting up development environments with
devstack or bifrost, or getting unit tests running can be found in our
dev-quickstart
.
Bugs
Information about how ironic projects handle bugs can be found below.
Bugs Reporting and Triaging Guide <bugs> Bug Deputy Guide <bug-deputy>
Community & Policies
Bare Metal Community <community> Developer Contribution Guide <contributing> Specifications <https://specs.openstack.org/openstack/ironic-specs/> Frequently Asked Questions <faq> Contributor Vision <vision> OpenStack Vision <vision-reflection>
The following pages describe the architecture of the Bare Metal service and may be helpful to anyone working on or with the service, but are written primarily for developers.
Ironic System Architecture <architecture> Developing New Notifications <notifications> OSProfiler Tracing <osprofiler-support> Rolling Upgrades <rolling-upgrades> Role Based Access Control Testing <rbac-testing>
These pages contain information for PTLs, cross-project liaisons, and core reviewers.
Releasing Ironic Projects <releasing> Ironic Governance Structure <governance>
states dev-quickstart
Writing Drivers
Ironic's community includes many hardware vendors who contribute drivers that enable more advanced functionality when Ironic is used in conjunction with that hardware. To do this, the Ironic developer community is committed to standardizing on a Python Driver API that meets the common needs of all hardware vendors, and evolving this API without breaking backwards compatibility. However, it is sometimes necessary for driver authors to implement functionality - and expose it through the REST API - that can not be done through any existing API.
To facilitate that, we also provide the means for API calls to be "passed through" ironic and directly to the driver. Some guidelines on how to implement this are provided below. Driver authors are strongly encouraged to talk with the developer community about any implementation using this functionality.
Driver Overview <drivers> Writing "vendor_passthru" methods <vendor-passthru> Creating new BIOS interfaces <bios_develop> Third party continuous integration testing <third-party-ci> Writing Deploy or Clean Steps <deploy-steps>
Full Ironic Server Python API Reference
api/modules
Understanding the Ironic's CI
It's important to understand the role of each job in the CI, how to add new jobs and how to debug failures that may arise. To facilitate that, we have created the documentation below.
Job roles in the CI <jobs-description> How to add a new job? <adding-new-job> How to debug failures in CI jobs <debug-ci-failures>