Adding new documentation

To contribute new documentation, follow these steps:

  1. Identify the audience and intended use for the information.
  2. Choose the type of content you wish to contribute.
  3. You can use a template to get started:
  4. Choose appropriate titles and filenames.
  5. Write your new content. See the How-to guides to help you with this process. Feel free to reach out to the Docs Working Group with any questions.
  6. Open a PR in the knative/docs GitHub repository to kick off the review process. For details, see our Using GitHub help.

Identify the audience and intended use

The best documentation starts by knowing the intended readers, their knowledge, and what you expect them to do with the information. Otherwise, you cannot determine the appropriate scope and depth of information to provide, its ideal structure, or the necessary supporting information. The following examples show this principle in action:

  • The reader needs to perform a specific task: Tell them how to recognize when the task is necessary and provide the task itself as a list of numbered steps, don’t simply describe the task in general terms.

  • The reader must understand a concept before they can perform a task: Before the task, tell them about the prerequisite information and provide a link to it.

  • The reader needs to make a decision: Provide the conceptual information necessary to know when to make the decision, the available options, and when to choose one option instead of the other.

  • The reader is an administrator but not a SWE: Provide a script, not a link to a code sample in a developer’s guide.

  • The reader needs to extend the features of the product: Provide an example of how to extend the feature, using a simplified scenario for illustration purposes.

  • The reader needs to understand complex feature relationships: Provide a diagram showing the relationships, rather than writing multiple pages of content that is tedious to read and understand.

The most important thing to avoid is the common mistake of simply giving readers all the information you have, because you are unsure about what information they need.

If you need help identifying the audience for you content, we are happy to help and answer all your questions during the Docs Working Group biweekly meetings.

Content types

When you understand the audience and the intended use for the information you provide, you can choose content type that best addresses their needs. To make it easy for you to choose, the following table shows the supported content types, their intended audiences, and the goals each type strives to achieve:

Content type Goals Audiences
Concepts Explain some significant aspect of Knative. For example, a concept page describes the configuration model of a feature and explains its functionality. Concept pages don't include sequences of steps. Instead, provide links to corresponding tasks. Readers that want to understand how features work with only basic knowledge of the project.
Reference pages Provide exhaustive and detailed technical information. Common examples include API parameters, command-line options, configuration settings, and advanced procedures. Reference content is generated from the Knative code base and tested for accuracy. Readers with advanced and deep technical knowledge of the project that needs specific bits of information to complete advanced tasks.
Examples Describe a working and stand-alone example that highlights a set of features, an integration of Knative with other projects, or an end-to-end solution for a use case. Examples must use an existing Knative setup as a starting point. Examples must include an automated test since they are maintained for technical accuracy. Readers that want to quickly run the example themselves and experiment. Ideally, readers should be able to easily change the example to produce their own solutions.
Tasks Shows how to achieve a single goal using Knative features. Tasks contain procedures written as a sequence of steps. Tasks provide minimal explanation of the features, but include links to the concepts that provide the related background and knowledge. Tasks must include automated tests since they are tested and maintained for technical accuracy. Readers that want to use Knative features.
Setup pages Focus on the installation steps needed to complete an Knative deployment. Setup pages must include automated tests since they are tested and maintained for technical accuracy. New and existing Knative users that want to complete a deployment.
Blog posts Focus on Knative or products and technologies related to it. Blog posts fall in one of the following three categories:
  • Posts detailing the author’s experience using and configuring Knative, especially those that articulate a novel experience or perspective.
  • Posts highlighting Knative features.
  • Posts detailing how to accomplish a task or fulfill a specific use case using Knative. Unlike Tasks and Examples, the technical accuracy of blog posts is not maintained and tested after publication.
Readers with a basic understanding of the project who want to learn about it in an anecdotal, experiential, and more informal way.
News entries Focus on timely information about Knative and related events. News entries typically announce new releases or upcoming events. Readers that want to quickly learn what's new and what's happening in the Knative community.
FAQ entries Provide quick answers to common questions. Answers don't introduce any concepts. Instead, they provide practical advice or insights. Answers must link to tasks, concepts, or examples in the documentation for readers to learn more. Readers with specific questions who are looking for brief answers and resources to learn more.
Operation guides Focus on practical solutions that address specific problems encountered while running Knative in a real-world setting. Service mesh operators that want to fix problems or implement solutions for running Knative deployments.

Choosing titles and filenames

Choose a title for your new content, either a new page title or a title for a section that you want to add. Make sure it includes the keywords you want search engines to find and use sentence style capitalization.

New files

The filename of your new content should reflect that the title.

New files and folders

If the content that you add include a new folder, name that folder using the keywords that cover the scope of the content in the folder, separated by hyphens, all in lowercase. Keep folder names as short as possible to make cross-references easier to create and maintain. You should only need to create a new folder if you are adding multiple topics/files, or if you are grouping related content. The names for each file do not need to repeat the folder name since that context is already established.

For more guidance, see the Headings and titles section in the style guide.

Submit your contribution to GitHub

If you are not familiar with GitHub, see our working with GitHub guide to learn how to submit documentation changes.