Skip to content

docs: add truenas integration #356

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions docs/integrations/truenas/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
title: 'TrueNAS'
description: "Enterprise network-attached storage for your home, office, and cloud."
hide_title: true
---

import { IntegrationHeader } from '@site/src/components/integrations/header';
import { IntegrationCapabilites } from '@site/src/components/integrations/widgets';
import { AddingIntegration } from '@site/src/components/integrations/adding';
import { IntegrationSecrets } from '@site/src/components/integrations/secrets';
import { truenasIntegration } from '.';
import { systemResourcesWidget } from '@site/docs/widgets/system-resources';


<IntegrationHeader
integration={truenasIntegration}
categories={['NAS', 'Hardware']}
/>

### Widgets & Capabilities
<IntegrationCapabilites
items={[{ widget: systemResourcesWidget }]}
/>

### Adding the integration
<AddingIntegration />

### Secrets
<IntegrationSecrets secrets={[{
credentials: ['username', 'password'],
steps: [
"Create a user on the TrueNAS UI with a secure password at \"Credentials\" > \"Users\" > \"Add User\".",
"Add the auxiliary group \"auxiliary_administrator\" to the user.",
"Save the user and create an integration in Homarr with the previous defined credentials"
],
}]} />
7 changes: 7 additions & 0 deletions docs/integrations/truenas/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { IntegrationDefinition } from '@site/src/types';
export const truenasIntegration: IntegrationDefinition = {
name: 'TrueNAS',
description: 'Enterprise network-attached storage for your home, office, and cloud.',
iconUrl: 'https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/truenas.svg',
path: '../../integrations/truenas',
};
Loading