Introduction to TrueNAS SCALE (2024)

IMPORTANT: Must Read!

All guides under this section are made for TrueNAS SCALE. We do NOT control anything made by iX-Systems, no matter how good or bad it is. More specifically, we have no control AT ALL over the following:

  • Adding/Creating certificates
  • Backup functions
  • Restore functions
  • Rollback functions
  • Opening the Shell
  • All GUI elements except: Install-menu, Edit-menu and Portal-Button

Even if we made some tools and guides to make the above easier to use, we cannot provide any support for these features.

More specifically:Anything related to TrueTool has been deprecated and is now replaced with HeavyScript, any guides still referring to TrueTool will be updated or replaced.

Installing Apps

Once you’ve added the TrueCharts Catalog to your SCALE installation, you can choose from hundreds of apps to install through the catalog user interface.

  • Your Apps pool must be configured before adding TrueCharts. When opening the Apps menu item on SCALE for the first time, you’ll be prompted to choose a storage pool for your Apps. See our system requirements page to ensure you’re good to go.
  • After creating your Apps pool, you’ll be able to add the 3rd party TrueCharts catalog.

Requirements

See here our SCALE Getting Started guide.

Adding the App

To add a new TrueCharts app to your SCALE installation:

  1. Click Apps from the SCALE menu

    Introduction to TrueNAS SCALE (1)

  2. Go to Discover Apps at the top-right of the Apps page

    Introduction to TrueNAS SCALE (2)

  3. Find the app you wish to install using the search bar (or by scrolling through the catalog), e.g Homarr, and click the Install button.

    Introduction to TrueNAS SCALE (3)

  4. In each section, configure your app depending on your desired settings and click Next. See below for example options you can configure.

  5. Once you’ve finished configuring your app, click Install to start the deployment process.

    Introduction to TrueNAS SCALE (4)

Example App Configuration Options

  • Application Name Configure a custom name for your app and select a version to install.
  • General Settings: Choose the number of replicas, preferred timezone, and add custom environmental variables.
  • Networking & Services: Choose how you’d like to expose your app from the k3s network to your local network and the Internet.
  • Storage and Persistence: Configure core app storage and add additional app storage.
  • Ingress: For TrueCharts apps you can configure Ingress with Traefik to easily proxy Internet traffic to your app.
  • Security & Permissions: Configure PUID, fsGroup, and other security and file permissions for your app.
  • Other Options: You can also configure GPU support, addons (such as adding a CodeServer for easy file editing), and advanced app settings.

Video Guide

Notes

  • You can view specific configuration information about your app in its app-specific page by searching for it in the charts list, searching our guides, or by searching for threads about it on the TrueCharts Discord.
  • If you see both an incubator and stable version of an app in the TrueCharts catalog, you should always use the stable version as it is the best maintained version.
  • Some apps are available in both the TrueCharts catalog and iXsystems default catalog. We recommend and only support the TrueCharts version of an app for access to features and capability alignment.
  • Once an app is thoroughly tested and known to be stable, it can be moved from the incubator train to the stable train. You can let the TrueCharts team know if a particular app appears to be working well enough to be moved to the stable train.

Editing Apps

Editing Apps has a slightly different GUI however it exposes the same settings as when installing an App.

Requirements

  • Make sure your storage-pool is created and working
  • Make sure you selected your storage-pool when you first opened the “Apps” interface, if not please refer to Configuring your Apps Pool
  • Make sure you have a working internet connection and can reach github and truecharts.org from the host system
  • Make sure you already added the TrueCharts catalog from Adding TrueCharts to SCALE
  • Make sure your App is installed and, preferably, working.

Editing the App

  1. Go to the Apps page of the SCALE GUI
  2. Select your desired app to edit from the list of installed apps
  3. Select the Edit button
  4. Change any settings you want to change
  5. Submit your changes.

The App will then go through a process of submitting your changes. If the process fails, your changes will not be submitted and the edit will be reverted. Once the process popup disappears, it might take a few minutes to actually re-deploy the app with your new changes due to some things that happen in the background.

Video Guide

Notes

  • It’s NOT advisable to switch between Nodeport and Loadbalancer, using the same ports. This WILL cause problems. If you edit an app and switch between NodePort and Loadbalancer, please be sure to use different ports.

Upgrading

Upgrading the app using the SCALE GUI

  1. Go to the Apps page of the SCALE GUI
  2. Make sure your App reports that an Upgrade is available on the App Card
  3. Make note of the current version, you might want to revert to this version in the future
  4. Select Upgrade or Update
  5. Confirm you want to upgrade, checking the changelog for any potential issues such as breaking changes.

The App will then go through a process of backing up(!) and upgrading. If the process fails, your changes will not be submitted and the edit will be reverted. After the process popup disappears, it might take a few minutes to actually re-deploy your newly upgraded app, due to some things that happen in the background.

Upgrading the app using HeavyScript

Alternatively, you can also use HeavyScript to update your apps and even configure it to do so automatically via a CRON job. Examples and instructions are found on the linked page and the HeavyScript Github, also linked on that page.

Rollback an app

Reverting using the GUI

  1. Select the app you wish to rollback from the list of installed apps
  2. Select “Roll Back”
  3. Under “Version” - Click the dropdown and select which version you would like to rollback to
  4. Check the “Roll Back Snapshot” box
  5. Select “Roll Back”

Wait a few moments for the process to happen in the background and you should soon be greeted by the prior version of the app deployed and running.

Reverting using the CLI

  1. Enter cli to enter the SCALE command line interface
  2. Enter app chart_release rollbackIt should give you this screen:Introduction to TrueNAS SCALE (5)
  3. Enter the release name and item_version like this:Introduction to TrueNAS SCALE (6)(be sure to remove the # before the release name)
  4. Click save then click quitIt should show something like this, confirming the rollback:Introduction to TrueNAS SCALE (7)

Finding the last installed version

SCALE does not list which versions are available to roll-back to, but does required a version to be entered.There is a short walk-through to get the versioning history for the app in question:

  1. Run export KUBECONFIG=/etc/rancher/k3s/k3s.yaml
  2. Run helm history jackett -n ix-jackett where “jackett” should be replaced with the name of the App that broke your UI.You’ll see this:Introduction to TrueNAS SCALE (8)Take note of the “Chart” column, it lists the version numbers you can enter in the rollback interface, prefixed by the App Name.Of coarse only enter the version number in the GUI or CLI, not the name

Delete

Delete using the GUI

  1. Select the app you wish to delete from the list of installed apps
  2. Select “Delete”
  3. Check the “Confirm” box
  4. Select “Continue”

Wait a few moments for the process to happen in the background.

Delete using the CLI

  1. Enter the SCALE terminal via the GUI or SSH
  2. Type the following command
    • cli -c 'app chart_release delete release_name=NAME_OF_APPLICATION'
    • ex: cli -c 'app chart_release delete release_name=traefik'

Video Guide

Introduction to TrueNAS SCALE (2024)

FAQs

Introduction to TrueNAS SCALE? ›

1 minute read. TrueNAS SCALE is the latest member of the TrueNAS family and provides Open Source HyperConverged Infrastructure (HCI) including Linux containers and VMs. TrueNAS SCALE includes the ability to scale-out storage with capacities of up to hundreds of Petabytes.

Is 16GB enough for TrueNAS scale? ›

The recommended size for the TrueNAS boot volume is 8 GB, but 16 or 32 GB (or a 120 GB 2.5" SATA SSD) provides room for more boot environments.

Which distro is TrueNAS scale based on? ›

TrueNAS SCALE would still utilize ZFS, but be based on Debian Linux.

Is TrueNAS scale free or paid? ›

TrueNAS SCALE is Open Source, based on Debian Linux, and free to download and use.

What do people use TrueNAS for? ›

Store Anything. TrueNAS CORE can be used from the home to the office to the data center for a variety of data-intensive use cases. IT professionals, photographers, designers, audio/video producers and editors, developers, and any user serious about storing and protecting lots of data can take advantage of TrueNAS CORE.

Does TrueNAS scale need a GPU? ›

Note that you must have installed at least two GPUs into your TrueNAS box, as it ridiculously TrueNAS won't allow you to isolate the only GPU in the system (please vote up this issue). You can work around this limitation by following the mentioned steps on the issue and the linked writeup in the comments over there.

How much RAM does TrueNAS really need? ›

After just finding out about TrueNAS Core 13 I discovered that on the download page 16GB of RAM is stated as the minimum required.

Is 16GB RAM enough for NAS? ›

If you choose to expand it, the NAS will perform and multitask better as well. For basic use, 4GB or 8GB will suffice. If you have a business Synology NAS, we would recommend at least 16GB.

Is 32GB enough for TrueNAS? ›

32 gigs of ram should be enough. And 'optimal' zpools are when the number of data disks is a 'power' of two, not a multiple. For a stripe this would be 2,4,8, etc.

How much space is needed for TrueNAS? ›

The TrueNAS CORE operating system device can be an SSD or hard drive. The operating system device must have at least 16 GB of space, but we recommend 32 GB or more for operating system device storage capacity to provide room for logging, operating system environments, and future upgrades.

Is 16GB enough for deep learning? ›

You still want your laptop to be strong; at least 16GB of memory and 4+ cores. But it will mostly be a machine running a terminal to a remote instance. Those 16GBs are for Chrome.

Top Articles
Latest Posts
Article information

Author: Fr. Dewey Fisher

Last Updated:

Views: 5692

Rating: 4.1 / 5 (42 voted)

Reviews: 81% of readers found this page helpful

Author information

Name: Fr. Dewey Fisher

Birthday: 1993-03-26

Address: 917 Hyun Views, Rogahnmouth, KY 91013-8827

Phone: +5938540192553

Job: Administration Developer

Hobby: Embroidery, Horseback riding, Juggling, Urban exploration, Skiing, Cycling, Handball

Introduction: My name is Fr. Dewey Fisher, I am a powerful, open, faithful, combative, spotless, faithful, fair person who loves writing and wants to share my knowledge and understanding with you.