Heavybullets8 / heavy_script

Bash script for managing Truenas SCALE applications, automatically update applications, backup applications datasets, open a shell for containers.
GNU General Public License v3.0
386 stars 27 forks source link
bash bash-script script scripts shell-script truenas-scale truenas-scripts

HeavyScript

Archived Repository Notice

HeavyScript is Archived

Due to the upcoming update for TrueNAS SCALE (link to update), where they will be completely removing k3s and replacing it with Docker Compose, I have decided to archive this repository. Since I do not want to use Docker Compose, I will not be supporting it. The tools that HeavyScript offers will all be deprecated by this release due to that change, as the tools are designed for TrueNAS SCALE's k3s implementation, not Docker.

Instead, I will be switching over to TalosOS, and users should watch the TrueCharts Discord channel for migration notices.

It is also worth noting that TrueCharts has archived and completely removed their charts from TrueNAS SCALE as well, as seen here: TrueCharts Catalog.

TrueCharts' comments on the situation can be seen here: TrueCharts Deprecation News.

Personal Note

Developing HeavyScript was my first project and the most fun I've had with coding. Amassing 380+ stars throughout the years is nothing I ever dreamed of when I started the project, and I am sad to see it go.

Thank you to everyone who has supported and used HeavyScript!

Best regards,
Heavybullets8

Contact

If you have questions or would like to contribute, I have a sub discord category hosted on the Truecharts Discord.

https://discord.gg/tVsPTHWTtr

Table of contents:

Click to expand * [The Menu](#the-menu) * [Arguments](#arguments) * [App](#app) * [Backup](#backup) * [DNS](#dns) * [Git](#git) * [Pod](#pod) * [PVC](#pvc) * [Self-Update](#self-update) * [Sync](#sync) * [Update](#update) * [How to Install](#how-to-install) * [How to Update](#how-to-update) * [Configuration File](#configuration-file) * [Cron Jobs](#cron-jobs)



The Menu

image

Access this with heavyscript



Arguments

App

heavyscript app [Flag]

Flag Example Parameter Description
-s
--start
-s
--start
[Optional: app name] Start an application.
-x
--stop
-x
--stop
[Optional: app name] Stop an application.
-r
--restart
-r
--restart
[Optional: app name] Restart an application.
-d
--delete
-d
--delete
[Optional: app name] Delete an application.


Backup

heavyscript backup [Flag]

Flag Example Parameter Description
-c [number]
--create [number]
-c 15
--create 15
Integer Create a backup with the specified retention number.
-r
--restore
-r
--restore
Restore a backup.
-d
--delete
-d
--delete
Delete a backup.


DNS

heavyscript dns [Optional App Name(s)]

Pass an optional app name to display DNS information for that specific app.

If no app name is provided, it will show internal DNS addresses for all services.

Example:

heavscript dns sonarr radarr nextcloud


Enable

heavyscript enable [Flag]

Flag Example Description
--api --api Enables external access to the Kubernetes API server.
--apt --apt Enable apt, apt-get, and apt-key.
--helm --helm Enable helm commands.


Git

heavyscript git [Flag]

Flag Example Description
-b
--branch
-b
--branch
Choose a branch or tag for HeavyScript to use
-g
--global
-g
--global
Add the script to the global path.


Pod

heavyscript pod [Flag]

Flag Example Description
-l
--logs
-l
--logs
Display container logs.
-s
--shell
-s
--shell
Open a shell for the container.


PVC

heavyscript pvc [Optional Flag]

Flag Example Description
-m
--mount
-m
--mount
Open a menu to mount PVCs.
-u
--unmount
-u
--unmount
Unmount all mounted PVCs.


Self-Update

heavyscript self-update

Flag Example Description
--major --major Includes major updates when self-updating


Sync

heavyscript sync

Syncs the catalog.


Update

heavyscript update [Flags]

Flag Example Parameter Description
-a
--include-major
-a
--include-major
Update the application even if it is a major version update
-b
--backup
-b 14
--backup 14
Integer Take a backup, and set the number of backups to keep
-c
--concurrent
-c 5
--concurrent 5
Integer How many applications to concurrently update (default: 1)
-i
--ignore
-i nextcloud,sonarr -i sonarr
--ignore nextcloud --ignore sonarr
String Ignore updating the specified application
-I
--ignore-img
-I
--ignore-img
Ignore container image updates
-p
--prune
-p
--prune
Prune unused images after the update
-r
--rollback
-r
--rollback
Roll back to the previous version if update failure
-s
--sync
-s
--sync
Sync the catalog prior to updating applications
-u
--update-only
-u nextcloud,sonarr
--update-only nextcloud
String Only update the specified application(s)
-x
--stop
-x
--stop
Stop the application prior to updating (Not recommended)
-t
--timeout
-t 500
--timeout 500
Integer Set the timeout for the update process in seconds (default: 500)
-U
--self-update
-U
--self-update
Update HeavyScript itself prior to updating
-v
--verbose
-v
--verbose
Display verbose output



How to Install

HeavyScript can be installed in two different ways depending on your needs and privileges on the system:

Option 1: Non-Privileged Install (Regular User)

This installation method is suitable if you don't have root access or prefer not to install HeavyScript with elevated privileges.

Installation Command:

curl -s https://raw.githubusercontent.com/Heavybullets8/heavy_script/main/functions/deploy.sh | bash && source "$HOME/.bashrc" 2>/dev/null && source "$HOME/.zshrc" 2>/dev/null

What This Does:

Note:

Option 2: Privileged Install (Root or Sudo)

If you have root access or can use sudo, this method will set up HeavyScript for all users on the system.

Installation Command:

curl -s https://raw.githubusercontent.com/Heavybullets8/heavy_script/main/functions/deploy.sh | sudo bash && source "$HOME/.bashrc" 2>/dev/null && source "$HOME/.zshrc" 2>/dev/null

What This Does:

Note:


Choosing the Right Option:



How to Update

While Updating

heavyscript update --self-update [OPTIONS]

Direct

heavyscript self-update

self-update will update HeavyScript to the latest release, regardless of the branch or tag you're on, and allows you to use any other arguments.



Configuration File

Purpose

The configuration file is generated the first time the script is run. You can edit it using nano:

nano ~/heavy_script/config.ini

Modifications in the config file will become the script's defaults.

For example, if you set sync to true under the [UPDATE] section, running heavyscript update will sync the catalog without specifying --sync or -s in the CLI.


Disabling the Configuration

To disable the configuration for a specific run of the script, use:

heavyscript --no-config

This will ignore the configuration file for that run.



Cron Jobs

How to Create a Cron Job

To automate tasks using HeavyScript, you can create a cron job. Here's how to set it up in TrueNAS SCALE:

  1. Navigate to the TrueNAS SCALE GUI.
  2. Go to System Settings > Advanced.
  3. Click on Cron Jobs.
  4. Click Add to create a new cron job.

image

Important Note on the Command Path

The command for the cron job should use the full path to the heavy_script.sh file. This path depends on the user who installed HeavyScript. For instance, if you installed HeavyScript as a non-root user, replace /root with your home directory path.

You can find your home directory path by running echo $HOME in the terminal.

Cron Job Settings

My Personal Cron Job

Here's an example of how I set up my personal cron job:

bash /root/heavy_script/heavy_script.sh update --backup 14 --concurrent 10 --prune --rollback --sync --self-update

Remember to adjust the path in the command based on where HeavyScript is installed and the user account used for installation.