Source for the documentation site at docs.zettalane.com.
User-facing documentation for ZettaLane Systems' cloud storage products:
- MayaNAS — multi-protocol cloud NAS (NFS, SMB, S3, SFTP, iSCSI, NVMe-oF) on OpenZFS
- MayaScale — NVMe-oF block storage with active-active HA mirror
Pages cover product overviews, getting-started guides for each cloud (GCP, AWS, Azure, on-prem), operational topics (snapshots, replication, Active Directory, HA), Terraform module references, and the mayacli CLI guide.
git clone https://github.com/zettalane-systems/docs.git
cd docs
npm install
npm run devOpens http://localhost:4321 with hot-reload on file save. Edit any .md or .mdx file in src/content/docs/ and the browser updates automatically.
npm run buildOutputs static files to dist/. Production deployment is handled by maintainers.
Doc fixes, clarifications, and additions are welcome.
| Want to... | How |
|---|---|
| Fix a typo or clarify wording | Open a PR against the relevant .md file in src/content/docs/ |
| Report a doc gap or factual error | Open an issue with the page URL and what's missing/wrong |
| Add a new page | Create the markdown file under the right section (mayanas/, mayascale/, operations/, etc.), add an entry to astro.config.mjs sidebar, and PR |
Each page starts with frontmatter:
---
title: Page Title
description: One-line summary used in search results and link cards.
---src/content/docs/
├── index.mdx Landing page with product cards
├── mayanas/ MayaNAS overview + per-cloud getting started
├── mayascale/ MayaScale overview + per-cloud getting started
├── operations/ Per-feature operational guides
├── reference/cli.md mayacli command reference
└── terraform/ Terraform module docs
astro.config.mjs Sidebar nav and site config
package.json Dependencies
| Command | What it does |
|---|---|
npm install |
Install dependencies |
npm run dev |
Start dev server at localhost:4321 with hot reload |
npm run build |
Build production site to ./dist/ |
npm run preview |
Preview the production build locally |
- Product website: zettalane.com
- Open-source Terraform modules: zettalane-terraform
- Marketplace listings: Google Cloud Marketplace, AWS Marketplace, Azure Marketplace
Documentation content and code in this repository are licensed under the Apache License 2.0.