Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
f6a9fd1628
commit
9e015c7252
|
@ -4,5 +4,5 @@
|
|||
|
||||
|
||||
|
||||
## [serpbear-0.0.1]serpbear-0.0.1 (2022-12-24)
|
||||
## [homebox-0.0.1]homebox-0.0.1 (2022-12-24)
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
apiVersion: v2
|
||||
appVersion: "0.6.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 11.0.7
|
||||
deprecated: false
|
||||
description: Inventory and organization system built for the Home User.
|
||||
home: https://truecharts.org/docs/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: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- inventory
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
|
@ -0,0 +1 @@
|
|||
# homebox
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
## [homebox-0.0.1]homebox-0.0.1 (2022-12-24)
|
||||
|
|
@ -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/docs/charts/incubator/homebox](https://truecharts.org/docs/charts/incubator/homebox)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/docs/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
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [lama-cleaner-0.0.1]lama-cleaner-0.0.1 (2022-12-24)
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
apiVersion: v2
|
||||
appVersion: "0.26.1"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 11.0.7
|
||||
deprecated: false
|
||||
description: Open-source inpainting tool powered by SOTA AI model.
|
||||
home: https://truecharts.org/docs/charts/lama-cleaner
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/lama-cleaner.png
|
||||
keywords:
|
||||
- lama-cleaner
|
||||
- media
|
||||
- AI
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: lama-cleaner
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/lama-cleaner
|
||||
- https://github.com/Sanster/lama-cleaner
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
- AI
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
|
@ -0,0 +1 @@
|
|||
# lama-cleaner
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
## [lama-cleaner-0.0.1]lama-cleaner-0.0.1 (2022-12-24)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
Open-source inpainting tool powered by SOTA AI model.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/docs/charts/incubator/lama-cleaner](https://truecharts.org/docs/charts/incubator/lama-cleaner)
|
||||
|
||||
---
|
||||
|
||||
TrueCharts can only exist due to the incredible effort of our staff.
|
||||
Please consider making a [donation](https://truecharts.org/docs/about/sponsor) or contributing back to the project any way you can!
|
Binary file not shown.
|
@ -0,0 +1,49 @@
|
|||
image:
|
||||
repository: cwq1913/lama-cleaner
|
||||
pullPolicy: IfNotPresent
|
||||
tag: cpu-0.26.1@sha256:e57095636fe19e62280e78f10f98fff0fe1e0608e689515b2a0a56a7d2dad2e8
|
||||
|
||||
gpuImage:
|
||||
repository: cwq1913/lama-cleaner
|
||||
tag: gpu-0.26.1@sha256:65c54a6309f46bb643be31d704e4b361988b277f7b9492a9dd8e24c28220005c
|
||||
pullPolicy: Always
|
||||
|
||||
imageSelector: image
|
||||
|
||||
command: lama-cleaner
|
||||
|
||||
securityContext:
|
||||
runAsNonRoot: false
|
||||
readOnlyRootFilesystem: false
|
||||
|
||||
podSecurityContext:
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
|
||||
lamacleaner:
|
||||
model: lama
|
||||
input: ""
|
||||
sd_run_local: false
|
||||
hf_access_token: ""
|
||||
sd_disable_nsfw: false
|
||||
sd_cpu_text_encoder: false
|
||||
sd_enable_xformers: false
|
||||
debug: false
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: HTTP
|
||||
port: 10604
|
||||
|
||||
persistence:
|
||||
torch:
|
||||
enabled: true
|
||||
mountPath: /root/.cache/torch
|
||||
huggingface:
|
||||
enabled: true
|
||||
mountPath: /root/.cache/huggingface
|
||||
|
||||
portal:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,33 @@
|
|||
{{- define "lama.args" -}}
|
||||
args:
|
||||
- --host=0.0.0.0
|
||||
- --port={{ .Values.service.main.ports.main.port }}
|
||||
{{- if eq .Values.imageSelector "image" }}
|
||||
- --device=cpu
|
||||
{{- if .Values.lamacleaner.sd_cpu_text_encoder }}
|
||||
- --sd-cpu-textencoder
|
||||
{{- end }}
|
||||
{{- else if eq .Values.imageSelector "gpuImage" }}
|
||||
- --device=cuda
|
||||
{{- end }}
|
||||
{{- with .Values.lamacleaner.model }}
|
||||
- --model={{ . }}
|
||||
{{- end }}
|
||||
{{- if .Values.lamacleaner.sd_run_local }}
|
||||
- --sd-run-local
|
||||
{{- else if .Values.lamacleaner.hf_access_token }}
|
||||
- --hf_access_token={{ .Values.lamacleaner.hf_access_token }}
|
||||
{{- end }}
|
||||
{{- if .Values.lamacleaner.sd_enable_xformers }}
|
||||
- --sd-enable-xformers
|
||||
{{- end }}
|
||||
{{- if .Values.lamacleaner.sd_disable_nsfw }}
|
||||
- --sd-disable-nsfw
|
||||
{{- end }}
|
||||
{{- with .Values.lamacleaner.input }}
|
||||
- --input={{ . }}
|
||||
{{- end }}
|
||||
{{- if .Values.lamacleaner.debug }}
|
||||
- --debug
|
||||
{{- end }}
|
||||
{{- end -}}
|
|
@ -0,0 +1,9 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.common.loader.init" . }}
|
||||
|
||||
{{- $newArgs := (include "lama.args" . | fromYaml) }}
|
||||
{{- $args := concat .Values.args $newArgs.args }}
|
||||
{{- $_ := set .Values "args" $args -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.apply" . }}
|
|
@ -0,0 +1,5 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/lama-cleaner.png
|
||||
categories:
|
||||
- media
|
||||
- AI
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
|
||||
|
||||
## [serpbear-0.0.1]serpbear-0.0.1 (2022-12-24)
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [serpbear-0.0.2](https://github.com/truecharts/charts/compare/serpbear-0.0.1...serpbear-0.0.2) (2022-12-24)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/serpbear to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [serpbear-0.0.1]serpbear-0.0.1 (2022-12-24)
|
||||
|
|
@ -6,7 +6,7 @@ dependencies:
|
|||
version: 11.0.7
|
||||
deprecated: false
|
||||
description: Search Engine Position Tracking App.
|
||||
home: https://truecharts.org/docs/charts/incubator/serpbear
|
||||
home: https://truecharts.org/charts/incubator/serpbear
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/serpbear.png
|
||||
keywords:
|
||||
- serpbear
|
||||
|
@ -22,7 +22,7 @@ sources:
|
|||
- https://github.com/towfiqi/serpbear
|
||||
- https://hub.docker.com/r/towfiqi/serpbear
|
||||
type: application
|
||||
version: 0.0.1
|
||||
version: 0.0.2
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- metrics
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [serpbear-0.0.2](https://github.com/truecharts/charts/compare/serpbear-0.0.1...serpbear-0.0.2) (2022-12-24)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/serpbear to latest
|
||||
|
||||
|
Binary file not shown.
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/serpbear
|
||||
pullPolicy: IfNotPresent
|
||||
tag: latest@sha256:2aeb05064783dee6c17751eecb0d2d23f6f7e06719c6a34c6d757f7195df04d9
|
||||
tag: latest@sha256:7b91686ba40cf9c838d81d9e0939e3ab200d9c47d522a9521ae3364add5cb827
|
||||
|
||||
serpbear:
|
||||
user: admin
|
Loading…
Reference in New Issue