Commit new Chart releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
95fee65710
commit
a1d4321dfc
|
@ -0,0 +1,8 @@
|
|||
**Important:**
|
||||
*for the complete changelog, please refer to the website*
|
||||
|
||||
|
||||
|
||||
|
||||
## [owncloud-ocis-11.0.16](https://github.com/truecharts/charts/compare/owncloud-ocis-11.0.15...owncloud-ocis-11.0.16) (2023-07-05)
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
apiVersion: v2
|
||||
appVersion: "3.0.0"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 12.14.6
|
||||
description: ownCloud Infinite Scale is a self-hosted file sync and share server.
|
||||
home: https://truecharts.org/charts/stable/owncloud-ocis
|
||||
icon: https://truecharts.org/img/hotlink-ok/chart-icons/owncloud-ocis.png
|
||||
keywords:
|
||||
- owncloud
|
||||
- ocis
|
||||
- infinite
|
||||
- scale
|
||||
- self-hosted
|
||||
- sync
|
||||
- share
|
||||
- server
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: owncloud-ocis
|
||||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/owncloud-ocis
|
||||
- https://owncloud.dev/ocis/
|
||||
version: 11.0.16
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
||||
truecharts.org/SCALE-support: "true"
|
|
@ -0,0 +1,4 @@
|
|||
|
||||
|
||||
## [owncloud-ocis-11.0.16](https://github.com/truecharts/charts/compare/owncloud-ocis-11.0.15...owncloud-ocis-11.0.16) (2023-07-05)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
ownCloud Infinite Scale is a self-hosted file sync and share server.
|
||||
|
||||
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/owncloud-ocis](https://truecharts.org/charts/incubator/owncloud-ocis)
|
||||
|
||||
---
|
||||
|
||||
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!
|
|
@ -0,0 +1,67 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/ocis
|
||||
tag: v3.0.0@sha256:55264618b01bec8d712ec829caee909466634702d092c9e1f8e84adc47085a47
|
||||
pullPolicy: IfNotPresent
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
protocol: https
|
||||
port: 9200
|
||||
targetPort: 9200
|
||||
persistence:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: "/var/lib/ocis"
|
||||
config:
|
||||
enabled: true
|
||||
mountPath: "/etc/ocis"
|
||||
targetSelectAll: true
|
||||
portal:
|
||||
open:
|
||||
enabled: true
|
||||
securityContext:
|
||||
container:
|
||||
readOnlyRootFilesystem: false
|
||||
workload:
|
||||
main:
|
||||
podSpec:
|
||||
initContainers:
|
||||
init:
|
||||
type: install
|
||||
enabled: true
|
||||
imageSelector: image
|
||||
command:
|
||||
- "/bin/sh"
|
||||
- "-c"
|
||||
- |
|
||||
/usr/bin/ocis init > /etc/ocis/password <<'EOF'
|
||||
yes
|
||||
EOF
|
||||
main:
|
||||
probes:
|
||||
liveness:
|
||||
type: tcp
|
||||
readiness:
|
||||
type: tcp
|
||||
startup:
|
||||
type: tcp
|
||||
OCIS_INSECURE: true
|
||||
ACCOUNTS_DEMO_USERS_AND_GROUPS: false
|
||||
OCIS_LOG_PRETTY: true
|
||||
OCIS_LOG_COLOR: true
|
||||
PROXY_TLS: false
|
||||
PROXY_HTTP_ADDR: "0.0.0.0:{{ .Values.service.main.ports.main.port }}"
|
||||
OCIS_URL: "https://localhost:{{ .Values.service.main.ports.main.port }}"
|
||||
OCIS_JWT_SECRET:
|
||||
secretKeyRef:
|
||||
name: secrets
|
||||
key: OCIS_JWT_SECRET
|
||||
STORAGE_TRANSFER_SECRET:
|
||||
secretKeyRef:
|
||||
name: secrets
|
||||
key: STORAGE_TRANSFER_SECRET
|
||||
OCIS_MACHINE_AUTH_API_KEY:
|
||||
secretKeyRef:
|
||||
name: secrets
|
||||
key: OCIS_MACHINE_AUTH_API_KEY
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,20 @@
|
|||
{{/* Define the secrets */}}
|
||||
{{- define "ocis.secrets" -}}
|
||||
{{- $secretName := (printf "%s-ocis-secrets" (include "tc.v1.common.lib.chart.names.fullname" $)) }}
|
||||
{{- $ocisprevious := lookup "v1" "Secret" .Release.Namespace $secretName }}
|
||||
enabled: true
|
||||
data:
|
||||
{{- if $ocisprevious }}
|
||||
OCIS_JWT_SECRET: {{ index $ocisprevious.data "OCIS_JWT_SECRET" | b64dec }}
|
||||
STORAGE_TRANSFER_SECRET: {{ index $ocisprevious.data "STORAGE_TRANSFER_SECRET" | b64dec }}
|
||||
OCIS_MACHINE_AUTH_API_KEY: {{ index $ocisprevious.data "OCIS_MACHINE_AUTH_API_KEY" | b64dec }}
|
||||
{{- else }}
|
||||
{{- $ocis_jwt_secret := randAlphaNum 32 }}
|
||||
{{- $storage_transfer_secret := randAlphaNum 32 }}
|
||||
{{- $ocis_machine_auth_api_Key := randAlphaNum 32 }}
|
||||
OCIS_JWT_SECRET: {{ $ocis_jwt_secret }}
|
||||
STORAGE_TRANSFER_SECRET: {{ $storage_transfer_secret }}
|
||||
OCIS_MACHINE_AUTH_API_KEY: {{ $ocis_machine_auth_api_Key }}
|
||||
{{- end }}
|
||||
|
||||
{{- end -}}
|
|
@ -0,0 +1,11 @@
|
|||
{{/* Make sure all variables are set properly */}}
|
||||
{{- include "tc.v1.common.loader.init" . }}
|
||||
|
||||
{{/* Render secrets for owncloud-ocis */}}
|
||||
{{- $secrets := include "ocis.secrets" . | fromYaml -}}
|
||||
{{- if $secrets -}}
|
||||
{{- $_ := set .Values.secret "secrets" $secrets -}}
|
||||
{{- end -}}
|
||||
|
||||
{{/* Render the templates */}}
|
||||
{{ include "tc.v1.common.loader.apply" . }}
|
|
@ -0,0 +1,5 @@
|
|||
icon_url: https://truecharts.org/img/hotlink-ok/chart-icons/owncloud-ocis.png
|
||||
categories:
|
||||
- media
|
||||
|
||||
screenshots: []
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [booksonic-air-9.0.27](https://github.com/truecharts/charts/compare/booksonic-air-9.0.26...booksonic-air-9.0.27) (2023-07-01)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#10069](https://github.com/truecharts/charts/issues/10069))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [booksonic-air-9.0.28](https://github.com/truecharts/charts/compare/booksonic-air-9.0.27...booksonic-air-9.0.28) (2023-07-05)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/booksonic-air to v2201.1.0 ([#10176](https://github.com/truecharts/charts/issues/10176))
|
||||
|
||||
|
||||
|
||||
|
||||
## [booksonic-air-9.0.27](https://github.com/truecharts/charts/compare/booksonic-air-9.0.26...booksonic-air-9.0.27) (2023-07-01)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
- update helm general non-major ([#9197](https://github.com/truecharts/charts/issues/9197))
|
||||
|
||||
|
||||
|
||||
|
||||
## [booksonic-air-9.0.18](https://github.com/truecharts/charts/compare/booksonic-air-9.0.17...booksonic-air-9.0.18) (2023-05-26)
|
||||
|
||||
### Chore
|
||||
|
||||
- update helm general non-major ([#9156](https://github.com/truecharts/charts/issues/9156))
|
||||
|
||||
|
|
@ -19,7 +19,7 @@ name: booksonic-air
|
|||
sources:
|
||||
- https://github.com/truecharts/charts/tree/master/charts/stable/booksonic-air
|
||||
- https://github.com/popeen/Booksonic-Air
|
||||
version: 9.0.27
|
||||
version: 9.0.28
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [booksonic-air-9.0.28](https://github.com/truecharts/charts/compare/booksonic-air-9.0.27...booksonic-air-9.0.28) (2023-07-05)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/booksonic-air to v2201.1.0 ([#10176](https://github.com/truecharts/charts/issues/10176))
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/booksonic-air
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v2201.1.0@sha256:4ae30f816d015757858e66c72193f76ae21b4a8edbf7ef2cd38a0fa067281b6c
|
||||
tag: v2201.1.0@sha256:bfea3980ab767a16a5d0c653536d5a4cbd1f9a143621ec0f7881cf2109ff32e7
|
||||
|
||||
securityContext:
|
||||
container:
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [rsshub-7.0.78](https://github.com/truecharts/charts/compare/rsshub-7.0.77...rsshub-7.0.78) (2023-07-05)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/rsshub to latest ([#10169](https://github.com/truecharts/charts/issues/10169))
|
||||
|
||||
|
|
@ -4,6 +4,15 @@
|
|||
|
||||
|
||||
|
||||
## [rsshub-7.0.79](https://github.com/truecharts/charts/compare/rsshub-7.0.78...rsshub-7.0.79) (2023-07-05)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/rsshub to latest ([#10178](https://github.com/truecharts/charts/issues/10178))
|
||||
|
||||
|
||||
|
||||
|
||||
## [rsshub-7.0.78](https://github.com/truecharts/charts/compare/rsshub-7.0.77...rsshub-7.0.78) (2023-07-05)
|
||||
|
||||
### Chore
|
||||
|
@ -88,12 +97,3 @@
|
|||
## [rsshub-7.0.69](https://github.com/truecharts/charts/compare/rsshub-7.0.68...rsshub-7.0.69) (2023-06-30)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/rsshub to latest ([#10044](https://github.com/truecharts/charts/issues/10044))
|
||||
|
||||
|
||||
|
||||
|
||||
## [rsshub-7.0.68](https://github.com/truecharts/charts/compare/rsshub-7.0.67...rsshub-7.0.68) (2023-06-29)
|
||||
|
||||
### Chore
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: rsshub
|
||||
version: 7.0.78
|
||||
version: 7.0.79
|
||||
appVersion: "latest"
|
||||
description: RSSHub can generate RSS feeds from pretty much everything
|
||||
type: application
|
|
@ -0,0 +1,9 @@
|
|||
|
||||
|
||||
## [rsshub-7.0.79](https://github.com/truecharts/charts/compare/rsshub-7.0.78...rsshub-7.0.79) (2023-07-05)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/rsshub to latest ([#10178](https://github.com/truecharts/charts/issues/10178))
|
||||
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/rsshub
|
||||
pullPolicy: IfNotPresent
|
||||
tag: latest@sha256:29a88e058177ec0ffdc6fc8b679a9731e9a30e4e070ef8eef92d3c1c94301812
|
||||
tag: latest@sha256:11cbdd0455eadf6b7e17681318802760bf9730f09286f4ea94ad09c9725697bb
|
||||
browserlessImage:
|
||||
repository: tccr.io/truecharts/browserless-chrome
|
||||
tag: v1.59.0-chrome@sha256:99c16b500ad4e40914acd9a0993f74b61c13299f24295dc758959bf68c839e58
|
|
@ -1,9 +0,0 @@
|
|||
|
||||
|
||||
## [webtop-5.0.66](https://github.com/truecharts/charts/compare/webtop-5.0.65...webtop-5.0.66) (2023-07-05)
|
||||
|
||||
### Chore
|
||||
|
||||
- update webtop ([#10173](https://github.com/truecharts/charts/issues/10173))
|
||||
|
||||
|
|
@ -4,6 +4,19 @@
|
|||
|
||||
|
||||
|
||||
## [webtop-5.0.71](https://github.com/truecharts/charts/compare/webtop-5.0.66...webtop-5.0.71) (2023-07-05)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/webtop-fedora-xfce to latest ([#10181](https://github.com/truecharts/charts/issues/10181))
|
||||
- update container image tccr.io/truecharts/webtop-fedora-openbox to latest ([#10180](https://github.com/truecharts/charts/issues/10180))
|
||||
- update container image tccr.io/truecharts/webtop-fedora-mate to latest ([#10179](https://github.com/truecharts/charts/issues/10179))
|
||||
- update container image tccr.io/truecharts/webtop-fedora-kde to latest ([#10177](https://github.com/truecharts/charts/issues/10177))
|
||||
- update container image tccr.io/truecharts/webtop-fedora-icewm to latest ([#10175](https://github.com/truecharts/charts/issues/10175))
|
||||
|
||||
|
||||
|
||||
|
||||
## [webtop-5.0.66](https://github.com/truecharts/charts/compare/webtop-5.0.65...webtop-5.0.66) (2023-07-05)
|
||||
|
||||
### Chore
|
||||
|
@ -84,16 +97,3 @@
|
|||
|
||||
|
||||
|
||||
|
||||
## [webtop-5.0.57](https://github.com/truecharts/charts/compare/webtop-5.0.56...webtop-5.0.57) (2023-06-28)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/webtop-ubuntu-i3 to latest ([#10018](https://github.com/truecharts/charts/issues/10018))
|
||||
|
||||
|
||||
|
||||
|
||||
## [webtop-5.0.56](https://github.com/truecharts/charts/compare/webtop-5.0.55...webtop-5.0.56) (2023-06-28)
|
||||
|
||||
### Chore
|
|
@ -23,7 +23,7 @@ sources:
|
|||
- https://github.com/orgs/linuxserver/packages/container/package/webtop
|
||||
- https://github.com/linuxserver/docker-webtop#readme
|
||||
type: application
|
||||
version: 5.0.66
|
||||
version: 5.0.71
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- Tools-Utilities
|
|
@ -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/stable/)
|
||||
|
||||
**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*
|
|
@ -0,0 +1,13 @@
|
|||
|
||||
|
||||
## [webtop-5.0.71](https://github.com/truecharts/charts/compare/webtop-5.0.66...webtop-5.0.71) (2023-07-05)
|
||||
|
||||
### Chore
|
||||
|
||||
- update container image tccr.io/truecharts/webtop-fedora-xfce to latest ([#10181](https://github.com/truecharts/charts/issues/10181))
|
||||
- update container image tccr.io/truecharts/webtop-fedora-openbox to latest ([#10180](https://github.com/truecharts/charts/issues/10180))
|
||||
- update container image tccr.io/truecharts/webtop-fedora-mate to latest ([#10179](https://github.com/truecharts/charts/issues/10179))
|
||||
- update container image tccr.io/truecharts/webtop-fedora-kde to latest ([#10177](https://github.com/truecharts/charts/issues/10177))
|
||||
- update container image tccr.io/truecharts/webtop-fedora-icewm to latest ([#10175](https://github.com/truecharts/charts/issues/10175))
|
||||
|
||||
|
Binary file not shown.
|
@ -8,7 +8,7 @@ ubuntuXFCEImage:
|
|||
pullPolicy: Always
|
||||
fedoraXFCEImage:
|
||||
repository: tccr.io/truecharts/webtop-fedora-xfce
|
||||
tag: latest@sha256:5ee930dc961c41329fc39895f0c6f919d06d7caad423ba8f94305bd134d2f0e0
|
||||
tag: latest@sha256:5a9f866ec1cea951f0a8d0f2a6222a1e53fe34fd482c0c61d2fe5179f0b62591
|
||||
pullPolicy: Always
|
||||
archXFCEImage:
|
||||
repository: tccr.io/truecharts/webtop-arch-xfce
|
||||
|
@ -24,7 +24,7 @@ ubuntuKDEImage:
|
|||
pullPolicy: Always
|
||||
fedoraKDEImage:
|
||||
repository: tccr.io/truecharts/webtop-fedora-kde
|
||||
tag: latest@sha256:6335f3079b6c781841648d07e40e0141fc50bb5f96191d2fa9a02ef0f7fef9ff
|
||||
tag: latest@sha256:9329d63d8875ab160a36fe5a74d693e0fd57a6ea585a7b43b6881b43d5d6fdcb
|
||||
pullPolicy: Always
|
||||
archKDEImage:
|
||||
repository: tccr.io/truecharts/webtop-arch-kde
|
||||
|
@ -40,7 +40,7 @@ ubuntuMATEImage:
|
|||
pullPolicy: Always
|
||||
fedoraMATEImage:
|
||||
repository: tccr.io/truecharts/webtop-fedora-mate
|
||||
tag: latest@sha256:71b91293436f38e7692c9b85ff29953591bd9b8260b37e9603b3a72c8c13f9b7
|
||||
tag: latest@sha256:e285ecdcf5666d1f272e2425c61f7ae630d0f7d23737856de2d0f5be8f8cb98e
|
||||
pullPolicy: Always
|
||||
archMATEImage:
|
||||
repository: tccr.io/truecharts/webtop-arch-mate
|
||||
|
@ -72,7 +72,7 @@ ubuntuOpenBoxImage:
|
|||
pullPolicy: Always
|
||||
fedoraOpenBoxImage:
|
||||
repository: tccr.io/truecharts/webtop-fedora-openbox
|
||||
tag: latest@sha256:9ef13cf6a4ed20cc1ce8f14cc3b9d753e14e26e3c2bf566c3c6e5bc31ef6a531
|
||||
tag: latest@sha256:a27c50fad83b34d6ef5d0268b1b1415c8ed6f9b6526e994f5496482757572e8b
|
||||
pullPolicy: Always
|
||||
archOpenBoxImage:
|
||||
repository: tccr.io/truecharts/webtop-arch-openbox
|
||||
|
@ -88,7 +88,7 @@ ubuntuICEWMImage:
|
|||
pullPolicy: Always
|
||||
fedoraICEWMImage:
|
||||
repository: tccr.io/truecharts/webtop-fedora-icewm
|
||||
tag: latest@sha256:62ed289de5dbb97aaf506ed6ad4aa1c48231be43ef9406ebd3dc7d7d82ddd065
|
||||
tag: latest@sha256:458c672c7a7bb165b393f96412df17c1a8c0004cc32ff468fb67bffef49767e5
|
||||
pullPolicy: Always
|
||||
archICEWMImage:
|
||||
repository: tccr.io/truecharts/webtop-arch-icewm
|
|
@ -0,0 +1 @@
|
|||
{{- include "tc.v1.common.lib.chart.notes" $ -}}
|
Loading…
Reference in New Issue