mirror of
https://github.com/netbirdio/docs.git
synced 2026-08-28 10:41:27 +02:00
Navigation cleanup: MDM deployment under Peers, purge stale tutorials, MSP portal refresh (#906)
* docs: move MDM deployment guides under Manage > Peers
The five fleet-deployment guides (GPO, macOS .pkg, Jamf Pro, Kandji,
Intune) lived under Integrations, but nothing in them integrates with
NetBird's platform — they are peer onboarding at scale, which lives
under Peers. The label also collided with Access Control's
'Integrate MDM & EDR', which uses MDM in the opposite sense.
- Move pages from /manage/integrations/mdm-deployment/ to
/manage/peers/mdm-deployment/ with a permanent wildcard redirect
- Re-point legacy /how-to redirects directly at the new paths
- Move the nav group under Peers as 'MDM Deployment'; remove the
now-empty Integrations group
- Update internal links
* docs: link full GPO deployment guide from MDM integration page
* docs: show setup-key secret wiring and replica naming for k8s routing peers
Fold the two verified-novel bits from the Access Infrastructure
autoscaling tutorial before purging it:
- Replace the 'use a secret' Note with the actual kubectl create
secret + secretKeyRef wiring (matches what the NetBird operator
injects for routing peers)
- In the HA section, note that removing the static NB_HOSTNAME lets
each replica register under its pod name (client falls back to
os.Hostname(), which is the pod name in Kubernetes)
* docs: purge redundant Access Infrastructure tutorials
The four pages under Manage > Peers > Access Infrastructure were
2024-era SEO tutorials that duplicated canonical feature docs and
carried outdated claims (pre-rewrite SSH model without the built-in
SSH server, a Docker section that never actually enrolls the
container with a setup key, CrowdStrike presented as the only EDR
integration, stale v0.29 output and vintage-UI screenshots).
Cross-checked each page against its canonical counterpart; nothing
novel remained (the two useful Kubernetes snippets were folded into
the routing-peers use case in the previous commit).
- Delete the four pages and their screenshot directory
- Remove the Access Infrastructure nav group
- Redirect each URL to its canonical replacement:
secure-remote-webserver-access -> /manage/peers/ssh
setup-keys-add-servers-to-network -> /manage/peers/register-machines-using-setup-keys
access-internal-resources-from-autoscaled-environments -> /use-cases/kubernetes
peer-approval-for-remote-worker-access -> /manage/peers/approve-peers
- Re-point the legacy /how-to redirects at the same targets to avoid
redirect chains
* docs: reorder Peers nav into enrollment, approval, day-2 flow
Group the five enrollment methods first (Add Peers, Setup Keys,
Bootstrap via Config File, MDM Deployment, Browser Client), then the
Approve Peers admission gate, then running-peer features (SSH, Lazy
Connections, Remote Jobs) and Auto Update last. Approve Peers
previously sat between two enrollment pages.
* docs: cross-link DNS aliases and internal DNS pages, fix tutorial inaccuracies
The two pages solve adjacent problems (NetBird-hosted records vs
forwarding to existing internal DNS) but never pointed at each other.
Add a which-page-do-I-need Note to each.
Also fix defects in the DNS Aliases tutorial found while cross-checking
it against the Custom Zones reference and dashboard source:
- 'Keep this enabled' implied search domain is on by default; it is
off by default (DNSZoneModal.tsx: enable_search_domain ?? false)
- Step 3 said 'wildcard resource' but the steps add exact-name domain
resources
- Wrong alt text ('Delete DNS Zone') on the zone-config screenshot
- Add missing meta description and a link to the Custom Zones
reference
* docs: align MSP portal page with 2026 partner program, rename For Partners nav
Cross-checked the MSP portal page against the 2026 MSP/MSSP Partner
Program document:
- Point the application link at netbird.io/use-cases/msp (the program's
canonical page) instead of a demo-form URL displayed as netbird.io/msp
- State tenant plan options (Team or Business) and the post-trial
minimum (Team plan with one user)
- Mention CSV/PDF usage export alongside the API
- Clarify the 3-day trial for existing accounts brought in as tenants:
it is a window to subscribe the tenant under the MSP account
- Add a subtle msp@netbird.io contact line at the bottom
Also rename the For Partners nav entries by deliverable instead of
audience (the section header already says who it's for): MSP Portal,
Distributor Portal, Deploy with Acronis.
* docs: update CLAUDE.md for agent-network, proxy.js, and tooling gaps
Audited every claim against the current repo. Stack, routing, security,
and convention claims all still hold; four gaps had accumulated:
- Add agent-network/ to the content structure list
- Document src/proxy.js in URL Routing: /api data requests must be
rewritten there because the config rewrite loses data-request context
on client-side navigation (Next.js #39669) and strips pageProps
- Add npm run lint:mdx; note npm run gen requires a Go toolchain
- Note fenced mermaid code blocks render as diagrams
* docs: address review findings on PR #906
- Move the MDM deployment screenshot directories to match the new page
paths; the URL rewrite had updated MDX image references without
moving the assets, breaking all Intune/Jamf/Kandji images
- Normalize pre-existing double slashes in Jamf and Kandji image URLs
- Align the routing-peers secret example with bootstrap-via-config-file
(same secret name, so both now use the NB_SETUP_KEY data key)
- DNS aliases: include the routing peer's group in the zone's
distribution groups. Verified in client source: the DNS route
interceptor (priority 100) outranks local zone records (priority 75)
and never falls through, so clients forward routed-domain queries to
the routing peer, which must receive the zone to answer
This commit is contained in:
@@ -90,7 +90,6 @@ export const docsNavigation = [
|
||||
title: 'Add Peers',
|
||||
href: '/manage/peers/add-machines-to-your-network',
|
||||
},
|
||||
{ title: 'Approve Peers', href: '/manage/peers/approve-peers' },
|
||||
{
|
||||
title: 'Setup Keys',
|
||||
href: '/manage/peers/register-machines-using-setup-keys',
|
||||
@@ -99,6 +98,32 @@ export const docsNavigation = [
|
||||
title: 'Bootstrap via Config File',
|
||||
href: '/manage/peers/bootstrap-via-config-file',
|
||||
},
|
||||
{
|
||||
title: 'MDM Deployment',
|
||||
isOpen: false,
|
||||
links: [
|
||||
{
|
||||
title: 'Deploy with Group Policy (GPO)',
|
||||
href: '/manage/peers/mdm-deployment/windows-gpo-deployment',
|
||||
},
|
||||
{
|
||||
title: 'macOS CLI-Only .pkg',
|
||||
href: '/manage/peers/mdm-deployment/macos-cli-pkg-deployment',
|
||||
},
|
||||
{
|
||||
title: 'Deploy with Jamf Pro',
|
||||
href: '/manage/peers/mdm-deployment/jamf-pro-netbird-integration',
|
||||
},
|
||||
{
|
||||
title: 'Deploy with Kandji',
|
||||
href: '/manage/peers/mdm-deployment/kandji-netbird-integration',
|
||||
},
|
||||
{
|
||||
title: 'Deploy with Intune',
|
||||
href: '/manage/peers/mdm-deployment/intune-netbird-integration',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: 'Browser Client',
|
||||
isOpen: false,
|
||||
@@ -110,31 +135,10 @@ export const docsNavigation = [
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: 'Approve Peers', href: '/manage/peers/approve-peers' },
|
||||
{ title: 'SSH', href: '/manage/peers/ssh' },
|
||||
{ title: 'Lazy Connections', href: '/manage/peers/lazy-connection' },
|
||||
{ title: 'Remote Jobs', href: '/manage/peers/remote-jobs' },
|
||||
{
|
||||
title: 'Access Infrastructure',
|
||||
isOpen: true,
|
||||
links: [
|
||||
{
|
||||
title: 'Access Remote Webserver',
|
||||
href: '/manage/peers/access-infrastructure/secure-remote-webserver-access',
|
||||
},
|
||||
{
|
||||
title: 'Add Servers to the Network',
|
||||
href: '/manage/peers/access-infrastructure/setup-keys-add-servers-to-network',
|
||||
},
|
||||
{
|
||||
title: 'Access from Kubernetes',
|
||||
href: '/manage/peers/access-infrastructure/access-internal-resources-from-autoscaled-environments',
|
||||
},
|
||||
{
|
||||
title: 'Peer Approval for Remote Access',
|
||||
href: '/manage/peers/access-infrastructure/peer-approval-for-remote-worker-access',
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: 'Auto Update', href: '/manage/peers/auto-update' },
|
||||
],
|
||||
},
|
||||
@@ -418,39 +422,6 @@ export const docsNavigation = [
|
||||
{ title: 'Delete Account', href: '/manage/settings/delete-account' },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: 'Integrations',
|
||||
isOpen: false,
|
||||
links: [
|
||||
{
|
||||
title: 'MDM for Deployment',
|
||||
isOpen: true,
|
||||
links: [
|
||||
{
|
||||
title: 'Deploy with Group Policy (GPO)',
|
||||
href: '/manage/integrations/mdm-deployment/windows-gpo-deployment',
|
||||
},
|
||||
{
|
||||
title: 'macOS CLI-Only .pkg',
|
||||
href: '/manage/integrations/mdm-deployment/macos-cli-pkg-deployment',
|
||||
},
|
||||
{
|
||||
title: 'Deploy with Jamf Pro',
|
||||
href: '/manage/integrations/mdm-deployment/jamf-pro-netbird-integration',
|
||||
},
|
||||
{
|
||||
title: 'Deploy with Kandji',
|
||||
href: '/manage/integrations/mdm-deployment/kandji-netbird-integration',
|
||||
},
|
||||
{
|
||||
title: 'Deploy with Intune',
|
||||
href: '/manage/integrations/mdm-deployment/intune-netbird-integration',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
{
|
||||
title: 'Public API',
|
||||
isOpen: false,
|
||||
@@ -461,15 +432,15 @@ export const docsNavigation = [
|
||||
isOpen: false,
|
||||
links: [
|
||||
{
|
||||
title: 'Managed Service Providers',
|
||||
title: 'MSP Portal',
|
||||
href: '/manage/for-partners/msp-portal',
|
||||
},
|
||||
{
|
||||
title: 'Distributors',
|
||||
title: 'Distributor Portal',
|
||||
href: '/manage/for-partners/distributor-portal',
|
||||
},
|
||||
{
|
||||
title: 'Acronis NetBird integration',
|
||||
title: 'Deploy with Acronis',
|
||||
href: '/manage/for-partners/acronis-integration',
|
||||
},
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user