diff --git a/docs/book/src/component-config-tutorial/api-changes.md b/docs/book/src/component-config-tutorial/api-changes.md index e65d6100b3e..5228da9204e 100644 --- a/docs/book/src/component-config-tutorial/api-changes.md +++ b/docs/book/src/component-config-tutorial/api-changes.md @@ -1,5 +1,17 @@ # Changing things up + + This tutorial will show you how to create a custom configuration file for your project by modifying a project generated with the `--component-config` flag passed to the `init` command. The full tutorial's source can be found diff --git a/docs/book/src/component-config-tutorial/config-type.md b/docs/book/src/component-config-tutorial/config-type.md index d8d42925de3..fe26a622074 100644 --- a/docs/book/src/component-config-tutorial/config-type.md +++ b/docs/book/src/component-config-tutorial/config-type.md @@ -1,5 +1,17 @@ # Adding a new Config Type + + To scaffold out a new config Kind, we can use `kubebuilder create api`. ```bash diff --git a/docs/book/src/component-config-tutorial/custom-type.md b/docs/book/src/component-config-tutorial/custom-type.md index 76dfeda43d2..853844d1a07 100644 --- a/docs/book/src/component-config-tutorial/custom-type.md +++ b/docs/book/src/component-config-tutorial/custom-type.md @@ -1,5 +1,17 @@ # Using a Custom Type + +