Commit new App releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2022-03-09 23:12:12 +00:00
parent a310510a65
commit 631f91ce1f
15 changed files with 3178 additions and 0 deletions

View File

@ -0,0 +1,10 @@
# Changelog<br>
<a name="storj-node-0.0.1"></a>
### storj-node-0.0.1 (2022-03-09)
#### Feat
* Add storj-node ([#2119](https://github.com/truecharts/apps/issues/2119))

View File

@ -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.

View File

@ -0,0 +1,6 @@
dependencies:
- name: common
repository: https://truecharts.org
version: 9.1.2
digest: sha256:c31f80d9a593b307274ae84096234c1928a407d3899cf5b173eac54118901f24
generated: "2022-03-09T23:04:43.910894054Z"

View File

@ -0,0 +1,28 @@
apiVersion: v2
appVersion: "1.49.5"
dependencies:
- name: common
repository: https://truecharts.org
version: 9.1.2
description: Storj is an S3-compatible platform and suite of decentralized applications that allows you to store data in a secure and decentralized manner
home: https://github.com/truecharts/apps/tree/master/charts/stable/storj-node
icon: https://truecharts.org/_static/img/appicons/storj-node.png
keywords:
- storj
- storage
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: storj-node
sources:
- https://github.com/storj/storj
- https://docs.storj.io/node/
- https://hub.docker.com/r/storjlabs/storagenode
version: 0.0.1
annotations:
truecharts.org/catagories: |
- media
truecharts.org/SCALE-support: "true"
truecharts.org/grade: U

View File

@ -0,0 +1,39 @@
# Introduction
Storj is an S3-compatible platform and suite of decentralized applications that allows you to store data in a secure and decentralized manner
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/storj/storj>
* <https://docs.storj.io/node/>
* <https://hub.docker.com/r/storjlabs/storagenode>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org | common | 9.1.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

View File

View File

@ -0,0 +1,3 @@
Storj is an S3-compatible platform and suite of decentralized applications that allows you to store data in a secure and decentralized manner
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

Binary file not shown.

View File

@ -0,0 +1,39 @@
# 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.ADDRESS | string | `""` | |
| env.EMAIL | string | `""` | |
| env.SETUP | bool | `true` | |
| env.STORAGE | string | `"500GB"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"storjlabs/storagenode"` | |
| image.tag | string | `"6e7a89161-v1.49.5-go1.17.5@sha256:62f5c05ffabb0fe5d2e0c556a91c08fe6b47ff20df95f350739fa8c07f628877"` | |
| persistence.identity.enabled | bool | `true` | |
| persistence.identity.mountPath | string | `"/app/identity"` | |
| persistence.storage.enabled | bool | `true` | |
| persistence.storage.mountPath | string | `"/app/config"` | |
| secret.WALLET | string | `"walletaddress"` | |
| service.coretcp.enabled | bool | `true` | |
| service.coretcp.ports.coretcp.enabled | bool | `true` | |
| service.coretcp.ports.coretcp.port | int | `28967` | |
| service.coretcp.ports.coretcp.protocol | string | `"TCP"` | |
| service.coretcp.ports.coretcp.targetPort | int | `28967` | |
| service.coreudp.enabled | bool | `true` | |
| service.coreudp.ports.coreudp.enabled | bool | `true` | |
| service.coreudp.ports.coreudp.port | int | `28967` | |
| service.coreudp.ports.coreudp.protocol | string | `"UDP"` | |
| service.coreudp.ports.coreudp.targetPort | int | `28967` | |
| service.main.ports.main.port | int | `14002` | |
| service.main.ports.main.targetPort | int | `14002` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,44 @@
image:
repository: storjlabs/storagenode
tag: 6e7a89161-v1.49.5-go1.17.5@sha256:62f5c05ffabb0fe5d2e0c556a91c08fe6b47ff20df95f350739fa8c07f628877
pullPolicy: IfNotPresent
secret:
WALLET: "walletaddress"
env:
SETUP: true
EMAIL: ""
ADDRESS: ""
STORAGE: "500GB"
service:
main:
ports:
main:
port: 14002
targetPort: 14002
coretcp:
enabled: true
ports:
coretcp:
enabled: true
protocol: TCP
port: 28967
targetPort: 28967
coreudp:
enabled: true
ports:
coreudp:
enabled: true
protocol: UDP
port: 28967
targetPort: 28967
persistence:
identity:
enabled: true
mountPath: "/app/identity"
storage:
enabled: true
mountPath: "/app/config"

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1 @@
{{ include "common.all" . }}

View File

View File

@ -0,0 +1,4 @@
icon_url: https://truecharts.org/_static/img/appicons/storj-node.png
categories:
- media