You can access the HTML version of this tutorial here: https://redhat-scholars.github.io/kubernetes-tutorial/
If you are using Visual Studio Code with the Remote Containers Extension, you don’t need to install anything locally to be able to contribute or run through this tutorial.
Simply follow these instructions:
-
(Only if running with podman) Set the environment variable
DEVCONTAINER_TARGET_PREFIX=podman -
Open VS Code from the root of the
kubernetes-tutorialrepository and when prompted indicate that you want to "open the folder in a container".
Once the devcontainer is initialized, from the Visual Studio Code terminal you will be able to run all the commands outlined for creating documentation.
In the root of your git repository, run:
bin/build-site.shAnd then open your gh-pages/index.html file:
open gh-pages/index.htmlYou can develop the tutorial docs locally using a rapid iterative cycle.
First, install the yarn dependencies:
yarn installAnd now start gulp. It will create the website and open your browser connected with browser-sync. Everytime it detects a change, it will automatically refresh your browser page.
gulpYou can clean the local cache using:
gulp clean