Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
220330ca79
commit
b86848954b
|
@ -0,0 +1,13 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [homebox-1.0.0](https://github.com/truecharts/charts/compare/homebox-0.0.3...homebox-1.0.0) (2022-12-27)
|
||||
|
||||
### Fix
|
||||
|
||||
- fix smtp vars feat(homebox): move to stable
|
||||
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
apiVersion: v2
|
||||
appVersion: "0.6.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 11.1.1
|
||||
deprecated: false
|
||||
description: Inventory and organization system built for the Home User.
|
||||
home: https://truecharts.org/charts/incubator/homebox
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/homebox.png
|
||||
keywords:
|
||||
- homebox
|
||||
- inventory
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: homebox
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/homebox
|
||||
- https://github.com/hay-kot/homebox
|
||||
type: application
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- inventory
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
|
@ -0,0 +1,27 @@
|
|||
# README
|
||||
|
||||
## General Info
|
||||
|
||||
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
|
||||
However only installations using the TrueNAS SCALE Apps system are supported.
|
||||
|
||||
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
|
||||
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE%20Apps/Important-MUST-READ).
|
||||
- See the [Website](https://truecharts.org)
|
||||
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
|
||||
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
|
||||
|
||||
---
|
||||
|
||||
## Sponsor TrueCharts
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
|
||||
|
||||
*All Rights Reserved - The TrueCharts Project*
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [homebox-1.0.0](https://github.com/truecharts/charts/compare/homebox-0.0.3...homebox-1.0.0) (2022-12-27)
|
||||
|
||||
### Fix
|
||||
|
||||
- fix smtp vars feat(homebox): move to stable
|
||||
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
Inventory and organization system built for the Home User.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/stable/homebox](https://truecharts.org/charts/stable/homebox)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/about/sponsor) or contributing back to the project any way you can!
|
|
@ -0,0 +1,35 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/homebox
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 0.6.0@sha256:97dad0bc2e0683c22f1b29416ef2caa70fedc83688d1ee9dc57d7d862204a396
|
||||
|
||||
homebox:
|
||||
allow_registration: true
|
||||
auto_increment_asset_id: true
|
||||
max_upload_size: 10
|
||||
log_level: info
|
||||
log_format: text
|
||||
mailer_host: ""
|
||||
mailer_port: 587
|
||||
mailer_from: ""
|
||||
mailer_username: ""
|
||||
mailer_password: ""
|
||||
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: '{{ include "tc.common.names.fullname" . }}-homebox-secret'
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: HTTP
|
||||
port: 10603
|
||||
|
||||
persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: /data
|
||||
|
||||
portal:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,33 @@
|
|||
{{/* Define the secret */}}
|
||||
{{- define "homebox.secret" -}}
|
||||
|
||||
{{- $secretName := printf "%s-homebox-secret" (include "tc.common.names.fullname" .) }}
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
type: Opaque
|
||||
metadata:
|
||||
name: {{ $secretName }}
|
||||
labels:
|
||||
{{- include "tc.common.labels" . | nindent 4 }}
|
||||
stringData:
|
||||
HBOX_MODE: production
|
||||
HBOX_SWAGGER_SCHEMA: {{ .Values.service.main.ports.main.protocol | lower }}
|
||||
HBOX_STORAGE_DATA: {{ .Values.persistence.data.mountPath }}
|
||||
HBOX_WEB_PORT: {{ .Values.service.main.ports.main.port | quote }}
|
||||
HBOX_SWAGGER_HOST: {{ .Values.service.main.ports.main.port | quote }}
|
||||
{{/* User Defined */}}
|
||||
HBOX_OPTIONS_ALLOWREGISTRATION: {{ .Values.homebox.allow_registration | quote }}
|
||||
HBOX_OPTIONS_AUTO_INCREMENT_ASSET_ID: {{ .Values.homebox.auto_increment_asset_id | quote }}
|
||||
HBOX_WEB_MAX_UPLOAD_SIZE: {{ (.Values.homebox.max_upload_size | default 10) | quote }}
|
||||
HBOX_LOG_LEVEL: {{ .Values.homebox.log_level | default "info" }}
|
||||
HBOX_LOG_FORMAT: {{ .Values.homebox.log_format | default "text" }}
|
||||
{{- if .Values.homebox.mailer_host }}
|
||||
HBOX_MAILER_HOST: {{ .Values.homebox.mailer_host }}
|
||||
HBOX_MAILER_PORT: {{ .Values.homebox.mailer_port }}
|
||||
HBOX_MAILER_FROM: {{ .Values.homebox.mailer_from }}
|
||||
HBOX_MAILER_USERNAME: {{ .Values.homebox.mailer_username }}
|
||||
HBOX_MAILER_PASSWORD: {{ .Values.homebox.mailer_password }}
|
||||
{{- end }}
|
||||
{{- end }}
|
|
@ -0,0 +1,8 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.common.loader.init" . }}
|
||||
|
||||
{{/* Render secret */}}
|
||||
{{- include "homebox.secret" . }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.apply" . }}
|
|
@ -0,0 +1,4 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/homebox.png
|
||||
categories:
|
||||
- inventory
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [penpot-2.0.1](https://github.com/truecharts/charts/compare/penpot-2.0.0...penpot-2.0.1) (2022-12-27)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#5848](https://github.com/truecharts/charts/issues/5848))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [penpot-2.0.2](https://github.com/truecharts/charts/compare/penpot-2.0.1...penpot-2.0.2) (2022-12-27)
|
||||
|
||||
### Fix
|
||||
|
||||
- fix smtp vars feat(homebox): move to stable
|
||||
|
||||
|
||||
|
||||
|
||||
## [penpot-2.0.1](https://github.com/truecharts/charts/compare/penpot-2.0.0...penpot-2.0.1) (2022-12-27)
|
||||
|
||||
### Chore
|
|
@ -32,7 +32,7 @@ sources:
|
|||
- https://hub.docker.com/r/penpotapp/frontend
|
||||
- https://hub.docker.com/r/penpotapp/backend
|
||||
type: application
|
||||
version: 2.0.1
|
||||
version: 2.0.2
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [penpot-2.0.2](https://github.com/truecharts/charts/compare/penpot-2.0.1...penpot-2.0.2) (2022-12-27)
|
||||
|
||||
### Fix
|
||||
|
||||
- fix smtp vars feat(homebox): move to stable
|
||||
|
||||
|
Binary file not shown.
|
@ -222,25 +222,25 @@ questions:
|
|||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: smtp_host
|
||||
- variable: host
|
||||
label: SMTP Host
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: smtp_port
|
||||
- variable: port
|
||||
label: SMTP Port
|
||||
schema:
|
||||
type: int
|
||||
required: true
|
||||
default: 587
|
||||
- variable: smtp_user
|
||||
- variable: user
|
||||
label: SMTP User
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
default: ""
|
||||
- variable: smtp_pass
|
||||
- variable: pass
|
||||
label: SMTP Pass
|
||||
schema:
|
||||
type: string
|
Loading…
Reference in New Issue