Documentation for version v1.9 is no longer actively maintained. The version you are currently viewing is a static snapshot. For up-to-date documentation, see the latest version.
This style guide is adapted from the Kubernetes style guide.
This page outlines writing style guidelines for the Velero documentation and you should use this page as a reference you write or edit content. Note that these are guidelines, not rules. Use your best judgment as you write documentation, and feel free to propose changes to these guidelines. Changes to the style guide are made by the Velero maintainers as a group. To propose a change or addition create an issue/PR, or add a suggestion to the community meeting agenda and attend the meeting to participate in the discussion.
The Velero documentation uses the kramdown Markdown renderer.
Do | Don’t |
---|---|
This command starts a proxy. |
This command will start a proxy. |
Exception: Use future or past tense if it is required to convey the correct meaning.
Do | Don’t |
---|---|
You can explore the API using a browser. | The API can be explored using a browser. |
The YAML file specifies the replica count. | The replica count is specified in the YAML file. |
Exception: Use passive voice if active voice leads to an awkward sentence construction.
Use simple and direct language. Avoid using unnecessary phrases, such as saying “please.”
Do | Don’t |
---|---|
To create a ReplicaSet, … | In order to create a ReplicaSet, … |
See the configuration file. | Please see the configuration file. |
View the Pods. | With this next command, we’ll view the Pods. |
Do | Don’t |
---|---|
You can create a Deployment by … | We’ll create a Deployment by … |
In the preceding output, you can see… | In the preceding output, we can see … |
Prefer English terms over Latin abbreviations.
Do | Don’t |
---|---|
For example, … | e.g., … |
That is, … | i.e., … |
Exception: Use “etc.” for et cetera.
Using “we” in a sentence can be confusing, because the reader might not know whether they’re part of the “we” you’re describing.
Do | Don’t |
---|---|
Version 1.4 includes … | In version 1.4, we have added … |
Kubernetes provides a new feature for … | We provide a new feature … |
This page teaches you how to use Pods. | In this page, we are going to learn about Pods. |
Many readers speak English as a second language. Avoid jargon and idioms to help them understand better.
Do | Don’t |
---|---|
Internally, … | Under the hood, … |
Create a new cluster. | Turn up a new cluster. |
Avoid making promises or giving hints about the future. If you need to talk about a beta feature, put the text under a heading that identifies it as beta information.
Also avoid words like “recently”, “currently” and “new.” A feature that is new today might not be considered new in a few months.
Do | Don’t |
---|---|
In version 1.4, … | In the current version, … |
The Federation feature provides … | The new Federation feature provides … |
This documentation uses U.S. English spelling and grammar.
When you refer to an API object, use the same uppercase and lowercase letters that are used in the actual object name. Typically, the names of API objects use camel case.
Don’t split the API object name into separate words. For example, use PodTemplateList, not Pod Template List.
Refer to API objects without saying “object,” unless omitting “object” leads to an awkward sentence construction.
Do | Don’t |
---|---|
The Pod has two containers. | The pod has two containers. |
The Deployment is responsible for … | The Deployment object is responsible for … |
A PodList is a list of Pods. | A Pod List is a list of pods. |
The two ContainerPorts … | The two ContainerPort objects … |
The two ContainerStateTerminated objects … | The two ContainerStateTerminateds … |
Use angle brackets for placeholders. Tell the reader what a placeholder represents.
Display information about a Pod:
kubectl describe pod <pod-name> -n <namespace>
If the pod is in the default namespace, you can omit the ‘-n’ parameter.
Do | Don’t |
---|---|
Click Fork. | Click “Fork”. |
Select Other. | Select “Other”. |
Do | Don’t |
---|---|
A cluster is a set of nodes … | A “cluster” is a set of nodes … |
These components form the control plane. | These components form the control plane. |
Do | Don’t |
---|---|
Open the envars.yaml file. |
Open the envars.yaml file. |
Go to the /docs/tutorials directory. |
Go to the /docs/tutorials directory. |
Open the /_data/concepts.yaml file. |
Open the /_data/concepts.yaml file. |
Do | Don’t |
---|---|
events are recorded with an associated “stage.” | events are recorded with an associated “stage”. |
The copy is called a “fork.” | The copy is called a “fork”. |
Exception: When the quoted word is a user input.
Example:
For inline code in an HTML document, use the <code>
tag. In a Markdown
document, use the backtick (`
).
Do | Don’t |
---|---|
The kubectl run command creates a Deployment. |
The “kubectl run” command creates a Deployment. |
For declarative management, use kubectl apply . |
For declarative management, use “kubectl apply”. |
Use single backticks to enclose inline code. For example, var example = true . |
Use two asterisks (** ) or an underscore (_ ) to enclose inline code. For example, var example = true. |
Use triple backticks (```) before and after a multi-line block of code for fenced code blocks. | Use multi-line blocks of code to create diagrams, flowcharts, or other illustrations. |
Use meaningful variable names that have a context. | Use variable names such as ‘foo’,‘bar’, and ‘baz’ that are not meaningful and lack context. |
Remove trailing spaces in the code. | Add trailing spaces in the code, where these are important, because a screen reader will read out the spaces as well. |
Do | Don’t |
---|---|
The kubeadm tool bootstraps and provisions machines in a cluster. |
kubeadm tool bootstraps and provisions machines in a cluster. |
The kube-scheduler is the default scheduler for Kubernetes. | kube-scheduler is the default scheduler for Kubernetes. |
For field values of type string or integer, use normal style without quotation marks.
Do | Don’t |
---|---|
Set the value of imagePullPolicy to Always . |
Set the value of imagePullPolicy to “Always”. |
Set the value of image to nginx:1.16 . |
Set the value of image to nginx:1.16. |
Set the value of the replicas field to 2 . |
Set the value of the replicas field to 2. |
Do | Don’t |
---|---|
kubectl get pods | $ kubectl get pods |
Verify that the Pod is running on your chosen node:
kubectl get pods --output=wide
The output is similar to this:
NAME READY STATUS RESTARTS AGE IP NODE
nginx 1/1 Running 0 13s 10.200.0.4 worker0
A list of Velero-specific terms and words to be used consistently across the site.
Trem | Usage |
---|---|
Kubernetes | Kubernetes should always be capitalized. |
Docker | Docker should always be capitalized. |
Velero | Velero should always be capitalized. |
VMware | VMware should always be correctly capitalized. |
On-premises | On-premises or on-prem rather than on-premise or other variations. |
Backup | Backup rather than back up, back-up or other variations. |
Plugin | Plugin rather than plug-in or other variations. |
Allowlist | Use allowlist instead of whitelist. |
Denylist | Use denylist instead of blacklist. |
People accessing this documentation may use a screen reader or other assistive technology (AT). Screen readers are linear output devices, they output items on a page one at a time. If there is a lot of content on a page, you can use headings to give the page an internal structure. A good page structure helps all readers to easily navigate the page or filter topics of interest.
Do | Don’t |
---|---|
Include a title on each page or blog post. | Include more than one title headings (#) in a page. |
Use ordered headings to provide a meaningful high-level outline of your content. | Use headings level 4 through 6, unless it is absolutely necessary. If your content is that detailed, it may need to be broken into separate articles. |
Use sentence case for headings. For example, Extend kubectl with plugins | Use title case for headings. For example, Extend Kubectl With Plugins |
Do | Don’t |
---|---|
Try to keep paragraphs under 6 sentences. | Write long-winded paragraphs. |
Use three hyphens (--- ) to create a horizontal rule for breaks in paragraph content. |
Use horizontal rules for decoration. |
Do | Don’t |
---|---|
Write hyperlinks that give you context for the content they link to. For example: Certain ports are open on your machines. See check required ports for more details. | Use ambiguous terms such as “click here”. For example: Certain ports are open on your machines. See here for more details. |
Write Markdown-style links: [link text](URL) . For example: [community meeting agenda](https://hackmd.io/Jq6F5zqZR7S80CeDWUklkA) and the output is
community meeting agenda. |
Write HTML-style links: Visit our tutorial! |
Group items in a list that are related to each other and need to appear in a specific order or to indicate a correlation between multiple items. When a screen reader comes across a list—whether it is an ordered or unordered list—it will be announced to the user that there is a group of list items. The user can then use the arrow keys to move up and down between the various items in the list. Website navigation links can also be marked up as list items; after all they are nothing but a group of related links.
End each item in a list with a period if one or more items in the list are complete sentences. For the sake of consistency, normally either all items or none should be complete sentences.
Ordered lists that are part of an incomplete introductory sentence can be in lowercase and punctuated as if each item was a part of the introductory sentence.
Use the number one (1.
) for ordered lists.
Use (+
), (*
), or (-
) for unordered lists - be consistent within the same document.
Leave a blank line after each list.
Indent nested lists with four spaces (for example, ⋅⋅⋅⋅).
List items may consist of multiple paragraphs. Each subsequent paragraph in a list item must be indented by either four spaces or one tab.
The semantic purpose of a data table is to present tabular data. Sighted users can quickly scan the table but a screen reader goes through line by line. A table caption is used to create a descriptive title for a data table. Assistive technologies (AT) use the HTML table caption element to identify the table contents to the user within the page structure.
If you need to create a table, create the table in markdown and use the table Hugo shortcode to include a caption.
{{< table caption="Configuration parameters" >}}
Parameter | Description | Default
:---------|:------------|:-------
`timeout` | The timeout for requests | `30s`
`logLevel` | The log level for log output | `INFO`
{{< /table >}}
Note: This shortcode does not support markdown reference-style links. Use inline-style links in tables. See more information about markdown link styles.
To help you get started, see the documentation.