The generated JSON Schema documentation for the Devfile 2.x is available here: https://devfile.github.io/.
Devfile 2.1 development documentation
The repository contains multiple versions of the documentation, so be sure to modify and test the version of the documentation for your contribution.
- For the latest version, use the master branch.
- For a previous version, use the
v<n>.<m>.x
branch wheren
is the major version of the release, andm
is the minor version. For example,v2.0.x
.- Be sure when merging any changes for a previous release to merge into the correct branch and not master.
Build is the same for each branch. To build the documentation locally, you need Antora, node v10.12 or higher, and yarn. Then from the root of this repository, run:
$ yarn install
$ yarn run generate-api-reference
$ antora antora-playbook-for-development.yml
These commands generate the html documentation in folder out/docs
. Open out/docs/index.html
in the browser. However, note that the build
may build multiple versions of the documentation, so be sure to select and view the version you are editing when viewing in the browser.
Alternatively, to build and run a preview server on http://0.0.0.0:4000, run:
$ yarn install
$ gulp
Additionally, when pushing to a branch or working on a PR, the site is built by a GH action and made available in a ZIP file as a GH action build artifact and can be tested locally.
https://github.com/devfile/api with label area/documentation
Each release a new git release, tag and branch will be created. The tag marks the initial release documentation and the branch is used for any post release updates. Next release work then continues on the master branch. To enable this the following release process must be followed:
Set the new branch to be specific to the release version. For example, if the release version is 2.0.0:
-
Prior to this process the api repo is updated to copy a final version of the schema to a directory for that version. For example:
docs/modules/user-guide/attachments/jsonschemas/2.0.0/devfile.json
-
Create the new branch for the tag:
git fetch --all git checkout -b v2.0.x v2.0.0`
-
Modify
docs/antora.yaml
:- Set the correct title and version.
- Remove the pre-release attribute.
- Set
.asciidoc .attributes .prod-ver
for the release - For example if release is 2.0.0
name: devfile nav: - modules/user-guide/nav.adoc start_page: user-guide:index.adoc title: Devfile User Guide v2.0.0 version: '2.0.0' asciidoc: attributes: prod-ver: 2.0
-
Modify .gitignore to ignore the doc generated from the schema which are not for the release:
docs/modules/user-guide/attachments/api-reference/next docs/modules/user-guide/attachments/api-reference/stable docs/modules/user-guide/examples/api-reference/next docs/modules/user-guide/examples/api-reference/stable
-
Modify
docs/modules/user-guide/partials/ref_api-reference.adoc
to pull the iframe and link from the newly generated directories.[id="ref_api-reference_{context}"] = API Reference This section describes the devfile API. ++++ <iframe src="./_attachments/api-reference/2.0.0/index.html" style="border:none;width: 100%;min-height:50em;height:-webkit-fill-available;"></iframe> ++++ .Additional resources * link:{attachmentsdir}/jsonschemas/2.0.0/devfile.json[Download the current JSON Schema]```
-
Build the docs and verify all looks good.
-
Add the changes, commit the branch and push directly to the docs repo. (There is no merge required for this branch).
Now the master branch can be updated for the next release and to link the previous release docs
from the newly created v.2.0.x
branch.
- Modify 'docs/antora.yaml' to set the correct title,version,pre-release and prod-ver. For example:
asciidoc: attributes: prod-ver: 2.1 name: devfile nav: - modules/user-guide/nav.adoc start_page: user-guide:index.adoc title: Devfile User Guide 2.1.0 version: '2.1.0' prerelease: -alpha
- Modify
antora-playbook.yaml
to add content for the new release created (if not already covered by branch patternv2.*
:Note: pulling the release branches from github rather than locally is required for the docs build workflow.content: sources: - branches: HEAD start_path: docs url: ./ - branches: [v2.*] start_path: docs url: https://github.com/devfile/docs
- Build, test, commit and merge the changes