Contribute to Platform Docs
Docs websiteβ
This docs website is built using Docusaurus v3, a modern static website generator.
Quick start for contributing with DevPodβ
Use DevPod to quickly set up a complete development environment and start contributing.
- Install DevPod for your operating system.
- Once installed, click the following to open this repository in DevPod:
This will automatically set up all dependencies and configurations needed for working on the documentation, including:
- Node.js and npm for running the development server
- The Vale linter for checking documentation style and grammar
- VS Code extensions for Vale and ESLint
- Pre-configured settings for the documentation workflow
Manual installationβ
npm install
Local developmentβ
npm run start
This command starts a local development server and opens up a browser window.
Most changes are reflected live without having to restart the server. Note that
npm run start
doesn't always catch build errors.
Buildβ
npm run build
This command generates static content into the build
directory and can be
served using any static contents hosting service.
npm run serve
Serves the built website locally.
Note: Before making a pull request, it's recommended to run npm run serve
to
fix any broken links that may have been introduced.
Style guideβ
Most of the style guide rules is enforced by vale
linter. See the
style guide automation section for more information.
The vCluster docs use the following style guides in this order:
- Google developer documentation style guide
- Kubernetes Documentation Style Guide for Kubernetes terms.
Page titles follow sentence case. Capitalize Kubernetes objects according to the K8s style guide.
Core principlesβ
Here are some core principles to keep in mind when writing documentation:
-
Active voice creates stronger documentation and helps with translations - write "deploy the configuration" instead of "the configuration was deployed".
-
Using sentence case in headings makes content more approachable - write "Getting started with providers" instead of "Getting Started with Providers".
-
Keep sentences under 25 words to improve readability and SEO performance - break down complex ideas into digestible chunks.
-
Write in present tense - say "this command installs" rather than "this command will install". Docs refer to actions that happen in the present as users read them.
-
Use contractions (don't, isn't, can't) for better clarity - "don't" stands out more than "do not" when expressing negatives.
-
Avoid Latin phrases (e.g., i.e., etc.) - choose plain English alternatives that all readers can understand easily.
-
Never use terms like "easy," "simple," or "obvious" as they can undermine reader confidence and create unnecessary pressure.
-
Create descriptive link text - instead of "click here," explain where the link leads, such as "view the installation guide".
-
Spell out acronyms on first use unless they're universally known in technical contexts.
Consistency and document flowβ
When creating new documentation, review similar existing documents to maintain consistent flow and structure. For example, see how platform deployment documentation follows a standard pattern in the Quick Start Guide. This helps readers navigate documentation intuitively since they know what to expect.
Documents of the same kind should use consistent header levels and structure. All installation guides should use the same header hierarchy and naming conventions to help users navigate between different installation options.
Docusaurus admonitions should be used consistently throughout the documentation to highlight important information.
:::note[Additional context: The `vcluster create` command automatically creates]
a new namespace if it doesn't exist. :::
:::tip[Use `vcluster` CLI to quickly deploy a virtual cluster. :::]
:::info[The default configuration uses minimal resources suitable for testing.]
:::
:::warning[Ensure your Kubernetes cluster has sufficient available memory before]
deploying vCluster. :::
:::danger[Do not delete the vCluster pod. :::]
Oxford commaβ
Use the Oxford comma (serial comma) before the last item when listing 3 or more items in a sentence.
- Do Not: vCluster requires a, b and c.
- Do: vCluster requires a, b, and c.
See Scribbr's article on the Oxford comma for a detailed explanation and examples.
Code blocksβ
Use <>
to indicate placeholders in code blocks. For example:
kubectl get pods <pod-name>
Formatting and variablesβ
To make code blocks easier to work with, consider adding variables and use here docs to make it easier to copy and paste code snippets.
Using a variable in a code block:
$POD_NAME = pod-name
kubectl get pods $POD_NAME
Creating a file using a here doc:
cat <<EOF > vcluster.yaml
controlPlane:
# Deploy etcd instead of using the embedded SQLite
backingStore:
etcd:
deploy:
enabled: true
statefulSet:
highAvailability:
replicas: 3
# Deploy vCluster with 3 replicas
statefulSet:
highAvailability:
replicas: 3
EOF
Applying a Kubernetes manifest using docs:
cat << EOF | kubectl apply -f -
apiVersion: v1
kind: Pod
metadata:
name: example-pod
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:1.21
ports:
- containerPort: 80
EOF
[!NOTE] here docs support is available in most shells, including bash, zsh, and fish, however in shells other than bash, the syntax may vary.
Highlight lines of codeβ
Use inline comments in the code to highlight lines. See .
vCluster termsβ
Loft Labs is the company. Do not use "Loft" or "Loft Platform" to refer to vCluster products.
"vCluster" is a trademark. There are strict legal frameworks around how to use a trademark, e.g. it cannot be used in plural. Do not use "vClusters".
Productsβ
- vCluster:
- vCluster Pro: a single enhanced/paid/upgraded virtual cluster that uses Pro functionality (as labeled "Pro")
- vCluster Platform: the management platform and UI for managing open source and commercial vCluster instances