cleanup catalog
This commit is contained in:
parent
0effbf58a8
commit
effeeb6515
|
@ -1,26 +0,0 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [flowise-0.0.3](https://github.com/truecharts/charts/compare/flowise-0.0.2...flowise-0.0.3) (2023-07-29)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#10955](https://github.com/truecharts/charts/issues/10955))
|
||||
|
||||
|
||||
|
||||
|
||||
## [flowise-0.0.2](https://github.com/truecharts/charts/compare/flowise-0.0.1...flowise-0.0.2) (2023-07-27)
|
||||
|
||||
### Fix
|
||||
|
||||
- Fix duplicate question ([#10886](https://github.com/truecharts/charts/issues/10886))
|
||||
|
||||
|
||||
|
||||
|
||||
## [flowise-0.0.1]flowise-0.0.1 (2023-07-26)
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
apiVersion: v2
|
||||
appVersion: "1.2.16"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 12.15.0
|
||||
deprecated: false
|
||||
description: Drag & drop UI to build your customized LLM flow.
|
||||
home: https://truecharts.org/charts/incubator/flowise
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/flowise.png
|
||||
keywords:
|
||||
- flowise
|
||||
- ai
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: flowise
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/flowise
|
||||
- https://github.com/FlowiseAI/Flowise
|
||||
type: application
|
||||
version: 0.0.3
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- ai
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -1,27 +0,0 @@
|
|||
# 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/guides/scale-intro).
|
||||
- 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*
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [flowise-0.0.3](https://github.com/truecharts/charts/compare/flowise-0.0.2...flowise-0.0.3) (2023-07-29)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#10955](https://github.com/truecharts/charts/issues/10955))
|
||||
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
Drag & drop UI to build your customized LLM flow.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/flowise](https://truecharts.org/charts/incubator/flowise)
|
||||
|
||||
---
|
||||
|
||||
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!
|
Binary file not shown.
|
@ -1,86 +0,0 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/flowise
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v1.2.16@sha256:dd26066890e74e49f4e3976f918394ddc0f84430c59f9abe5315fb8147382440
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
runAsNonRoot: false
|
||||
readOnlyRootFilesystem: false
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: http
|
||||
port: 3000
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
probes:
|
||||
liveness:
|
||||
path: "/"
|
||||
readiness:
|
||||
path: "/"
|
||||
startup:
|
||||
path: "/"
|
||||
args:
|
||||
- npx
|
||||
- flowise
|
||||
- start
|
||||
env:
|
||||
PORT: "{{ .Values.service.main.ports.main.port }}"
|
||||
# Set paths
|
||||
APIKEY_PATH: "{{.Values.persistence.api.mountPath }}"
|
||||
LOG_PATH: "{{.Values.persistence.logs.mountPath }}"
|
||||
# Postgres DB
|
||||
DATABASE_TYPE: postgres
|
||||
OVERRIDE_DATABASE: true
|
||||
DATABASE_HOST:
|
||||
secretKeyRef:
|
||||
name: cnpg-main-urls
|
||||
key: host
|
||||
DATABASE_PORT: 5432
|
||||
DATABASE_USER: "{{ .Values.cnpg.main.user }}"
|
||||
DATABASE_PASSWORD:
|
||||
secretKeyRef:
|
||||
name: cnpg-main-user
|
||||
key: password
|
||||
DATABASE_NAME: "{{ .Values.cnpg.main.database }}"
|
||||
# child | main
|
||||
EXECUTION_MODE: main
|
||||
# error | warn | info | verbose | debug
|
||||
LOG_LEVEL: debug
|
||||
DEBUG: true
|
||||
# optional auth
|
||||
FLOWISE_USERNAME: user
|
||||
FLOWISE_PASSWORD: 1234
|
||||
PASSPHRASE:
|
||||
secretKeyRef:
|
||||
name: flowise-secrets
|
||||
key: PASSPHRASE
|
||||
# TOOL_FUNCTION_BUILTIN_DEP
|
||||
# TOOL_FUNCTION_EXTERNAL_DEP
|
||||
|
||||
persistence:
|
||||
api:
|
||||
enabled: true
|
||||
mountPath: "/config/api"
|
||||
logs:
|
||||
enabled: true
|
||||
mountPath: "/config/logs"
|
||||
|
||||
cnpg:
|
||||
main:
|
||||
enabled: true
|
||||
user: flowise
|
||||
database: flowise
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -1 +0,0 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -1,14 +0,0 @@
|
|||
{{/* Define the secrets */}}
|
||||
{{- define "flowise.secrets" -}}
|
||||
{{- $secretName := (printf "%s-flowise-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) }}
|
||||
{{- $flowiseprevious := lookup "v1" "Secret" .Release.Namespace $secretName }}
|
||||
enabled: true
|
||||
data:
|
||||
{{- if $flowiseprevious }}
|
||||
PASSPHRASE: {{ index $flowiseprevious.data "PASSPHRASE" | b64dec }}
|
||||
{{- else }}
|
||||
{{- $pass_key := randAlphaNum 32 }}
|
||||
PASSPHRASE: {{ $pass_key }}
|
||||
{{- end }}
|
||||
|
||||
{{- end -}}
|
|
@ -1,11 +0,0 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{/* Render secrets for flowise */}}
|
||||
{{- $secrets := include "flowise.secrets" . | fromYaml -}}
|
||||
{{- if $secrets -}}
|
||||
{{- $_ := set .Values.secret "flowise-secrets" $secrets -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -1,5 +0,0 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/flowise.png
|
||||
categories:
|
||||
- ai
|
||||
|
||||
screenshots: []
|
|
@ -1,99 +0,0 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.21](https://github.com/truecharts/charts/compare/searxng-2.0.20...searxng-2.0.21) (2023-02-26)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.20](https://github.com/truecharts/charts/compare/searxng-2.0.19...searxng-2.0.20) (2023-02-10)
|
||||
|
||||
### Fix
|
||||
|
||||
- ensure new helm deps repo is used in latest releases as well.
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.19](https://github.com/truecharts/charts/compare/searxng-2.0.18...searxng-2.0.19) (2023-02-06)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.18](https://github.com/truecharts/charts/compare/searxng-2.0.17...searxng-2.0.18) (2023-02-03)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.17](https://github.com/truecharts/charts/compare/searxng-2.0.16...searxng-2.0.17) (2023-02-02)
|
||||
|
||||
### Fix
|
||||
|
||||
- remove non-link sources ([#6826](https://github.com/truecharts/charts/issues/6826))
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.16](https://github.com/truecharts/charts/compare/searxng-2.0.15...searxng-2.0.16) (2023-01-24)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.15](https://github.com/truecharts/charts/compare/searxng-2.0.14...searxng-2.0.15) (2023-01-18)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.14](https://github.com/truecharts/charts/compare/searxng-2.0.13...searxng-2.0.14) (2023-01-12)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.13](https://github.com/truecharts/charts/compare/searxng-2.0.12...searxng-2.0.13) (2023-01-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.12](https://github.com/truecharts/charts/compare/searxng-2.0.11...searxng-2.0.12) (2022-12-27)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#5856](https://github.com/truecharts/charts/issues/5856))
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.11](https://github.com/truecharts/charts/compare/searxng-2.0.10...searxng-2.0.11) (2022-12-26)
|
||||
|
||||
### Chore
|
|
@ -1,32 +0,0 @@
|
|||
apiVersion: v2
|
||||
appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 11.1.2
|
||||
deprecated: false
|
||||
description: Meta search engine which aggregates results from more than 70 search services.
|
||||
home: https://truecharts.org/charts/incubator/searxng
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/searxng.png
|
||||
keywords:
|
||||
- searxng
|
||||
- Productivity
|
||||
- Other
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: searxng
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/searxng
|
||||
- https://hub.docker.com/r/searxng/searxng
|
||||
- https://github.com/searxng/searxng
|
||||
type: application
|
||||
version: 2.0.21
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- Productivity
|
||||
- Other
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
|
@ -1,27 +0,0 @@
|
|||
# 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*
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [searxng-2.0.21](https://github.com/truecharts/charts/compare/searxng-2.0.20...searxng-2.0.21) (2023-02-26)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
Meta search engine which aggregates results from more than 70 search services.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/searxng](https://truecharts.org/charts/incubator/searxng)
|
||||
|
||||
---
|
||||
|
||||
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!
|
Binary file not shown.
|
@ -1,32 +0,0 @@
|
|||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/searxng
|
||||
tag: latest@sha256:1a312a8c4f11a203edd2b5f41eb13d0faeda00aa3c40e2e833be47b6ea9659ea
|
||||
|
||||
env:
|
||||
BASE_URL: ""
|
||||
INSTANCE_NAME: SearXng
|
||||
|
||||
podSecurityContext:
|
||||
runAsGroup: 0
|
||||
runAsUser: 0
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: false
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 8080
|
||||
protocol: TCP
|
||||
targetPort: 8080
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: /etc/searxng
|
||||
|
||||
portal:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -1,2 +0,0 @@
|
|||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.all" . }}
|
|
@ -1,99 +0,0 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-3.0.1](https://github.com/truecharts/charts/compare/searxng-3.0.0...searxng-3.0.1) (2023-07-29)
|
||||
|
||||
### Fix
|
||||
|
||||
- Update tag for full testing ([#10977](https://github.com/truecharts/charts/issues/10977))
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-3.0.0](https://github.com/truecharts/charts/compare/searxng-2.0.21...searxng-3.0.0) (2023-07-28)
|
||||
|
||||
### Feat
|
||||
|
||||
- hide advanced ingress options behind checbox ([#9203](https://github.com/truecharts/charts/issues/9203))
|
||||
|
||||
### Fix
|
||||
|
||||
- fix mistakes on questions.yaml
|
||||
|
||||
### Migrate
|
||||
|
||||
- Migrate to New Common ([#10851](https://github.com/truecharts/charts/issues/10851))
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.21](https://github.com/truecharts/charts/compare/searxng-2.0.20...searxng-2.0.21) (2023-02-26)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.20](https://github.com/truecharts/charts/compare/searxng-2.0.19...searxng-2.0.20) (2023-02-10)
|
||||
|
||||
### Fix
|
||||
|
||||
- ensure new helm deps repo is used in latest releases as well.
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.19](https://github.com/truecharts/charts/compare/searxng-2.0.18...searxng-2.0.19) (2023-02-06)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.18](https://github.com/truecharts/charts/compare/searxng-2.0.17...searxng-2.0.18) (2023-02-03)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.17](https://github.com/truecharts/charts/compare/searxng-2.0.16...searxng-2.0.17) (2023-02-02)
|
||||
|
||||
### Fix
|
||||
|
||||
- remove non-link sources ([#6826](https://github.com/truecharts/charts/issues/6826))
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.16](https://github.com/truecharts/charts/compare/searxng-2.0.15...searxng-2.0.16) (2023-01-24)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.15](https://github.com/truecharts/charts/compare/searxng-2.0.14...searxng-2.0.15) (2023-01-18)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/searxng to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [searxng-2.0.14](https://github.com/truecharts/charts/compare/searxng-2.0.13...searxng-2.0.14) (2023-01-12)
|
||||
|
||||
### Chore
|
||||
|
|
@ -1,31 +0,0 @@
|
|||
apiVersion: v2
|
||||
appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 13.2.1
|
||||
deprecated: false
|
||||
description: Meta search engine which aggregates results from more than 70 search services.
|
||||
home: https://truecharts.org/charts/incubator/searxng
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/searxng.png
|
||||
keywords:
|
||||
- searxng
|
||||
- Productivity
|
||||
- Other
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: searxng
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/searxng
|
||||
- https://github.com/searxng/searxng
|
||||
type: application
|
||||
version: 3.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- Productivity
|
||||
- Other
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
|
@ -1,27 +0,0 @@
|
|||
# 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/guides/scale-intro).
|
||||
- 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*
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [searxng-3.0.1](https://github.com/truecharts/charts/compare/searxng-3.0.0...searxng-3.0.1) (2023-07-29)
|
||||
|
||||
### Fix
|
||||
|
||||
- Update tag for full testing ([#10977](https://github.com/truecharts/charts/issues/10977))
|
||||
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
Meta search engine which aggregates results from more than 70 search services.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/searxng](https://truecharts.org/charts/incubator/searxng)
|
||||
|
||||
---
|
||||
|
||||
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!
|
Binary file not shown.
|
@ -1,51 +0,0 @@
|
|||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/searxng
|
||||
tag: latest@sha256:880321e4497925165beda91167e5f9bbc699ed0e272edf46fdcee4fdc94c5097
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
env:
|
||||
BIND_ADDRESS: '{{ printf "0.0.0.0:%v" .Values.service.main.ports.main.port }}'
|
||||
INSTANCE_NAME: SearXng
|
||||
BASE_URL: ""
|
||||
probes:
|
||||
liveness:
|
||||
path: /healthz
|
||||
port: "{{ .Values.service.main.ports.main.port }}"
|
||||
readiness:
|
||||
path: /healthz
|
||||
port: "{{ .Values.service.main.ports.main.port }}"
|
||||
startup:
|
||||
type: tcp
|
||||
port: "{{ .Values.service.main.ports.main.port }}"
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
runAsGroup: 0
|
||||
runAsUser: 0
|
||||
capabilities:
|
||||
disableS6Caps: true
|
||||
|
||||
add:
|
||||
- SETUID
|
||||
- SETGID
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 8080
|
||||
protocol: http
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: /etc/searxng
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -1 +0,0 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -1,2 +0,0 @@
|
|||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.all" . }}
|
|
@ -1,6 +0,0 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/searxng.png
|
||||
categories:
|
||||
- Productivity
|
||||
- Other
|
||||
|
||||
screenshots: []
|
|
@ -1,99 +0,0 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.9](https://github.com/truecharts/charts/compare/seedsync-2.0.8...seedsync-2.0.9) (2023-02-10)
|
||||
|
||||
### Fix
|
||||
|
||||
- ensure new helm deps repo is used in latest releases as well.
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.8](https://github.com/truecharts/charts/compare/seedsync-2.0.7...seedsync-2.0.8) (2023-02-03)
|
||||
|
||||
### Fix
|
||||
|
||||
- clean more non-link sources ([#6925](https://github.com/truecharts/charts/issues/6925))
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.7](https://github.com/truecharts/charts/compare/seedsync-2.0.6...seedsync-2.0.7) (2022-12-27)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#5856](https://github.com/truecharts/charts/issues/5856))
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.6](https://github.com/truecharts/charts/compare/seedsync-2.0.5...seedsync-2.0.6) (2022-12-26)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#5839](https://github.com/truecharts/charts/issues/5839))
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.5](https://github.com/truecharts/charts/compare/seedsync-2.0.4...seedsync-2.0.5) (2022-12-25)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.4](https://github.com/truecharts/charts/compare/seedsync-2.0.3...seedsync-2.0.4) (2022-12-19)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.3](https://github.com/truecharts/charts/compare/seedsync-2.0.2...seedsync-2.0.3) (2022-12-13)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.2](https://github.com/truecharts/charts/compare/seedsync-2.0.1...seedsync-2.0.2) (2022-11-30)
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.2](https://github.com/truecharts/charts/compare/seedsync-2.0.1...seedsync-2.0.2) (2022-11-30)
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.2](https://github.com/truecharts/charts/compare/seedsync-2.0.1...seedsync-2.0.2) (2022-11-30)
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.2](https://github.com/truecharts/charts/compare/seedsync-2.0.1...seedsync-2.0.2) (2022-11-30)
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.2](https://github.com/truecharts/charts/compare/seedsync-2.0.1...seedsync-2.0.2) (2022-11-30)
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.2](https://github.com/truecharts/charts/compare/seedsync-2.0.1...seedsync-2.0.2) (2022-11-30)
|
||||
|
||||
|
||||
|
||||
|
|
@ -1,29 +0,0 @@
|
|||
annotations:
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/catagories: |
|
||||
- Tools-Utilities
|
||||
apiVersion: v2
|
||||
appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 11.1.2
|
||||
deprecated: false
|
||||
description: SeedSync is a tool to sync the files on a remote Linux server (like your seedbox, for example). It uses LFTP to transfer files fast!
|
||||
home: https://truecharts.org/charts/incubator/seedsync
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/seedsync.png
|
||||
keywords:
|
||||
- seedsync
|
||||
- Tools-Utilities
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: seedsync
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/seedsync
|
||||
- https://hub.docker.com/r/ipsingh06/seedsync
|
||||
- https://github.com/ipsingh06/seedsync
|
||||
type: application
|
||||
version: 2.0.9
|
|
@ -1,27 +0,0 @@
|
|||
# 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*
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [seedsync-2.0.9](https://github.com/truecharts/charts/compare/seedsync-2.0.8...seedsync-2.0.9) (2023-02-10)
|
||||
|
||||
### Fix
|
||||
|
||||
- ensure new helm deps repo is used in latest releases as well.
|
||||
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
SeedSync is a tool to sync the files on a remote Linux server (like your seedbox, for example). It uses LFTP to transfer files fast!
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/seedsync](https://truecharts.org/charts/incubator/seedsync)
|
||||
|
||||
---
|
||||
|
||||
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!
|
Binary file not shown.
|
@ -1,28 +0,0 @@
|
|||
env: {}
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/seedsync
|
||||
tag: latest@sha256:e8e69dcebd7cd9b15af6484736e6d51df49d0e2757e067b1fe8b9b820c6780d1
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: /config
|
||||
downloads:
|
||||
enabled: true
|
||||
mountPath: /downloads
|
||||
podSecurityContext:
|
||||
runAsGroup: 0
|
||||
runAsUser: 0
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: false
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 8800
|
||||
protocol: TCP
|
||||
targetPort: 8800
|
||||
|
||||
portal:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -1,2 +0,0 @@
|
|||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.all" . }}
|
|
@ -1,99 +0,0 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-3.0.0](https://github.com/truecharts/charts/compare/seedsync-2.0.9...seedsync-3.0.0) (2023-07-26)
|
||||
|
||||
### Feat
|
||||
|
||||
- hide advanced ingress options behind checbox ([#9203](https://github.com/truecharts/charts/issues/9203))
|
||||
|
||||
### Fix
|
||||
|
||||
- fix mistakes on questions.yaml
|
||||
- fix indentation ([#8536](https://github.com/truecharts/charts/issues/8536))
|
||||
|
||||
### Migrate
|
||||
|
||||
- Update to new common ([#10849](https://github.com/truecharts/charts/issues/10849))
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.9](https://github.com/truecharts/charts/compare/seedsync-2.0.8...seedsync-2.0.9) (2023-02-10)
|
||||
|
||||
### Fix
|
||||
|
||||
- ensure new helm deps repo is used in latest releases as well.
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.8](https://github.com/truecharts/charts/compare/seedsync-2.0.7...seedsync-2.0.8) (2023-02-03)
|
||||
|
||||
### Fix
|
||||
|
||||
- clean more non-link sources ([#6925](https://github.com/truecharts/charts/issues/6925))
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.7](https://github.com/truecharts/charts/compare/seedsync-2.0.6...seedsync-2.0.7) (2022-12-27)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#5856](https://github.com/truecharts/charts/issues/5856))
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.6](https://github.com/truecharts/charts/compare/seedsync-2.0.5...seedsync-2.0.6) (2022-12-26)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#5839](https://github.com/truecharts/charts/issues/5839))
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.5](https://github.com/truecharts/charts/compare/seedsync-2.0.4...seedsync-2.0.5) (2022-12-25)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.4](https://github.com/truecharts/charts/compare/seedsync-2.0.3...seedsync-2.0.4) (2022-12-19)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.3](https://github.com/truecharts/charts/compare/seedsync-2.0.2...seedsync-2.0.3) (2022-12-13)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.2](https://github.com/truecharts/charts/compare/seedsync-2.0.1...seedsync-2.0.2) (2022-11-30)
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.2](https://github.com/truecharts/charts/compare/seedsync-2.0.1...seedsync-2.0.2) (2022-11-30)
|
||||
|
||||
|
||||
|
||||
|
||||
## [seedsync-2.0.2](https://github.com/truecharts/charts/compare/seedsync-2.0.1...seedsync-2.0.2) (2022-11-30)
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
annotations:
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/catagories: |
|
||||
- Tools-Utilities
|
||||
apiVersion: v2
|
||||
appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 13.2.1
|
||||
deprecated: false
|
||||
description: SeedSync is a tool to sync the files on a remote Linux server (like your seedbox, for example). It uses LFTP to transfer files fast!
|
||||
home: https://truecharts.org/charts/incubator/seedsync
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/seedsync.png
|
||||
keywords:
|
||||
- seedsync
|
||||
- Tools-Utilities
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: seedsync
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/seedsync
|
||||
- https://github.com/ipsingh06/seedsync
|
||||
type: application
|
||||
version: 3.0.0
|
|
@ -1,27 +0,0 @@
|
|||
# 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/guides/scale-intro).
|
||||
- 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*
|
|
@ -1,18 +0,0 @@
|
|||
|
||||
|
||||
## [seedsync-3.0.0](https://github.com/truecharts/charts/compare/seedsync-2.0.9...seedsync-3.0.0) (2023-07-26)
|
||||
|
||||
### Feat
|
||||
|
||||
- hide advanced ingress options behind checbox ([#9203](https://github.com/truecharts/charts/issues/9203))
|
||||
|
||||
### Fix
|
||||
|
||||
- fix mistakes on questions.yaml
|
||||
- fix indentation ([#8536](https://github.com/truecharts/charts/issues/8536))
|
||||
|
||||
### Migrate
|
||||
|
||||
- Update to new common ([#10849](https://github.com/truecharts/charts/issues/10849))
|
||||
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
SeedSync is a tool to sync the files on a remote Linux server (like your seedbox, for example). It uses LFTP to transfer files fast!
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/seedsync](https://truecharts.org/charts/incubator/seedsync)
|
||||
|
||||
---
|
||||
|
||||
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!
|
Binary file not shown.
|
@ -1,29 +0,0 @@
|
|||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/seedsync
|
||||
tag: latest@sha256:e8e69dcebd7cd9b15af6484736e6d51df49d0e2757e067b1fe8b9b820c6780d1
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
runAsGroup: 0
|
||||
runAsUser: 0
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 8800
|
||||
protocol: http
|
||||
targetPort: 8800
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: /config
|
||||
downloads:
|
||||
enabled: true
|
||||
mountPath: /downloads
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -1 +0,0 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -1,2 +0,0 @@
|
|||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.all" . }}
|
|
@ -1,5 +0,0 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/seedsync.png
|
||||
categories:
|
||||
- Tools-Utilities
|
||||
|
||||
screenshots: []
|
|
@ -1,99 +0,0 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.13](https://github.com/truecharts/charts/compare/sftpgo-2.0.12...sftpgo-2.0.13) (2023-04-30)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sftpgo to latest ([#8373](https://github.com/truecharts/charts/issues/8373))
|
||||
|
||||
### Fix
|
||||
|
||||
- fix indentation ([#8536](https://github.com/truecharts/charts/issues/8536))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.12](https://github.com/truecharts/charts/compare/sftpgo-2.0.11...sftpgo-2.0.12) (2023-02-10)
|
||||
|
||||
### Fix
|
||||
|
||||
- ensure new helm deps repo is used in latest releases as well.
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.11](https://github.com/truecharts/charts/compare/sftpgo-2.0.10...sftpgo-2.0.11) (2023-02-06)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sftpgo to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.10](https://github.com/truecharts/charts/compare/sftpgo-2.0.9...sftpgo-2.0.10) (2023-02-02)
|
||||
|
||||
### Fix
|
||||
|
||||
- remove non-link sources ([#6826](https://github.com/truecharts/charts/issues/6826))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.9](https://github.com/truecharts/charts/compare/sftpgo-2.0.8...sftpgo-2.0.9) (2023-01-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sftpgo to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.8](https://github.com/truecharts/charts/compare/sftpgo-2.0.7...sftpgo-2.0.8) (2022-12-27)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#5856](https://github.com/truecharts/charts/issues/5856))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.7](https://github.com/truecharts/charts/compare/sftpgo-2.0.6...sftpgo-2.0.7) (2022-12-26)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#5839](https://github.com/truecharts/charts/issues/5839))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.6](https://github.com/truecharts/charts/compare/sftpgo-2.0.5...sftpgo-2.0.6) (2022-12-25)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.5](https://github.com/truecharts/charts/compare/sftpgo-2.0.4...sftpgo-2.0.5) (2022-12-19)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.4](https://github.com/truecharts/charts/compare/sftpgo-2.0.3...sftpgo-2.0.4) (2022-12-13)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major
|
||||
|
||||
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
annotations:
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/catagories: |
|
||||
- Network-FTP
|
||||
apiVersion: v2
|
||||
appVersion: "latest"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 11.1.2
|
||||
deprecated: false
|
||||
description: "Fully featured and highly configurable SFTP server with optional HTTP/S, FTP, FTPS and WebDAV support. Several storage backends are supported: local filesystem, encrypted local filesystem, S3 (compatible) Object Storage, Google Cloud Storage, Azure Blob Storage, SFTP."
|
||||
home: https://truecharts.org/charts/incubator/sftpgo
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/sftpgo.png
|
||||
keywords:
|
||||
- sftpgo
|
||||
- Network-FTP
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: sftpgo
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/sftpgo
|
||||
- https://github.com/drakkan/sftpgo
|
||||
type: application
|
||||
version: 2.0.13
|
|
@ -1,27 +0,0 @@
|
|||
# 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*
|
|
@ -1,13 +0,0 @@
|
|||
|
||||
|
||||
## [sftpgo-2.0.13](https://github.com/truecharts/charts/compare/sftpgo-2.0.12...sftpgo-2.0.13) (2023-04-30)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sftpgo to latest ([#8373](https://github.com/truecharts/charts/issues/8373))
|
||||
|
||||
### Fix
|
||||
|
||||
- fix indentation ([#8536](https://github.com/truecharts/charts/issues/8536))
|
||||
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
Fully featured and highly configurable SFTP server with optional HTTP/S, FTP, FTPS and WebDAV support. Several storage backends are supported: local filesystem, encrypted local filesystem, S3 (compatible) Object Storage, Google Cloud Storage, Azure Blob Storage, SFTP.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/sftpgo](https://truecharts.org/charts/incubator/sftpgo)
|
||||
|
||||
---
|
||||
|
||||
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!
|
Binary file not shown.
|
@ -1,73 +0,0 @@
|
|||
env:
|
||||
SFTPGO_COMMON__DEFENDER__ENABLED: "true"
|
||||
SFTPGO_FTPD__BINDINGS__0__DEBUG: "0"
|
||||
SFTPGO_FTPD__BINDINGS__0__FORCE_PASSIVE_IP: 10.0.0.10
|
||||
SFTPGO_FTPD__BINDINGS__0__PORT: "2121"
|
||||
SFTPGO_FTPD__PASSIVE_PORT_RANGE__END: "50100"
|
||||
SFTPGO_FTPD__PASSIVE_PORT_RANGE__START: "50000"
|
||||
SFTPGO_WEBDAVD__BINDINGS__0__PORT: "10080"
|
||||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/sftpgo
|
||||
tag: latest@sha256:48b22b6bfe9beb43c747436c4376c43b739ee639d795c68ccfca59960c9c45c7
|
||||
persistence:
|
||||
backupdirectory:
|
||||
enabled: true
|
||||
mountPath: /srv/sftpgo/backups
|
||||
configpath:
|
||||
enabled: true
|
||||
mountPath: /var/lib/sftpgo
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: /srv/sftpgo/data
|
||||
shareaccess:
|
||||
enabled: true
|
||||
mountPath: /unraid
|
||||
podSecurityContext:
|
||||
runAsGroup: 0
|
||||
runAsUser: 0
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: false
|
||||
service:
|
||||
ftpport:
|
||||
enabled: true
|
||||
ports:
|
||||
ftpport:
|
||||
enabled: true
|
||||
port: 2121
|
||||
protocol: TCP
|
||||
targetPort: 2121
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 2221
|
||||
protocol: HTTP
|
||||
targetPort: 8080
|
||||
passiveports:
|
||||
enabled: true
|
||||
ports:
|
||||
passiveports:
|
||||
enabled: true
|
||||
port: 50000
|
||||
protocol: TCP
|
||||
targetPort: 50000
|
||||
sftpport:
|
||||
enabled: true
|
||||
ports:
|
||||
sftpport:
|
||||
enabled: true
|
||||
port: 2022
|
||||
protocol: TCP
|
||||
targetPort: 2022
|
||||
webdavport:
|
||||
enabled: true
|
||||
ports:
|
||||
webdavport:
|
||||
enabled: true
|
||||
port: 10080
|
||||
protocol: TCP
|
||||
targetPort: 10080
|
||||
|
||||
portal:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -1,2 +0,0 @@
|
|||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.all" . }}
|
|
@ -1,99 +0,0 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-3.0.4](https://github.com/truecharts/charts/compare/sftpgo-3.0.3...sftpgo-3.0.4) (2023-07-30)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#11034](https://github.com/truecharts/charts/issues/11034))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-3.0.3](https://github.com/truecharts/charts/compare/sftpgo-3.0.2...sftpgo-3.0.3) (2023-07-29)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#10955](https://github.com/truecharts/charts/issues/10955))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-3.0.2](https://github.com/truecharts/charts/compare/sftpgo-3.0.1...sftpgo-3.0.2) (2023-07-22)
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-3.0.1](https://github.com/truecharts/charts/compare/sftpgo-3.0.0...sftpgo-3.0.1) (2023-07-03)
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-3.0.0](https://github.com/truecharts/charts/compare/sftpgo-2.0.13...sftpgo-3.0.0) (2023-07-02)
|
||||
|
||||
### Feat
|
||||
|
||||
- hide advanced ingress options behind checbox ([#9203](https://github.com/truecharts/charts/issues/9203))
|
||||
|
||||
### Fix
|
||||
|
||||
- fix mistakes on questions.yaml
|
||||
|
||||
### Migrate
|
||||
|
||||
- Migrate to new common *Breaking* ([#10091](https://github.com/truecharts/charts/issues/10091))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.13](https://github.com/truecharts/charts/compare/sftpgo-2.0.12...sftpgo-2.0.13) (2023-04-30)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sftpgo to latest ([#8373](https://github.com/truecharts/charts/issues/8373))
|
||||
|
||||
### Fix
|
||||
|
||||
- fix indentation ([#8536](https://github.com/truecharts/charts/issues/8536))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.12](https://github.com/truecharts/charts/compare/sftpgo-2.0.11...sftpgo-2.0.12) (2023-02-10)
|
||||
|
||||
### Fix
|
||||
|
||||
- ensure new helm deps repo is used in latest releases as well.
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.11](https://github.com/truecharts/charts/compare/sftpgo-2.0.10...sftpgo-2.0.11) (2023-02-06)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sftpgo to latest
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.10](https://github.com/truecharts/charts/compare/sftpgo-2.0.9...sftpgo-2.0.10) (2023-02-02)
|
||||
|
||||
### Fix
|
||||
|
||||
- remove non-link sources ([#6826](https://github.com/truecharts/charts/issues/6826))
|
||||
|
||||
|
||||
|
||||
|
||||
## [sftpgo-2.0.9](https://github.com/truecharts/charts/compare/sftpgo-2.0.8...sftpgo-2.0.9) (2023-01-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/sftpgo to latest
|
||||
|
||||
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
apiVersion: v2
|
||||
appVersion: "2.5.3"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 13.2.2
|
||||
deprecated: false
|
||||
description: "Fully featured and highly configurable SFTP server with optional HTTP/S, FTP, FTPS and WebDAV support. Several storage backends are supported: local filesystem, encrypted local filesystem, S3 (compatible) Object Storage, Google Cloud Storage, Azure Blob Storage, SFTP."
|
||||
home: https://truecharts.org/charts/incubator/sftpgo
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/sftpgo.png
|
||||
keywords:
|
||||
- sftpgo
|
||||
- Network-FTP
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: sftpgo
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/sftpgo
|
||||
- https://github.com/drakkan/sftpgo
|
||||
type: application
|
||||
version: 3.0.4
|
||||
annotations:
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/catagories: |
|
||||
- Network-FTP
|
|
@ -1,27 +0,0 @@
|
|||
# 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/guides/scale-intro).
|
||||
- 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*
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [sftpgo-3.0.4](https://github.com/truecharts/charts/compare/sftpgo-3.0.3...sftpgo-3.0.4) (2023-07-30)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#11034](https://github.com/truecharts/charts/issues/11034))
|
||||
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
Fully featured and highly configurable SFTP server with optional HTTP/S, FTP, FTPS and WebDAV support. Several storage backends are supported: local filesystem, encrypted local filesystem, S3 (compatible) Object Storage, Google Cloud Storage, Azure Blob Storage, SFTP.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/sftpgo](https://truecharts.org/charts/incubator/sftpgo)
|
||||
|
||||
---
|
||||
|
||||
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!
|
Binary file not shown.
|
@ -1,83 +0,0 @@
|
|||
image:
|
||||
pullPolicy: IfNotPresent
|
||||
repository: tccr.io/truecharts/sftpgo
|
||||
tag: v2.5.3@sha256:1a159663e5a9a2430edbf9b143fe8cab2998697bee9909598db32351c9de4f85
|
||||
|
||||
securityContext:
|
||||
container:
|
||||
runAsNonRoot: false
|
||||
readOnlyRootFilesystem: false
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 2221
|
||||
protocol: http
|
||||
targetPort: 8080
|
||||
ftpport:
|
||||
enabled: true
|
||||
ports:
|
||||
ftpport:
|
||||
enabled: true
|
||||
port: 2121
|
||||
protocol: http
|
||||
targetPort: 2121
|
||||
passiveports:
|
||||
enabled: true
|
||||
ports:
|
||||
passiveports:
|
||||
enabled: true
|
||||
port: 50000
|
||||
protocol: http
|
||||
targetPort: 50000
|
||||
sftpport:
|
||||
enabled: true
|
||||
ports:
|
||||
sftpport:
|
||||
enabled: true
|
||||
port: 2022
|
||||
protocol: tcp
|
||||
targetPort: 2022
|
||||
webdavport:
|
||||
enabled: true
|
||||
ports:
|
||||
webdavport:
|
||||
enabled: true
|
||||
port: 10080
|
||||
protocol: tcp
|
||||
targetPort: 10080
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
env:
|
||||
SFTPGO_COMMON__DEFENDER__ENABLED: "true"
|
||||
SFTPGO_FTPD__BINDINGS__0__DEBUG: "0"
|
||||
SFTPGO_FTPD__BINDINGS__0__FORCE_PASSIVE_IP: 10.0.0.10
|
||||
SFTPGO_FTPD__BINDINGS__0__PORT: "2121"
|
||||
SFTPGO_FTPD__PASSIVE_PORT_RANGE__END: "50100"
|
||||
SFTPGO_FTPD__PASSIVE_PORT_RANGE__START: "50000"
|
||||
SFTPGO_WEBDAVD__BINDINGS__0__PORT: "10080"
|
||||
|
||||
persistence:
|
||||
backupdirectory:
|
||||
enabled: true
|
||||
mountPath: /srv/sftpgo/backups
|
||||
configpath:
|
||||
enabled: true
|
||||
mountPath: /var/lib/sftpgo
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: /srv/sftpgo/data
|
||||
shareaccess:
|
||||
enabled: true
|
||||
mountPath: /shareaccess
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -1 +0,0 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
|
@ -1 +0,0 @@
|
|||
{{ include "tc.v1.common.loader.all" . }}
|
|
@ -1,5 +0,0 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/sftpgo.png
|
||||
categories:
|
||||
- Network-FTP
|
||||
|
||||
screenshots: []
|
|
@ -1,58 +0,0 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [wordpress-1.0.0](https://github.com/truecharts/charts/compare/wordpress-0.0.5...wordpress-1.0.0) (2022-12-07)
|
||||
|
||||
### Feat
|
||||
|
||||
- Add https + reverse-proxy ([#5179](https://github.com/truecharts/charts/issues/5179))
|
||||
|
||||
|
||||
|
||||
|
||||
## [wordpress-0.0.5](https://github.com/truecharts/charts/compare/wordpress-0.0.4...wordpress-0.0.5) (2022-12-07)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/wordpress to 6.1.1
|
||||
|
||||
|
||||
|
||||
|
||||
## [wordpress-0.0.4](https://github.com/truecharts/charts/compare/wordpress-0.0.3...wordpress-0.0.4) (2022-12-06)
|
||||
|
||||
### Feat
|
||||
|
||||
- Fix quotes ([#5161](https://github.com/truecharts/charts/issues/5161))
|
||||
|
||||
|
||||
|
||||
|
||||
## [wordpress-0.0.3](https://github.com/truecharts/charts/compare/wordpress-0.0.2...wordpress-0.0.3) (2022-12-06)
|
||||
|
||||
### Feat
|
||||
|
||||
- Add user to configmap ([#5150](https://github.com/truecharts/charts/issues/5150))
|
||||
|
||||
|
||||
|
||||
|
||||
## [wordpress-0.0.2](https://github.com/truecharts/charts/compare/wordpress-0.0.1...wordpress-0.0.2) (2022-12-05)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major
|
||||
|
||||
|
||||
|
||||
|
||||
## [wordpress-0.0.1]wordpress-0.0.1 (2022-12-05)
|
||||
|
||||
### Feat
|
||||
|
||||
- Add Wordpress ([#4764](https://github.com/truecharts/charts/issues/4764))
|
||||
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
apiVersion: v2
|
||||
appVersion: "6.1.1"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 11.0.4
|
||||
- condition: mariadb.enabled
|
||||
name: mariadb
|
||||
repository: https://charts.truecharts.org/
|
||||
version: 5.0.9
|
||||
description: The WordPress rich content management system can utilize plugins, widgets, and themes.
|
||||
home: https://truecharts.org/docs/charts/incubator/wordpress
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/wordpress.png
|
||||
keywords:
|
||||
- wordpress
|
||||
- cms
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: wordpress
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/wordpress
|
||||
- https://hub.docker.com/_/wordpress
|
||||
- https://www.wordpress.org
|
||||
version: 1.0.0
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- website
|
||||
- CMS
|
||||
- Hosting
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
|
@ -1 +0,0 @@
|
|||
# wordpress
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [wordpress-1.0.0](https://github.com/truecharts/charts/compare/wordpress-0.0.5...wordpress-1.0.0) (2022-12-07)
|
||||
|
||||
### Feat
|
||||
|
||||
- Add https + reverse-proxy ([#5179](https://github.com/truecharts/charts/issues/5179))
|
||||
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
The WordPress rich content management system can utilize plugins, widgets, and themes.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/docs/charts/incubator/wordpress](https://truecharts.org/docs/charts/incubator/wordpress)
|
||||
|
||||
---
|
||||
|
||||
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.
Binary file not shown.
|
@ -1,63 +0,0 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/wordpress
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 6.1.1@sha256:f6f54523a1dde1484e365c4c7fb636e77f928ea08bfb53b3f199cd615ac53ec4
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
|
||||
podSecurityContext:
|
||||
runAsGroup: 0
|
||||
|
||||
wordpress:
|
||||
user: user
|
||||
pass: bitnami
|
||||
email: user@example.com
|
||||
first_name: TrueCharts
|
||||
last_name: TrueCharts
|
||||
blog_name: Truecharts Blog
|
||||
enable_reverse_proxy_headers: true
|
||||
|
||||
smtp:
|
||||
enabled: false
|
||||
host: ""
|
||||
port: ""
|
||||
user: ""
|
||||
pass: ""
|
||||
|
||||
php-config:
|
||||
PHP_ENABLE_OPCACHE: "yes"
|
||||
PHP_EXPOSE_PHP: ""
|
||||
PHP_MAX_EXECUTION_TIME: ""
|
||||
PHP_MAX_INPUT_TIME: ""
|
||||
PHP_MAX_INPUT_VARS: ""
|
||||
PHP_MEMORY_LIMIT: 512M
|
||||
PHP_POST_MAX_SIZE: ""
|
||||
PHP_UPLOAD_MAX_FILESIZE: ""
|
||||
|
||||
envFrom:
|
||||
- configMapRef:
|
||||
name: '{{ include "tc.common.names.fullname" . }}-env-config'
|
||||
- secretRef:
|
||||
name: '{{ include "tc.common.names.fullname" . }}-env-secret'
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: HTTP
|
||||
port: 10591
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: /bitnami/wordpress
|
||||
|
||||
mariadb:
|
||||
enabled: true
|
||||
mariadbUsername: wordpress
|
||||
mariadbDatabase: wordpress
|
||||
existingSecret: mariadbcreds
|
||||
|
||||
portal:
|
||||
enabled: true
|
File diff suppressed because it is too large
Load Diff
|
@ -1,117 +0,0 @@
|
|||
{{/* Wordpress environment variables */}}
|
||||
{{- define "wordpress.env" -}}
|
||||
{{- $configName := printf "%s-env-config" (include "tc.common.names.fullname" .) }}
|
||||
{{- $secretName := printf "%s-env-secret" (include "tc.common.names.fullname" .) }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: {{ $configName }}
|
||||
labels:
|
||||
{{- include "tc.common.labels" . | nindent 4 }}
|
||||
data:
|
||||
APACHE_HTTP_PORT_NUMBER: {{ .Values.service.main.ports.main.port | quote }}
|
||||
|
||||
{{/* Database */}}
|
||||
WORDPRESS_DATABASE_PORT_NUMBER: "3306"
|
||||
WORDPRESS_DATABASE_USER: {{ .Values.mariadb.mariadbUsername | quote }}
|
||||
WORDPRESS_DATABASE_NAME: {{ .Values.mariadb.mariadbDatabase | quote }}
|
||||
|
||||
{{/* Wordpress */}}
|
||||
WORDPRESS_USERNAME: {{ .Values.wordpress.user | quote }}
|
||||
WORDPRESS_EMAIL: {{ .Values.wordpress.email | quote }}
|
||||
WORDPRESS_FIRST_NAME: {{ .Values.wordpress.first_name | quote }}
|
||||
WORDPRESS_LAST_NAME: {{ .Values.wordpress.last_name | quote }}
|
||||
WORDPRESS_BLOG_NAME: {{ .Values.wordpress.blog_name | quote }}
|
||||
WORDPRESS_ENABLE_REVERSE_PROXY: {{ ternary "yes" "no" .Values.wordpress.enable_reverse_proxy_headers | quote }}
|
||||
|
||||
{{- if .Values.smtp.enabled }}
|
||||
WORDPRESS_SMTP_HOST: {{ .Values.smtp.host | quote }}
|
||||
WORDPRESS_SMTP_PORT: {{ .Values.smtp.port | quote }}
|
||||
{{- end }}
|
||||
|
||||
{{/* PHP */}}
|
||||
{{- with .Values.wordpress.PHP_ENABLE_OPCACHE }}
|
||||
PHP_ENABLE_OPCACHE: {{ . | quote }}
|
||||
{{- end }}
|
||||
{{- with .Values.wordpress.PHP_EXPOSE_PHP }}
|
||||
PHP_EXPOSE_PHP: {{ . | quote }}
|
||||
{{- end }}
|
||||
{{- with .Values.wordpress.PHP_MAX_EXECUTION_TIME }}
|
||||
PHP_MAX_EXECUTION_TIME: {{ . | quote }}
|
||||
{{- end }}
|
||||
{{- with .Values.wordpress.PHP_MAX_INPUT_TIME }}
|
||||
PHP_MAX_INPUT_TIME: {{ . | quote }}
|
||||
{{- end }}
|
||||
{{- with .Values.wordpress.PHP_MAX_INPUT_VARS }}
|
||||
PHP_MAX_INPUT_VARS: {{ . | quote }}
|
||||
{{- end }}
|
||||
{{- with .Values.wordpress.PHP_MEMORY_LIMIT }}
|
||||
PHP_MEMORY_LIMIT: {{ . | quote }}
|
||||
{{- end }}
|
||||
{{- with .Values.wordpress.PHP_POST_MAX_SIZE }}
|
||||
PHP_POST_MAX_SIZE: {{ . | quote }}
|
||||
{{- end }}
|
||||
{{- with .Values.wordpress.PHP_UPLOAD_MAX_FILESIZE }}
|
||||
PHP_UPLOAD_MAX_FILESIZE: {{ . | quote }}
|
||||
{{- end }}
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ $secretName }}
|
||||
labels:
|
||||
{{- include "tc.common.labels" . | nindent 4 }}
|
||||
data:
|
||||
WORDPRESS_DATABASE_HOST: {{ printf "%v-%v" .Release.Name "mariadb" | b64enc }}
|
||||
WORDPRESS_DATABASE_PASSWORD: {{ .Values.mariadb.mariadbPassword | trimAll "\"" | b64enc }}
|
||||
|
||||
WORDPRESS_PASSWORD: {{ .Values.wordpress.pass | b64enc }}
|
||||
|
||||
{{- if .Values.smtp.enabled }}
|
||||
WORDPRESS_SMTP_USER: {{ .Values.smtp.user | b64enc }}
|
||||
WORDPRESS_SMTP_PASSWORD: {{ .Values.smtp.pass | b64enc }}
|
||||
{{- end }}
|
||||
|
||||
{{/* Salts */}}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) }}
|
||||
WORDPRESS_AUTH_KEY: {{ index .data "WORDPRESS_AUTH_KEY" }}
|
||||
{{- else }}
|
||||
WORDPRESS_AUTH_KEY: {{ randAlphaNum 32 | b64enc }}
|
||||
{{- end }}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) }}
|
||||
WORDPRESS_SECURE_AUTH_KEY: {{ index .data "WORDPRESS_SECURE_AUTH_KEY" }}
|
||||
{{- else }}
|
||||
WORDPRESS_SECURE_AUTH_KEY: {{ randAlphaNum 32 | b64enc }}
|
||||
{{- end }}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) }}
|
||||
WORDPRESS_LOGGED_IN_KEY: {{ index .data "WORDPRESS_LOGGED_IN_KEY" }}
|
||||
{{- else }}
|
||||
WORDPRESS_LOGGED_IN_KEY: {{ randAlphaNum 32 | b64enc }}
|
||||
{{- end }}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) }}
|
||||
WORDPRESS_NONCE_KEY: {{ index .data "WORDPRESS_NONCE_KEY" }}
|
||||
{{- else }}
|
||||
WORDPRESS_NONCE_KEY: {{ randAlphaNum 32 | b64enc }}
|
||||
{{- end }}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) }}
|
||||
WORDPRESS_AUTH_SALT: {{ index .data "WORDPRESS_AUTH_SALT" }}
|
||||
{{- else }}
|
||||
WORDPRESS_AUTH_SALT: {{ randAlphaNum 32 | b64enc }}
|
||||
{{- end }}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) }}
|
||||
WORDPRESS_SECURE_AUTH_SALT: {{ index .data "WORDPRESS_SECURE_AUTH_SALT" }}
|
||||
{{- else }}
|
||||
WORDPRESS_SECURE_AUTH_SALT: {{ randAlphaNum 32 | b64enc }}
|
||||
{{- end }}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) }}
|
||||
WORDPRESS_LOGGED_IN_SALT: {{ index .data "WORDPRESS_LOGGED_IN_SALT" }}
|
||||
{{- else }}
|
||||
WORDPRESS_LOGGED_IN_SALT: {{ randAlphaNum 32 | b64enc }}
|
||||
{{- end }}
|
||||
{{- with (lookup "v1" "Secret" .Release.Namespace $secretName) }}
|
||||
WORDPRESS_NONCE_SALT: {{ index .data "WORDPRESS_NONCE_SALT" }}
|
||||
{{- else }}
|
||||
WORDPRESS_NONCE_SALT: {{ randAlphaNum 32 | b64enc }}
|
||||
{{- end }}
|
||||
{{- end }}
|
|
@ -1,8 +0,0 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.common.loader.init" . }}
|
||||
|
||||
{{/* Plausible environment variables */}}
|
||||
{{- include "wordpress.env" . }}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.common.loader.apply" . }}
|
|
@ -1,6 +0,0 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/wordpress.png
|
||||
categories:
|
||||
- website
|
||||
- CMS
|
||||
- Hosting
|
||||
|
|
@ -1,36 +0,0 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [wyoming-piper-0.0.5](https://github.com/truecharts/charts/compare/wyoming-piper-0.0.4...wyoming-piper-0.0.5) (2023-07-30)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#11034](https://github.com/truecharts/charts/issues/11034))
|
||||
|
||||
|
||||
|
||||
|
||||
## [wyoming-piper-0.0.4](https://github.com/truecharts/charts/compare/wyoming-piper-0.0.3...wyoming-piper-0.0.4) (2023-07-29)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#10955](https://github.com/truecharts/charts/issues/10955))
|
||||
|
||||
|
||||
|
||||
|
||||
## [wyoming-piper-0.0.3](https://github.com/truecharts/charts/compare/wyoming-piper-0.0.2...wyoming-piper-0.0.3) (2023-07-22)
|
||||
|
||||
|
||||
|
||||
|
||||
## [wyoming-piper-0.0.2](https://github.com/truecharts/charts/compare/wyoming-piper-0.0.1...wyoming-piper-0.0.2) (2023-07-19)
|
||||
|
||||
|
||||
|
||||
|
||||
## [wyoming-piper-0.0.1]wyoming-piper-0.0.1 (2023-07-19)
|
||||
|
|
@ -1,27 +0,0 @@
|
|||
apiVersion: v2
|
||||
appVersion: "0.0.2"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 13.2.2
|
||||
deprecated: false
|
||||
description: The Wyoming integration of piper
|
||||
home: https://truecharts.org/charts/incubator/wyoming-piper
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/wyoming-piper.png
|
||||
keywords:
|
||||
- wyoming-piper
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: wyoming-piper
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/incubator/wyoming-piper
|
||||
- https://github.com/home-assistant/addons/tree/master/piper
|
||||
type: application
|
||||
version: 0.0.5
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- home-automation
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -1,27 +0,0 @@
|
|||
# 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/guides/scale-intro).
|
||||
- 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*
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [wyoming-piper-0.0.5](https://github.com/truecharts/charts/compare/wyoming-piper-0.0.4...wyoming-piper-0.0.5) (2023-07-30)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#11034](https://github.com/truecharts/charts/issues/11034))
|
||||
|
||||
|
|
@ -1,8 +0,0 @@
|
|||
The Wyoming integration of piper
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/wyoming-piper](https://truecharts.org/charts/incubator/wyoming-piper)
|
||||
|
||||
---
|
||||
|
||||
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!
|
Binary file not shown.
|
@ -1,43 +0,0 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/wyoming-piper
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v0.0.2@sha256:f005182e6f3d661f59319c738569e399e519ac1ee92a603a696ca36806f049e7
|
||||
|
||||
wyoming_piper:
|
||||
voice: en-us-lessac-low
|
||||
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
containers:
|
||||
main:
|
||||
probes:
|
||||
liveness:
|
||||
port: 10200
|
||||
scheme: tcp
|
||||
readiness:
|
||||
port: 10200
|
||||
scheme: tcp
|
||||
startup:
|
||||
port: 10200
|
||||
scheme: tcp
|
||||
args:
|
||||
- --voice
|
||||
- "{{ .Values.wyoming_piper.voice }}"
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 10200
|
||||
protocol: tcp
|
||||
targetPort: 10200
|
||||
|
||||
persistence:
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: /data
|
||||
|
||||
portal:
|
||||
open:
|
||||
enabled: false
|
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue