Commit new App releases for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
parent
521d9007e0
commit
7dd43933b8
|
@ -0,0 +1,10 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="clickhouse-0.0.1"></a>
|
||||
### clickhouse-0.0.1 (2022-07-10)
|
||||
|
||||
#### Feat
|
||||
|
||||
* Add ClickHouse ([#3060](https://github.com/truecharts/apps/issues/3060))
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.3.0
|
||||
digest: sha256:6a7b40ef6f0dc6b1c057d3ed8c088b51fc51d642b7cfa5f47fe0e76166555313
|
||||
generated: "2022-07-10T09:38:04.298979295Z"
|
|
@ -0,0 +1,30 @@
|
|||
apiVersion: v2
|
||||
appVersion: "21.3.20.1"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.3.0
|
||||
deprecated: false
|
||||
description: ClickHouse® is a column-oriented database management system (DBMS) for online analytical processing of queries (OLAP).
|
||||
home: https://github.com/truecharts/apps/tree/master/charts/incubator/clickhouse
|
||||
icon: https://truecharts.org/_static/img/appicons/clickhouse.png
|
||||
keywords:
|
||||
- database
|
||||
- clickhouse
|
||||
- sql
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
maintainers:
|
||||
- email: info@truecharts.org
|
||||
name: TrueCharts
|
||||
url: https://truecharts.org
|
||||
name: clickhouse
|
||||
sources:
|
||||
- https://clickhouse.com/
|
||||
- https://hub.docker.com/r/yandex/clickhouse-server
|
||||
type: application
|
||||
version: 0.0.1
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- database
|
||||
truecharts.org/SCALE-support: "true"
|
||||
truecharts.org/grade: U
|
|
@ -0,0 +1,38 @@
|
|||
# Introduction
|
||||
|
||||
ClickHouse® is a column-oriented database management system (DBMS) for online analytical processing of queries (OLAP).
|
||||
|
||||
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
|
||||
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
|
||||
|
||||
## Source Code
|
||||
|
||||
* <https://clickhouse.com/>
|
||||
* <https://hub.docker.com/r/yandex/clickhouse-server>
|
||||
|
||||
## Requirements
|
||||
|
||||
Kubernetes: `>=1.16.0-0`
|
||||
|
||||
## Dependencies
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://library-charts.truecharts.org | common | 10.3.0 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/).
|
||||
|
||||
## Upgrading, Rolling Back and Uninstalling the Chart
|
||||
|
||||
To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/).
|
||||
|
||||
## Support
|
||||
|
||||
- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first.
|
||||
- See the [Wiki](https://truecharts.org)
|
||||
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
|
||||
- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
|
||||
---
|
||||
All Rights Reserved - The TrueCharts Project
|
|
@ -0,0 +1,3 @@
|
|||
ClickHouse® is a column-oriented database management system (DBMS) for online analytical processing of queries (OLAP).
|
||||
|
||||
This App is supplied by TrueCharts, for more information please visit https://truecharts.org
|
Binary file not shown.
|
@ -0,0 +1,67 @@
|
|||
image:
|
||||
repository: yandex/clickhouse-server
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 21.3.20.1@sha256:4eccfffb01d735ab7c1af9a97fbff0c532112a6871b2bb5fe5c478d86d247b7e
|
||||
|
||||
controller:
|
||||
type: statefulset
|
||||
strategy: RollingUpdate
|
||||
rollingUpdate:
|
||||
unavailable: 1
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
||||
# Optional capabilities advanced ClickHouse features. See also:
|
||||
# https://github.com/ClickHouse/ClickHouse/blob/master/docker/server/README.md#linux-capabilities
|
||||
# https://kb.altinity.com/altinity-kb-setup-and-maintenance/altinity-kb-clickhouse-in-docker/
|
||||
# https://github.com/ClickHouse/ClickHouse/blob/b844c36a9d5e76300a88b4f49e6debccf1ad22e4/programs/install/Install.cpp#L793-L804
|
||||
# capabilities:
|
||||
# add:
|
||||
# - IPC_LOCK
|
||||
# - NET_ADMIN
|
||||
# - SYS_NICE
|
||||
|
||||
service:
|
||||
main:
|
||||
ports:
|
||||
main:
|
||||
port: 8123
|
||||
protocol: HTTP
|
||||
targetPort: 8123
|
||||
|
||||
volumeClaimTemplates:
|
||||
data:
|
||||
enabled: true
|
||||
mountPath: /var/lib/clickhouse
|
||||
|
||||
probes:
|
||||
liveness:
|
||||
type: HTTP
|
||||
path: /ping
|
||||
readiness:
|
||||
type: HTTP
|
||||
path: /ping
|
||||
startup:
|
||||
type: HTTP
|
||||
path: /ping
|
||||
|
||||
clickhouseDatabase: "test"
|
||||
clickhouseUsername: "test"
|
||||
clickhousePassword: "testpass"
|
||||
clickhouseDefaultAccessManagement: 0
|
||||
existingSecret: ""
|
||||
|
||||
secret:
|
||||
credentials:
|
||||
enabled: true
|
||||
data:
|
||||
clickhouse-password: '{{ ( .Values.clickhousePassword | default "empty" ) }}'
|
||||
|
||||
env:
|
||||
CLICKHOUSE_DB: "{{ .Values.clickhouseDatabase }}"
|
||||
CLICKHOUSE_USER: "{{ .Values.clickhouseUsername }}"
|
||||
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: "{{ .Values.clickhouseDefaultAccessManagement }}"
|
||||
CLICKHOUSE_PASSWORD:
|
||||
secretKeyRef:
|
||||
name: '{{ .Values.existingSecret | default ( printf "%s-credentials" ( include "tc.common.names.fullname" . ) ) }}'
|
||||
key: "clickhouse-password"
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,4 @@
|
|||
icon_url: https://truecharts.org/_static/img/appicons/clickhouse.png
|
||||
categories:
|
||||
- database
|
||||
|
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="cloudflareddns-0.0.6"></a>
|
||||
### [cloudflareddns-0.0.6](https://github.com/truecharts/apps/compare/cloudflareddns-0.0.5...cloudflareddns-0.0.6) (2022-07-10)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update docker general non-major ([#3115](https://github.com/truecharts/apps/issues/3115))
|
||||
|
||||
|
||||
|
||||
<a name="cloudflareddns-0.0.5"></a>
|
||||
### [cloudflareddns-0.0.5](https://github.com/truecharts/apps/compare/cloudflareddns-0.0.4...cloudflareddns-0.0.5) (2022-07-09)
|
||||
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-09T19:59:13.186604483Z"
|
||||
generated: "2022-07-10T09:38:04.314349176Z"
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: cloudflareddns
|
||||
version: 0.0.5
|
||||
version: 0.0.6
|
||||
appVersion: "latest"
|
||||
description: Update your Cloudflare DNS records using dynamically
|
||||
type: application
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: ghcr.io/hotio/cloudflareddns
|
||||
pullPolicy: IfNotPresent
|
||||
tag: latest@sha256:5a5d15f77847de9b01c0c607a7c40353f44dae650e689cea00a4c0eea572778f
|
||||
tag: latest@sha256:0bc0538131575bb67c68e068a2a4194755cd1c4bfb3a749e64b1ef3d558513b1
|
||||
|
||||
securityContext:
|
||||
runAsNonRoot: false
|
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="cups-server-1.0.13"></a>
|
||||
### [cups-server-1.0.13](https://github.com/truecharts/apps/compare/cups-server-1.0.12...cups-server-1.0.13) (2022-07-10)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update docker general non-major ([#3115](https://github.com/truecharts/apps/issues/3115))
|
||||
|
||||
|
||||
|
||||
<a name="cups-server-1.0.12"></a>
|
||||
### [cups-server-1.0.12](https://github.com/truecharts/apps/compare/cups-server-1.0.11...cups-server-1.0.12) (2022-07-09)
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
|
||||
#### Chore
|
||||
|
||||
* update helm general non-major helm releases ([#2854](https://github.com/truecharts/apps/issues/2854))
|
||||
|
||||
|
||||
|
||||
<a name="cups-server-1.0.2"></a>
|
||||
### [cups-server-1.0.2](https://github.com/truecharts/apps/compare/cups-server-1.0.1...cups-server-1.0.2) (2022-06-07)
|
||||
|
||||
#### Fix
|
||||
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-09T19:59:01.015188578Z"
|
||||
generated: "2022-07-10T09:38:04.334008735Z"
|
|
@ -18,7 +18,7 @@ maintainers:
|
|||
name: cups-server
|
||||
sources:
|
||||
- https://hub.docker.com/r/ydkn/cups
|
||||
version: 1.0.12
|
||||
version: 1.0.13
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
|
@ -1,6 +1,6 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/cups-server
|
||||
tag: latest@sha256:6cc74f83b9f0f4de11621347dca43f3c9c469a3d5807fa1364070e2ddeaeca5a
|
||||
tag: latest@sha256:d63b415ecf2c170f43bd4cc2828f462db3bef612250cb6c67a04c55de343f409
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="theme-park-1.0.11"></a>
|
||||
### [theme-park-1.0.11](https://github.com/truecharts/apps/compare/theme-park-1.0.10...theme-park-1.0.11) (2022-07-10)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update docker general non-major ([#3115](https://github.com/truecharts/apps/issues/3115))
|
||||
|
||||
|
||||
|
||||
<a name="theme-park-1.0.10"></a>
|
||||
### [theme-park-1.0.10](https://github.com/truecharts/apps/compare/theme-park-1.0.9...theme-park-1.0.10) (2022-07-09)
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
|
||||
|
||||
<a name="theme-park-1.0.1"></a>
|
||||
### [theme-park-1.0.1](https://github.com/truecharts/apps/compare/theme-park-0.0.3...theme-park-1.0.1) (2022-06-07)
|
||||
|
||||
#### Chore
|
||||
|
||||
* Auto-update chart README [skip ci]
|
||||
* sync all apps persistence configuration and always default to PVC
|
||||
|
||||
#### Fix
|
||||
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-09T20:00:55.994011923Z"
|
||||
generated: "2022-07-10T09:38:04.379833374Z"
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: "1.9.6"
|
||||
appVersion: "1.9.7"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
|
@ -20,7 +20,7 @@ name: theme-park
|
|||
sources:
|
||||
- https://github.com/gilbn/theme.park
|
||||
type: application
|
||||
version: 1.0.10
|
||||
version: 1.0.11
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- customization
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/theme-park
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v1.9.6@sha256:c12fcc2ac6027dd40dfd067fbd93a7e47faf0f7e12722bfd0f288ca11ac3279e
|
||||
tag: v1.9.7@sha256:cc113f786066acbd23058d8a59a3217981d8a3e005c6daaed524e780274eb8ce
|
||||
|
||||
service:
|
||||
main:
|
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="boinc-2.0.16"></a>
|
||||
### [boinc-2.0.16](https://github.com/truecharts/apps/compare/boinc-2.0.15...boinc-2.0.16) (2022-07-10)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update docker general non-major ([#3115](https://github.com/truecharts/apps/issues/3115))
|
||||
|
||||
|
||||
|
||||
<a name="boinc-2.0.15"></a>
|
||||
### [boinc-2.0.15](https://github.com/truecharts/apps/compare/boinc-2.0.14...boinc-2.0.15) (2022-07-09)
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
|
||||
#### Chore
|
||||
|
||||
* update helm general non-major helm releases ([#2886](https://github.com/truecharts/apps/issues/2886))
|
||||
|
||||
|
||||
|
||||
<a name="boinc-2.0.5"></a>
|
||||
### [boinc-2.0.5](https://github.com/truecharts/apps/compare/boinc-2.0.4...boinc-2.0.5) (2022-06-13)
|
||||
|
||||
#### Chore
|
||||
|
|
@ -3,4 +3,4 @@ dependencies:
|
|||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-09T20:03:01.955086738Z"
|
||||
generated: "2022-07-10T09:38:20.168697204Z"
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: boinc
|
||||
version: 2.0.15
|
||||
version: 2.0.16
|
||||
appVersion: "latest"
|
||||
description: BOINC is a platform for high-throughput computing on a large scale (thousands or millions of computers).
|
||||
type: application
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/boinc
|
||||
pullPolicy: IfNotPresent
|
||||
tag: latest@sha256:a2a5e3829a6fb15486c9fc53d2cdab18c762d34b3348f5a353044fd2c61fc3e6
|
||||
tag: latest@sha256:a957590ecdd56093ce9f2e18788709df9099ca7db7668b1f39f5464e0a55a66d
|
||||
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: false
|
|
@ -1,6 +0,0 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-09T20:03:31.72768701Z"
|
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="calibre-7.0.14"></a>
|
||||
### [calibre-7.0.14](https://github.com/truecharts/apps/compare/calibre-7.0.13...calibre-7.0.14) (2022-07-10)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update docker general non-major ([#3115](https://github.com/truecharts/apps/issues/3115))
|
||||
|
||||
|
||||
|
||||
<a name="calibre-7.0.13"></a>
|
||||
### [calibre-7.0.13](https://github.com/truecharts/apps/compare/calibre-7.0.12...calibre-7.0.13) (2022-07-09)
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
#### Chore
|
||||
|
||||
* update docker general non-major ([#2860](https://github.com/truecharts/apps/issues/2860))
|
||||
|
||||
|
||||
|
||||
<a name="calibre-7.0.3"></a>
|
||||
### [calibre-7.0.3](https://github.com/truecharts/apps/compare/calibre-web-11.0.3...calibre-7.0.3) (2022-06-11)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm general non-major helm releases ([#2854](https://github.com/truecharts/apps/issues/2854))
|
|
@ -0,0 +1,6 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-10T09:38:20.446382112Z"
|
|
@ -18,7 +18,7 @@ name: calibre
|
|||
sources:
|
||||
- https://hub.docker.com/r/linuxserver/calibre/
|
||||
- https://github.com/kovidgoyal/calibre/
|
||||
version: 7.0.13
|
||||
version: 7.0.14
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
|
@ -1,6 +1,6 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/calibre
|
||||
tag: v5.44.0@sha256:34d4d90dd3f00b91294b784f38dd7d5ed94267f0a34fd36d390377352a02246b
|
||||
tag: v5.44.0@sha256:ea4230851d5492b4f6348b66de0be0955170fe7bb73c6c78de226984262abd92
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
|
@ -1,6 +0,0 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-09T20:04:26.889360023Z"
|
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="cyberchef-2.0.27"></a>
|
||||
### [cyberchef-2.0.27](https://github.com/truecharts/apps/compare/cyberchef-2.0.26...cyberchef-2.0.27) (2022-07-10)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update docker general non-major ([#3115](https://github.com/truecharts/apps/issues/3115))
|
||||
|
||||
|
||||
|
||||
<a name="cyberchef-2.0.26"></a>
|
||||
### [cyberchef-2.0.26](https://github.com/truecharts/apps/compare/cyberchef-2.0.25...cyberchef-2.0.26) (2022-07-09)
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
#### Chore
|
||||
|
||||
* update docker general non-major ([#3002](https://github.com/truecharts/apps/issues/3002))
|
||||
|
||||
|
||||
|
||||
<a name="cyberchef-2.0.16"></a>
|
||||
### [cyberchef-2.0.16](https://github.com/truecharts/apps/compare/cyberchef-2.0.15...cyberchef-2.0.16) (2022-06-27)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update docker general non-major ([#2999](https://github.com/truecharts/apps/issues/2999))
|
|
@ -0,0 +1,6 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-10T09:38:20.833146289Z"
|
|
@ -17,7 +17,7 @@ maintainers:
|
|||
name: cyberchef
|
||||
sources:
|
||||
- https://hub.docker.com/r/mpepping/cyberchef
|
||||
version: 2.0.26
|
||||
version: 2.0.27
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- utilities
|
|
@ -1,6 +1,6 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/cyberchef
|
||||
tag: v9.46.0@sha256:71695f15ef303e306420fe20b047f20adee51b6368f73c985b67d550085daa02
|
||||
tag: v9.46.0@sha256:c93a15bcb8ea62e957c0ae1e157422bd9b98a33d5089f83da5763b0748282bf1
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
|
@ -1,6 +0,0 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-09T20:04:31.068826627Z"
|
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="dashdot-1.0.19"></a>
|
||||
### [dashdot-1.0.19](https://github.com/truecharts/apps/compare/dashdot-1.0.18...dashdot-1.0.19) (2022-07-10)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update docker general non-major ([#3115](https://github.com/truecharts/apps/issues/3115))
|
||||
|
||||
|
||||
|
||||
<a name="darktable-3.0.9"></a>
|
||||
### [darktable-3.0.9](https://github.com/truecharts/apps/compare/darktable-3.0.8...darktable-3.0.9) (2022-07-09)
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
#### Refactor
|
||||
|
||||
* BREAKING CHANGE ([#2836](https://github.com/truecharts/apps/issues/2836))
|
||||
|
||||
|
||||
|
||||
<a name="darktable-3.0.0"></a>
|
||||
### [darktable-3.0.0](https://github.com/truecharts/apps/compare/darktable-2.0.19...darktable-3.0.0) (2022-06-07)
|
||||
|
||||
#### Chore
|
||||
|
||||
* sync all apps persistence configuration and always default to PVC
|
|
@ -0,0 +1,6 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-10T09:38:20.726165159Z"
|
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: "4.3.0"
|
||||
appVersion: "4.3.1"
|
||||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
|
@ -19,7 +19,7 @@ name: dashdot
|
|||
sources:
|
||||
- https://github.com/MauriceNino/dashdot
|
||||
- https://hub.docker.com/r/mauricenino/dashdot
|
||||
version: 1.0.18
|
||||
version: 1.0.19
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- media
|
|
@ -1,6 +1,6 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/dashdot
|
||||
tag: v4.3.0@sha256:101d0b5ec51a1b1a09c70c5444ec9b42729e7d5e2557194dd4eaae4e2d0b7827
|
||||
tag: v4.3.1@sha256:2c65de1c3db6066c94176474d4a85006d72a6be9488246c0f58d23347e02d91a
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
securityContext:
|
|
@ -1,6 +0,0 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-09T20:05:17.672407972Z"
|
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="dokuwiki-3.0.20"></a>
|
||||
### [dokuwiki-3.0.20](https://github.com/truecharts/apps/compare/dokuwiki-3.0.19...dokuwiki-3.0.20) (2022-07-10)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update docker general non-major ([#3115](https://github.com/truecharts/apps/issues/3115))
|
||||
|
||||
|
||||
|
||||
<a name="dokuwiki-3.0.19"></a>
|
||||
### [dokuwiki-3.0.19](https://github.com/truecharts/apps/compare/dokuwiki-3.0.18...dokuwiki-3.0.19) (2022-07-09)
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
#### Chore
|
||||
|
||||
* update helm general non-major helm releases ([#2948](https://github.com/truecharts/apps/issues/2948))
|
||||
|
||||
|
||||
|
||||
<a name="dokuwiki-3.0.9"></a>
|
||||
### [dokuwiki-3.0.9](https://github.com/truecharts/apps/compare/dokuwiki-3.0.8...dokuwiki-3.0.9) (2022-06-21)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm general non-major helm releases ([#2943](https://github.com/truecharts/apps/issues/2943))
|
|
@ -0,0 +1,6 @@
|
|||
dependencies:
|
||||
- name: common
|
||||
repository: https://library-charts.truecharts.org
|
||||
version: 10.2.1
|
||||
digest: sha256:ef841d6391d4d193203a60f6688ea2ee2a0b76c58dc55c84595db473bdcce690
|
||||
generated: "2022-07-10T09:38:36.389943399Z"
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: dokuwiki
|
||||
version: 3.0.19
|
||||
version: 3.0.20
|
||||
appVersion: "20200729.0"
|
||||
description: Dokuwiki is a simple to use and highly versatile Open Source wiki software that doesn't require a database.
|
||||
type: application
|
|
@ -1,7 +1,7 @@
|
|||
image:
|
||||
repository: tccr.io/truecharts/dokuwiki
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v20200729.0.0@sha256:0f61e9e6666a5322f0850262aedb3c39d3c8838786b68ee6245d1d354eaa0713
|
||||
tag: v20200729.0.0@sha256:83252be45cc97d7e5e6287dad3b2f4324e4787c83668f824cbcec7cd6b26834b
|
||||
|
||||
securityContext:
|
||||
runAsNonRoot: false
|
|
@ -1,6 +1,15 @@
|
|||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="hedgedoc-4.0.7"></a>
|
||||
### [hedgedoc-4.0.7](https://github.com/truecharts/apps/compare/hedgedoc-4.0.6...hedgedoc-4.0.7) (2022-07-10)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update docker general non-major ([#3115](https://github.com/truecharts/apps/issues/3115))
|
||||
|
||||
|
||||
|
||||
<a name="hedgedoc-4.0.6"></a>
|
||||
### [hedgedoc-4.0.6](https://github.com/truecharts/apps/compare/hedgedoc-4.0.5...hedgedoc-4.0.6) (2022-07-09)
|
||||
|
||||
|
@ -88,12 +97,3 @@
|
|||
#### Chore
|
||||
|
||||
* update helm general non-major helm releases ([#2887](https://github.com/truecharts/apps/issues/2887))
|
||||
|
||||
|
||||
|
||||
<a name="hedgedoc-3.0.2"></a>
|
||||
### [hedgedoc-3.0.2](https://github.com/truecharts/apps/compare/hedgedoc-3.0.1...hedgedoc-3.0.2) (2022-06-14)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update helm general non-major helm releases ([#2886](https://github.com/truecharts/apps/issues/2886))
|
|
@ -6,4 +6,4 @@ dependencies:
|
|||
repository: https://charts.truecharts.org/
|
||||
version: 8.0.24
|
||||
digest: sha256:58c0bbe9c0bbd2369ba94267f79442b39aea6362601eeeffd9a49973d77e6b49
|
||||
generated: "2022-07-09T20:09:29.670818913Z"
|
||||
generated: "2022-07-10T09:38:41.784315392Z"
|
|
@ -1,7 +1,7 @@
|
|||
apiVersion: v2
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
name: hedgedoc
|
||||
version: 4.0.6
|
||||
version: 4.0.7
|
||||
appVersion: "1.9.3"
|
||||
description: HedgeDoc lets you create real-time collaborative markdown notes.
|
||||
type: application
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue