-
Notifications
You must be signed in to change notification settings - Fork 100
uyuni community project docs
Last modified: January 25, 2023 10:05 CET
You have uyuni-docs-helper container set up, see uyuni-docs-helper
-
From your local git checkout of uyuni-docs in parameters.yml verify that the default value for
site.url
is enabled for uyuni-project.org. We support two outputs SUSE Manager and Uyuni. Check that you are modifying the correct yaml block.uyuni: site: - attribute: title value: "Uyuni Documentation" - attribute: start_page value: "uyuni::index.adoc" - attribute: url value: https://www.uyuni-project.org/uyuni-docs/
-
Check the Uyuni version number in the parameters.yml. This should be adjusted to the release version.
asciidoc: - attribute: productname value: "Uyuni" - attribute: productnumber value: "2024.01" - attribute: docversion value: "2024.01" - attribute: minorversion value: "2024.01"
-
Check the following attributes in the parameters.yml ensuring the file version numbers are correct. These numbers can be found in the OBS package spec files. For example:
salt.spec
. Feel free to ping release engineers for further clarification.asciidoc: - attribute: opensuse-version value: 15.5 - attribute: saltversion value: 3006.0 - attribute: postgresql value: PostgreSQL - attribute: postgresql-version value: 14 - attribute: sles-version value: 15 - attribute: sp-version value: SP5 #use for normal text - attribute: sp-vert value: sp5 #use for terminal block - attribute: sp-version-l value: sp5
-
Build the Static HTML. From the local checkout directory on the command line run:
examplemake clean make configure-uyuni make antora-uyuni
(This will take about 15 minutes)
-
Checkout the gh-pages branch:
git checkout gh-pages
-
Update your local checkout:
git pull
-
Create your new release branch for gh-pages:
git checkout -b gh-pages-uyuni-2024.01
-
Copy the contents of your build/ directory into the root of the new release branch.
cd build/ && cp -r . ../
-
Move onto the next step to add database schema content.
We provide database schema documentation when we publish to Database Schema. To update the database schema documentation perform the following steps.
-
Login to build.opensuse.org
-
Go to the project of interest, for example:
systemsmanagement:Uyuni:Master/uyuni-docs-en
-
Download the reportdb-schema-docs.tar.xz file
-
Untar it.
-
On the command line go to your uyuni-docs checkout.
-
Checkout your gh-pages feature branch.
git checkout gh-pages-your-branch
-
Add all the contents of the untarred directory to the
gh-pages/reporting-db-schema
directory. Do not remove the .nojekyll file from the gh-pages checkout. This will break this publication! If you remove it, and notice something is wrong on the endpoint, add a new `.nojekyll file to the reporting-db-schema directory. -
Push your local release branch.
git add . git commit -am "gh-pages update for uyuni-2024.01" git push
-
From the GitHub webui select the new branch you pushed for creating a PR
-
IMPORTANT! Select gh-pages as the branch to merge into!
-
Create the pull request for gh-page merge and hand it off to @rel-engineers on Slack.
This section assumes you have cloned the Uyuni Docs API Repository.
-
Pull the latest changes from master
-
Checkout your feature branch:
git checkout -b uyuni-2024.01-API-content-update
-
Grab the latest spacewalk-java-apidoc-sources rpm. https://build.opensuse.org/ use the search bar to find: systemsmanagement:Uyuni:Master
-
Click the repositories tab
-
Under the latest leap release click the download repository button.
-
Select noarch then search for api.
-
download the latest spacewalk-java-apidoc-sources-version-number.1.1.uyuni3.noarch.rpm
-
Untar the RPM and copy the contents of the asciidoc directory into your feature branch
modules/api/pages/
directory. -
Compare the content in
modules/api/pages/apilist.adoc
withmodules/api/nav-api-guide.adoc
and ensure no new API method calls have been added. It should be the developer`s responsibility to let us know about such changes. -
Add, commit, and push your changes to your feature branch.
-
Create a pr content request with the master branch at the Uyuni-docs-api repository. Add a helpful description and a label in the form of
API yyyy.mm
and merge. -
Switch to the master branch.
-
Build the API documents with
make antora-uyuni
❗Troubleshooting If you run into issues with index-not-found errors, check the antora.yml file stored in the repository. You need to manually update this file to reflect which product you are building for.
We do not yet have jinja2 logic as in our uyuni-docs repo. When you build from your local system, the command make antora-suma or make antora-uyuni will always look at this antora.yml file. If the wrong product is commented out (for the command you input), Antora will throw this index-not-found error.
-
Once content is built store the contents of the
build directory
someplace safe. -
Checkout the gh-pages branch and create your new uyuni-2024.01-api-gh-pages feature branch.
git checkout gh-pages git checkout -b uyuni-2024.01-api-ghpages
-
Overwrite content in the directory with the new API content
-
Do not remove the
.nojekyll
file. It is used by GitHub to properly publish our sources. -
Add, commit and push your new branch with the content update.
-
Create your PR against gh-pages.
❗Make sure that you are merging the api-ghpages branch into gh-pages and NOT MASTER
-
Inform release managers and provide the pr URL.
-
Previous: Building-Uyuni-docs-for-the-Open-Build-Service[Packaging for the Open Build Service]
-
Up: For more topics on building documentation, see Building documentation