-
-
Notifications
You must be signed in to change notification settings - Fork 621
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commit released Helm Chart and docs for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
- Loading branch information
1 parent
58cfb8a
commit 5548678
Showing
18 changed files
with
854 additions
and
132 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Changelog<br> | ||
|
||
|
||
<a name="unmanic-0.0.2"></a> | ||
### [unmanic-0.0.2](https://github.com/truecharts/apps/compare/unmanic-0.0.1...unmanic-0.0.2) (2022-01-30) | ||
|
||
#### Fix | ||
|
||
* Fix permissions and add healthcheck path ([#1809](https://github.com/truecharts/apps/issues/1809)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Configuration Options | ||
|
||
##### Connecting to other apps | ||
If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our "Linking Apps Internally" quick-start guide: | ||
https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/ | ||
|
||
##### Available config options | ||
In the future this page is going to contain an automated list of options available in the installation/edit UI. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Introduction | ||
|
||
Unmanic is a simple tool for optimising your file library. | ||
|
||
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. | ||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** | ||
|
||
## Source Code | ||
|
||
* <https://github.com/Unmanic/unmanic> | ||
* <https://hub.docker.com/r/josh5/unmanic> | ||
|
||
## Requirements | ||
|
||
Kubernetes: `>=1.16.0-0` | ||
|
||
## Dependencies | ||
|
||
| Repository | Name | Version | | ||
|------------|------|---------| | ||
| https://truecharts.org | common | 8.14.2 | | ||
|
||
## Installing the Chart | ||
|
||
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/). | ||
|
||
## Uninstalling the Chart | ||
|
||
To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/). | ||
|
||
## Support | ||
|
||
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) first. | ||
- See the [Wiki](https://truecharts.org) | ||
- Check our [Discord](https://discord.gg/tVsPTHWTtr) | ||
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) | ||
--- | ||
All Rights Reserved - The TrueCharts Project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Default Helm-Values | ||
|
||
TrueCharts is primarily build to supply TrueNAS SCALE Apps. | ||
However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file. | ||
|
||
Most of our Apps also consume our "common" Helm Chart. | ||
If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart. | ||
You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document. | ||
|
||
## Values | ||
|
||
| Key | Type | Default | Description | | ||
|-----|------|---------|-------------| | ||
| env.PUID | int | `568` | | | ||
| env.TZ | string | `"UTC"` | | | ||
| image.pullPolicy | string | `"IfNotPresent"` | | | ||
| image.repository | string | `"tccr.io/truecharts/unmanic"` | | | ||
| image.tag | string | `"v0.1.4@sha256:9a255521474745ab6ee4ea481db72b86da27ff390741d030839efb61d2cff60e"` | | | ||
| persistence.cache.enabled | bool | `true` | | | ||
| persistence.cache.mountPath | string | `"/tmp/unmanic"` | | | ||
| persistence.cache.type | string | `"emptyDir"` | | | ||
| persistence.config.enabled | bool | `true` | | | ||
| persistence.config.mountPath | string | `"/config"` | | | ||
| persistence.library.enabled | bool | `true` | | | ||
| persistence.library.mountPath | string | `"/library"` | | | ||
| persistence.varrun.enabled | bool | `true` | | | ||
| podSecurityContext.runAsGroup | int | `0` | | | ||
| podSecurityContext.runAsUser | int | `0` | | | ||
| securityContext.readOnlyRootFilesystem | bool | `false` | | | ||
| securityContext.runAsNonRoot | bool | `false` | | | ||
| service.main.ports.main.port | int | `10157` | | | ||
| service.main.ports.main.targetPort | int | `8888` | | | ||
|
||
All Rights Reserved - The TrueCharts Project |
Oops, something went wrong.