Documentation
This document discusses how to visually inspect documentation changes as they would be applied to the live website. All changes to documentation should be inspected locally before being pushed to a PR.
Prerequisites
The docs are built with Hugo which can be installed along with the required extensions by following the docsy install guide.
Note: Be sure to install hugo-extended.
We use git submodules
to install the docsy theme. From the operator-sdk
directory, update the submodules to install the theme.
git submodule update --init --recursive
Build and Serve
You can build and serve your docs to localhost:1313
. From the website/
directory run:
hugo server
Any changes will be included in real time.
Check Docs
make test-docs
will validate changelog fragments, build doc HTML in a container, and check its links. Please consider running this locally before creating a PR to save CI resources.
Last modified February 12, 2021: Makefile: `test-docs` target tests docs only (#4518) (5f4e285f)