Compare commits

...

3 Commits

Author SHA1 Message Date
Stavros Kois
791b781c33 chore(apps): bump common (#16751) 2024-01-02 12:59:39 +01:00
Stavros Kois
b118ccf6d9 chore(images): fix some refs (#16749)
**Description**
<!--
Please include a summary of the change and which issue is fixed. Please
also include relevant motivation and context. List any dependencies that
are required for this change.
-->
⚒️ Fixes  # <!--(issue)-->

**⚙️ Type of change**

- [ ] ⚙️ Feature/App addition
- [ ] 🪛 Bugfix
- [ ] ⚠️ Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [ ] 🔃 Refactor of current code

**🧪 How Has This Been Tested?**
<!--
Please describe the tests that you ran to verify your changes. Provide
instructions so we can reproduce. Please also list any relevant details
for your test configuration
-->

**📃 Notes:**
<!-- Please enter any other relevant information here -->

**✔️ Checklist:**

- [ ] ⚖️ My code follows the style guidelines of this project
- [ ] 👀 I have performed a self-review of my own code
- [ ] #️⃣ I have commented my code, particularly in hard-to-understand
areas
- [ ] 📄 I have made corresponding changes to the documentation
- [ ] ⚠️ My changes generate no new warnings
- [ ] 🧪 I have added tests to this description that prove my fix is
effective or that my feature works
- [ ] ⬆️ I increased versions for any altered app according to semantic
versioning

** App addition**

If this PR is an app addition please make sure you have done the
following.

- [ ] 🪞 I have opened a PR on
[truecharts/containers](https://github.com/truecharts/containers) adding
the container to TrueCharts mirror repo.
- [ ] 🖼️ I have added an icon in the Chart's root directory called
`icon.png`

---

_Please don't blindly check all the boxes. Read them and only check
those that apply.
Those checkboxes are there for the reviewer to see what is this all
about and
the status of this PR with a quick glance._
2024-01-02 13:15:02 +02:00
TrueCharts-Bot
1482d8090e Commit daily changes
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
2024-01-02 00:09:13 +00:00
919 changed files with 13546 additions and 13606 deletions

62
.github/scripts/install_dependencies.sh vendored Executable file
View File

@@ -0,0 +1,62 @@
#!/bin/bash
curr_chart=$1
if [ -z "$curr_chart" ]
then
echo "No chart name provided"
exit 1
fi
echo "Chart name: $curr_chart"
if [[ "$curr_chart" == "charts/operators/metallb-config" ]]; then
echo "Installing metallb chart"
helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install metallb chart"
exit 1
fi
echo "Done installing metallb chart"
fi
if [[ "$curr_chart" == "charts/enterprise/clusterissuer" ]]; then
echo "Installing cert-manager chart"
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install cert-manager chart"
exit 1
fi
echo "Done installing cert-manager chart"
fi
if [[ "$curr_chart" != "charts/operators/cloudnative-pg" ]]; then
echo "Installing cloudnative-pg chart"
helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install cloudnative-pg chart"
exit 1
fi
echo "Done installing cloudnative-pg chart"
fi
if [[ "$curr_chart" != "charts/operators/prometheus-operator" ]]; then
echo "Installing prometheus-operator chart"
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install prometheus-operator chart"
exit 1
fi
echo "Done installing prometheus-operator chart"
fi
if [[ "$curr_chart" != "charts/enterprise/traefik" ]]; then
echo "Installing traefik chart"
helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait
if [[ "$?" != "0" ]]; then
echo "Failed to install traefik chart"
exit 1
fi
echo "Done installing traefik chart"
fi

12
.github/scripts/prep_helm.sh vendored Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
helm repo add truecharts-deps https://deps.truecharts.org
helm repo add jetstack https://charts.jetstack.io
helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts
helm repo add cnpg https://cloudnative-pg.github.io/charts
helm repo add metallb https://metallb.github.io/metallb
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo add openebs https://openebs.github.io/charts
helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
helm repo update

View File

@@ -145,36 +145,14 @@ jobs:
kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm
shell: bash
run: |
helm repo add truecharts-deps https://deps.truecharts.org
helm repo add jetstack https://charts.jetstack.io
helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts
helm repo add cnpg https://cloudnative-pg.github.io/charts
helm repo add metallb https://metallb.github.io/metallb
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo add openebs https://openebs.github.io/charts
helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
helm repo update
./.github/scripts/prep_helm.sh
- name: Add Dependencies
shell: bash
run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then
helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait
fi
## TODO: Only add when required
if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then
helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait
fi
./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
- name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade
@@ -221,36 +199,15 @@ jobs:
kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm
shell: bash
run: |
helm repo add truecharts-deps https://deps.truecharts.org
helm repo add jetstack https://charts.jetstack.io
helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts
helm repo add cnpg https://cloudnative-pg.github.io/charts
helm repo add metallb https://metallb.github.io/metallb
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo add openebs https://openebs.github.io/charts
helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
helm repo update
./.github/scripts/prep_helm.sh
- name: Add Dependencies
shell: bash
run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then
helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait
fi
## TODO: Only add when required
if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then
helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait
fi
./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
- name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade
@@ -297,36 +254,14 @@ jobs:
kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm
shell: bash
run: |
helm repo add truecharts-deps https://deps.truecharts.org
helm repo add jetstack https://charts.jetstack.io
helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts
helm repo add cnpg https://cloudnative-pg.github.io/charts
helm repo add metallb https://metallb.github.io/metallb
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo add openebs https://openebs.github.io/charts
helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
helm repo update
./.github/scripts/prep_helm.sh
- name: Add Dependencies
shell: bash
run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then
helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait
fi
## TODO: Only add when required
if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then
helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait
fi
./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
- name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade
@@ -373,36 +308,14 @@ jobs:
kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm
shell: bash
run: |
helm repo add truecharts-deps https://deps.truecharts.org
helm repo add jetstack https://charts.jetstack.io
helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts
helm repo add cnpg https://cloudnative-pg.github.io/charts
helm repo add metallb https://metallb.github.io/metallb
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo add openebs https://openebs.github.io/charts
helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
helm repo update
./.github/scripts/prep_helm.sh
- name: Add Dependencies
shell: bash
run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then
helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait
fi
## TODO: Only add when required
if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then
helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait
fi
./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
- name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade
@@ -449,36 +362,14 @@ jobs:
kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm
shell: bash
run: |
helm repo add truecharts-deps https://deps.truecharts.org
helm repo add jetstack https://charts.jetstack.io
helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts
helm repo add cnpg https://cloudnative-pg.github.io/charts
helm repo add metallb https://metallb.github.io/metallb
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo add openebs https://openebs.github.io/charts
helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
helm repo update
./.github/scripts/prep_helm.sh
- name: Add Dependencies
shell: bash
run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then
helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait
fi
## TODO: Only add when required
if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then
helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait
fi
./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
- name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade
@@ -525,36 +416,15 @@ jobs:
kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm
shell: bash
run: |
helm repo add truecharts-deps https://deps.truecharts.org
helm repo add jetstack https://charts.jetstack.io
helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts
helm repo add cnpg https://cloudnative-pg.github.io/charts
helm repo add metallb https://metallb.github.io/metallb
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm repo add openebs https://openebs.github.io/charts
helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
helm repo update
./.github/scripts/prep_helm.sh
- name: Add Dependencies
shell: bash
run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then
helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait
fi
## TODO: Only add when required
if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then
helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then
helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then
helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait
fi
if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then
helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait
fi
./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
- name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: clickhouse
version: 10.2.4
version: 10.2.5
appVersion: 23.12.1.1368
description: ClickHouse is a column-oriented database management system (DBMS) for online analytical processing of queries (OLAP).
home: https://truecharts.org/charts/dependency/clickhouse
icon: https://truecharts.org/img/hotlink-ok/chart-icons/clickhouse.png
deprecated: false
sources:
- https://clickhouse.com/
- https://github.com/truecharts/charts/tree/master/charts/dependency/clickhouse
- https://hub.docker.com/r/clickhouse/clickhouse-server
- https://clickhouse.com/
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- sql
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: kube-state-metrics
version: 6.1.4
version: 6.1.5
appVersion: 2.10.1
description: kube-state-metrics is a simple service that listens to the Kubernetes API server and generates metrics about the state of the objects.
home: https://truecharts.org/charts/dependency/kube-state-metrics
@@ -20,7 +20,7 @@ keywords:
- monitoring
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,18 +1,18 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: mariadb
version: 12.1.4
version: 12.1.5
appVersion: 11.2.2
description: Fast, reliable, scalable, and easy to use open-source relational database system.
home: https://truecharts.org/charts/dependency/mariadb
icon: https://truecharts.org/img/hotlink-ok/chart-icons/mariadb.png
deprecated: false
sources:
- https://github.com/bitnami/bitnami-docker-mariadb
- https://github.com/prometheus/mysqld_exporter
- https://mariadb.org
- https://github.com/truecharts/charts/tree/master/charts/dependency/mariadb
- https://hub.docker.com/r/bitnami/mariadb
- https://github.com/bitnami/bitnami-docker-mariadb
- https://github.com/prometheus/mysqld_exporter
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -24,7 +24,7 @@ keywords:
- sql
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: memcached
version: 11.1.4
version: 11.1.5
appVersion: 1.6.22
description: Memcached is a memory-backed database caching solution
home: https://truecharts.org/charts/dependency/memcached
icon: https://truecharts.org/img/hotlink-ok/chart-icons/memcached.png
deprecated: false
sources:
- https://hub.docker.com/r/bitnami/memcached
- https://github.com/bitnami/bitnami-docker-memcached
- https://github.com/truecharts/charts/tree/master/charts/dependency/memcached
- https://hub.docker.com/r/bitnami/memcached
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- cache
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,17 +1,17 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: mongodb
version: 11.1.5
version: 11.1.6
appVersion: 7.0.4
description: Fast, reliable, scalable, and easy to use open-source no-sql database system.
home: https://truecharts.org/charts/dependency/mongodb
icon: https://truecharts.org/img/hotlink-ok/chart-icons/mongodb.png
deprecated: false
sources:
- https://hub.docker.com/r/bitnami/mongodb
- https://www.mongodb.com
- https://github.com/bitnami/bitnami-docker-mongodb
- https://github.com/truecharts/charts/tree/master/charts/dependency/mongodb
- https://hub.docker.com/r/bitnami/mongodb
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -22,7 +22,7 @@ keywords:
- nosql
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: node-exporter
version: 6.1.4
version: 6.1.5
appVersion: 1.7.0
description: Prometheus exporter for hardware and OS metrics exposed by UNIX kernels, with pluggable metric collectors.
home: https://truecharts.org/charts/dependency/node-exporter
@@ -20,7 +20,7 @@ keywords:
- monitoring
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: redis
version: 11.1.4
version: 11.1.5
appVersion: 7.2.3
description: Open source, advanced key-value store.
home: https://truecharts.org/charts/dependency/redis
@@ -21,7 +21,7 @@ keywords:
- database
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: solr
version: 9.1.4
version: 9.1.5
appVersion: 9.4.0
description: Apache Solr
home: https://truecharts.org/charts/dependency/solr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/solr.png
deprecated: false
sources:
- https://github.com/apache/solr
- https://github.com/truecharts/charts/tree/master/charts/dependency/solr
- https://hub.docker.com/r/bitnami/solr
- https://github.com/apache/solr
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- search
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: checkmk
version: 1.0.11
version: 1.0.12
appVersion: 2.2.0
description: Checkmk is a leading tool for Infrastructure and Application Monitoring. Simple configuration, scalable, flexible. It provides powerful monitoring of networks, servers, clouds, containers and applications.
home: https://truecharts.org/charts/incubator/checkmk
@@ -20,7 +20,7 @@ keywords:
- monitoring
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,17 +1,17 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: cherry
version: 3.0.11
version: 3.0.12
appVersion: 0.0.7
description: An open source self-hosted bookmark service
home: https://truecharts.org/charts/incubator/cherry
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cherry.png
deprecated: false
sources:
- https://github.com/haishanh/cherry
- https://cherry.haishan.me/
- https://github.com/truecharts/charts/tree/master/charts/incubator/cherry
- https://hub.docker.com/r/haishanh/cherry
- https://github.com/haishanh/cherry
- https://cherry.haishan.me/
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -20,7 +20,7 @@ keywords:
- bookmark
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: cleanarr
version: 3.0.11
version: 3.0.12
appVersion: 2.5.0
description: A simple UI to help find and delete duplicate and sample files from your Plex server.
home: https://truecharts.org/charts/incubator/cleanarr
@@ -19,7 +19,7 @@ keywords:
- cleanarr
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: coupon-store
version: 4.0.11
version: 4.0.12
appVersion: 1.3.0
description: A home for all your coupons and loyalty cards.
home: https://truecharts.org/charts/incubator/coupon-store
icon: https://truecharts.org/img/hotlink-ok/chart-icons/coupon-store.png
deprecated: false
sources:
- https://hub.docker.com/r/metikular/coupon-store
- https://github.com/linuxserver/docker-airsonic
- https://github.com/truecharts/charts/tree/master/charts/incubator/coupon-store
- https://hub.docker.com/r/metikular/coupon-store
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -19,7 +19,7 @@ keywords:
- coupons
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,17 +1,17 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: dsmr-reader
version: 13.0.11
version: 13.0.12
appVersion: 2021.09.02
description: DSMR-protocol reader, telegram data storage and energy consumption visualizer.
home: https://truecharts.org/charts/incubator/dsmr-reader
icon: https://truecharts.org/img/hotlink-ok/chart-icons/dsmr-reader.png
deprecated: false
sources:
- https://github.com/dsmrreader/dsmr-reader
- https://github.com/xirixiz/dsmr-reader-docker
- https://github.com/truecharts/charts/tree/master/charts/incubator/dsmr-reader
- https://hub.docker.com/r/xirixiz/dsmr-reader-docker
- https://github.com/dsmrreader/dsmr-reader
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- energy
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: euterpe
version: 4.0.11
version: 4.0.12
appVersion: 1.5.4
description: Self-hosted streaming service for music, formerly known as HTTP Media Server.
home: https://truecharts.org/charts/incubator/euterpe
icon: https://truecharts.org/img/hotlink-ok/chart-icons/euterpe.png
deprecated: false
sources:
- https://hub.docker.com/r/ironsmile/euterpe
- https://github.com/ironsmile/euterpe
- https://github.com/truecharts/charts/tree/master/charts/incubator/euterpe
- https://hub.docker.com/r/ironsmile/euterpe
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -23,7 +23,7 @@ keywords:
- MediaServer-Music
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: flemarr
version: 3.0.11
version: 3.0.12
appVersion: latest
description: Flemmarr is a simple Python script that parses a configuration written in YAML and can apply it to any of the -arr apps using their API.
home: https://truecharts.org/charts/incubator/flemarr
@@ -19,7 +19,7 @@ keywords:
- flemarr
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,18 +1,18 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: focalboard
version: 14.0.11
version: 14.0.12
appVersion: 7.11.4
description: Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
home: https://truecharts.org/charts/incubator/focalboard
icon: https://truecharts.org/img/hotlink-ok/chart-icons/focalboard.png
deprecated: false
sources:
- https://github.com/mattermost/focalboard
- https://github.com/FlipEnergy/container-images/blob/main/focalboard
- https://www.focalboard.com/
- https://github.com/truecharts/charts/tree/master/charts/incubator/focalboard
- https://hub.docker.com/r/mattermost/focalboard
- https://github.com/mattermost/focalboard
- https://github.com/FlipEnergy/container-images/blob/main/focalboard
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -23,7 +23,7 @@ keywords:
- project management
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: gotify
version: 14.0.11
version: 14.0.12
appVersion: 2.4.0
description: A simple server for sending and receiving messages.
home: https://truecharts.org/charts/incubator/gotify
@@ -21,7 +21,7 @@ keywords:
- notifications
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,17 +1,17 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: icinga2
version: 8.0.11
version: 8.0.12
appVersion: 2.14.0
description: A monitoring system which checks the availability of your network resources, notifies users of outages, and generates performance data for reporting.
home: https://truecharts.org/charts/incubator/icinga2
icon: https://truecharts.org/img/hotlink-ok/chart-icons/icinga2.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/icinga2
- https://hub.docker.com/r/jordan/icinga2
- https://icinga.com/
- https://github.com/jjethwa/icinga2
- https://github.com/truecharts/charts/tree/master/charts/incubator/icinga2
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- monitoring
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,17 +1,17 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: koel
version: 8.0.11
version: 8.0.12
appVersion: latest
description: Koel is a simple web-based personal audio streaming service written in Vue on the client side and Laravel on the server side.
home: https://truecharts.org/charts/incubator/koel
icon: https://truecharts.org/img/hotlink-ok/chart-icons/koel.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/koel
- https://hub.docker.com/r/phanan/koel
- https://github.com/koel/docker
- https://github.com/koel/koel
- https://github.com/truecharts/charts/tree/master/charts/incubator/koel
- https://hub.docker.com/r/phanan/koel
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -22,7 +22,7 @@ keywords:
- stream
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: kutt
version: 8.0.11
version: 8.0.12
appVersion: 2.7.4
description: Kutt is a modern URL shortener with support for custom domains. Shorten URLs, manage your links and view the click rate statistics.
home: https://truecharts.org/charts/incubator/kutt
@@ -21,7 +21,7 @@ keywords:
- short
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: leantime
version: 9.0.11
version: 9.0.12
appVersion: 2.4.7
description: Straightforward open source project management system to make your ideas reality.
home: https://truecharts.org/charts/incubator/leantime
@@ -21,7 +21,7 @@ keywords:
- management
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: lenpaste
version: 4.0.11
version: 4.0.12
appVersion: 1.1.1
description: Lenpaste is a web service that allows you to share notes anonymously
home: https://truecharts.org/charts/incubator/lenpaste
@@ -18,7 +18,7 @@ keywords:
- lenpaste
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,17 +1,17 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: linkace
version: 9.0.11
version: 9.0.12
appVersion: 1.13.0-simple
description: Your self-hosted bookmark archive. Free and open source.
home: https://truecharts.org/charts/incubator/linkace
icon: https://truecharts.org/img/hotlink-ok/chart-icons/linkace.png
deprecated: false
sources:
- https://hub.docker.com/r/linkace/linkace
- https://github.com/linkace/linkace
- https://www.linkace.org/docs/
- https://github.com/truecharts/charts/tree/master/charts/incubator/linkace
- https://hub.docker.com/r/linkace/linkace
- https://github.com/linkace/linkace
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -20,7 +20,7 @@ keywords:
- linkace
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: lychee
version: 18.0.11
version: 18.0.12
appVersion: 4.13.0
description: Lychee is a free photo-management tool, which runs on your server or web-space
home: https://truecharts.org/charts/incubator/lychee
@@ -21,7 +21,7 @@ keywords:
- pictures
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,15 +1,15 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: magicmirror2
version: 3.0.11
version: 3.0.12
appVersion: latest
description: Open source modular smart mirror platform.
home: https://truecharts.org/charts/incubator/magicmirror2
icon: https://truecharts.org/img/hotlink-ok/chart-icons/magicmirror2.png
deprecated: false
sources:
- https://hub.docker.com/r/ich777/magic-mirror2
- https://github.com/truecharts/charts/tree/master/charts/incubator/magicmirror2
- https://hub.docker.com/r/ich777/magic-mirror2
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -20,7 +20,7 @@ keywords:
- smart
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: microbin
version: 3.0.11
version: 3.0.12
appVersion: 2.0.4
description: MicroBin is a super tiny, feature rich, configurable, self-contained and self-hosted paste bin web application.
home: https://truecharts.org/charts/incubator/microbin
icon: https://truecharts.org/img/hotlink-ok/chart-icons/microbin.png
deprecated: false
sources:
- https://hub.docker.com/r/danielszabo99/microbin
- https://github.com/szabodanika/microbin
- https://github.com/truecharts/charts/tree/master/charts/incubator/microbin
- https://hub.docker.com/r/danielszabo99/microbin
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -19,7 +19,7 @@ keywords:
- microbin
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: money-balancer
version: 3.0.11
version: 3.0.12
appVersion: 1.3.0
description: Money Balancer helps you to keep track of who paid for what and calculates your balance with all of your friends.
home: https://truecharts.org/charts/incubator/money-balancer
@@ -20,7 +20,7 @@ keywords:
- balance
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: noisedash
version: 3.0.11
version: 3.0.12
appVersion: 0.6.12
description: Self-hosted web tool for generating ambient noises
home: https://truecharts.org/charts/incubator/noisedash
icon: https://truecharts.org/img/hotlink-ok/chart-icons/noisedash.png
deprecated: false
sources:
- https://github.com/kaythomas0/noisedash
- https://github.com/truecharts/charts/tree/master/charts/incubator/noisedash
- https://hub.docker.com/r/noisedash/noisedash
- https://github.com/kaythomas0/noisedash
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -19,7 +19,7 @@ keywords:
- noise
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,17 +1,17 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: openkm
version: 12.0.11
version: 12.0.12
appVersion: 6.3.12
description: OpenKM integrates all essential documents management, collaboration and an advanced search functionality into one easy to use solution.
home: https://truecharts.org/charts/incubator/openkm
icon: https://truecharts.org/img/hotlink-ok/chart-icons/openkm.png
deprecated: false
sources:
- https://hub.docker.com/r/openkm/openkm-ce
- https://www.openkm.com/
- https://github.com/openkm/document-management-system
- https://github.com/truecharts/charts/tree/master/charts/incubator/openkm
- https://hub.docker.com/r/openkm/openkm-ce
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -22,7 +22,7 @@ keywords:
- docs
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: openldap
version: 11.0.11
version: 11.0.12
appVersion: 1.5.0
description: Community developed LDAP software
home: https://truecharts.org/charts/incubator/openldap
@@ -23,7 +23,7 @@ keywords:
- high availability
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: openproject
version: 4.0.11
version: 4.0.12
appVersion: 13.0.7
description: OpenProject is a web-based project management system for location-independent team collaboration.
home: https://truecharts.org/charts/incubator/openproject
@@ -19,7 +19,7 @@ keywords:
- Productivity
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: penpot
version: 4.0.10
version: 4.0.11
appVersion: 1.19.3
description: Open Source design and prototyping platform.
home: https://truecharts.org/charts/incubator/penpot
@@ -10,7 +10,7 @@ deprecated: false
sources:
- https://github.com/penpot/penpot
- https://github.com/truecharts/charts/tree/master/charts/incubator/penpot
- https://hub.docker.com/r/penpotapp/frontend
- https://hub.docker.com/r/penpotapp/backend
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- design
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: plik
version: 1.0.11
version: 1.0.12
appVersion: 1.3.8
description: A scalable file uploading system with multiple backends.
home: https://truecharts.org/charts/incubator/plik
@@ -20,7 +20,7 @@ keywords:
- files
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: postgresql
version: 15.0.12
version: 15.0.13
appVersion: 14.10.0
description: PostgresSQL
home: https://truecharts.org/charts/incubator/postgresql
@@ -22,7 +22,7 @@ keywords:
- sql
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,17 +1,17 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: privatebin
version: 4.0.11
version: 4.0.12
appVersion: 1.6.0
description: PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted data.
home: https://truecharts.org/charts/incubator/privatebin
icon: https://truecharts.org/img/hotlink-ok/chart-icons/privatebin.png
deprecated: false
sources:
- https://privatebin.info/
- https://github.com/PrivateBin/PrivateBin
- https://github.com/truecharts/charts/tree/master/charts/incubator/privatebin
- https://hub.docker.com/r/privatebin/pdo
- https://github.com/PrivateBin/PrivateBin
- https://privatebin.info/
- https://github.com/truecharts/charts/tree/master/charts/incubator/privatebin
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- pastebin
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: youtrack
version: 3.0.11
version: 3.0.12
appVersion: 2023.2.20316
description: YouTrack is a project management tool that can be adapted to your processes to help you deliver great products.
home: https://truecharts.org/charts/incubator/youtrack
@@ -20,7 +20,7 @@ keywords:
- ProjectManagement
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,4 +1,4 @@
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
apiVersion: v2
name: authelia
version: 22.1.5
@@ -8,47 +8,47 @@ home: https://truecharts.org/charts/enterprise/authelia
icon: https://truecharts.org/img/hotlink-ok/chart-icons/authelia.png
deprecated: false
sources:
- https://github.com/authelia/authelia
- https://github.com/authelia/chartrepo
- https://github.com/truecharts/charts/tree/master/charts/enterprise/authelia
- https://ghcr.io/authelia/authelia
- https://github.com/truecharts/charts/tree/master/charts/enterprise/authelia
- https://ghcr.io/authelia/authelia
- https://github.com/authelia/authelia
- https://github.com/authelia/chartrepo
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- authelia
- authentication
- login
- SSO
- Authentication
- Security
- Two-Factor
- U2F
- YubiKey
- Push Notifications
- LDAP
- authelia
- authentication
- login
- SSO
- Authentication
- Security
- Two-Factor
- U2F
- YubiKey
- Push Notifications
- LDAP
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: redis
version: 11.1.3
repository: https://deps.truecharts.org
condition: redis.enabled
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: redis
version: 11.1.3
repository: https://deps.truecharts.org
condition: redis.enabled
alias: ""
tags: []
import-values: []
annotations:
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: security
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: security
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise
type: application

View File

@@ -1,4 +1,4 @@
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
apiVersion: v2
name: blocky
version: 12.1.5
@@ -8,39 +8,39 @@ home: https://truecharts.org/charts/enterprise/blocky
icon: https://truecharts.org/img/hotlink-ok/chart-icons/blocky.png
deprecated: false
sources:
- https://github.com/Mozart409/blocky-frontend
- https://0xerr0r.github.io/blocky/
- https://github.com/0xERR0R/blocky
- https://github.com/truecharts/charts/tree/master/charts/enterprise/blocky
- https://quay.io/oriedge/k8s_gateway
- https://hub.docker.com/r/spx01/blocky
- https://github.com/Mozart409/blocky-frontend
- https://0xerr0r.github.io/blocky/
- https://github.com/0xERR0R/blocky
- https://github.com/truecharts/charts/tree/master/charts/enterprise/blocky
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- dns
- blocky
- dns
- blocky
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: redis
version: 11.1.3
repository: https://deps.truecharts.org
condition: redis.enabled
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: redis
version: 11.1.3
repository: https://deps.truecharts.org
condition: redis.enabled
alias: ""
tags: []
import-values: []
annotations:
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: network
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: network
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise
type: application

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: clusterissuer
version: 6.1.4
version: 6.1.5
appVersion: latest
description: Certificate management for Kubernetes
home: https://truecharts.org/charts/enterprise/clusterissuer
icon: https://truecharts.org/img/hotlink-ok/chart-icons/clusterissuer.png
deprecated: false
sources:
- https://hub.docker.com/_/hello-world
- https://cert-manager.io/
- https://github.com/truecharts/charts/tree/master/charts/enterprise/clusterissuer
- https://hub.docker.com/_/hello-world
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -20,7 +20,7 @@ keywords:
- certificates
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: grafana
version: 11.1.4
version: 11.1.5
appVersion: 10.2.3
description: Grafana is an open source, feature rich metrics dashboard and graph editor for Graphite, Elasticsearch, OpenTSDB, Prometheus and InfluxDB.
home: https://truecharts.org/charts/enterprise/grafana
@@ -23,7 +23,7 @@ keywords:
- logs
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,4 +1,4 @@
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
apiVersion: v2
name: kubernetes-reflector
version: 3.1.5
@@ -8,33 +8,33 @@ home: https://truecharts.org/charts/enterprise/kubernetes-reflector
icon: https://truecharts.org/img/hotlink-ok/chart-icons/kubernetes-reflector.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/enterprise/kubernetes-reflector
- https://hub.docker.com/r/emberstack/kubernetes-reflector
- https://github.com/emberstack/kubernetes-reflector
- https://github.com/truecharts/charts/tree/master/charts/enterprise/kubernetes-reflector
- https://hub.docker.com/r/emberstack/kubernetes-reflector
- https://github.com/emberstack/kubernetes-reflector
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- reflector
- secrets
- configmaps
- cert-manager
- certificates
- reflector
- secrets
- configmaps
- cert-manager
- certificates
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
annotations:
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: operators
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: operators
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise
type: application

View File

@@ -1,4 +1,4 @@
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
apiVersion: v2
name: metallb-config
version: 5.1.5
@@ -8,31 +8,31 @@ home: https://truecharts.org/charts/enterprise/metallb-config
icon: https://truecharts.org/img/hotlink-ok/chart-icons/metallb-config.png
deprecated: false
sources:
- https://metallb.universe.tf
- https://github.com/metallb/metallb
- https://github.com/truecharts/charts/tree/master/charts/enterprise/metallb-config
- https://hub.docker.com/_/hello-world
- https://hub.docker.com/_/hello-world
- https://metallb.universe.tf
- https://github.com/metallb/metallb
- https://github.com/truecharts/charts/tree/master/charts/enterprise/metallb-config
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- metallb
- loadbalancer
- metallb
- loadbalancer
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
annotations:
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: core
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: core
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise
type: application

View File

@@ -1,4 +1,4 @@
kubeVersion: '>=1.24.0-0'
kubeVersion: ">=1.24.0-0"
apiVersion: v2
name: prometheus
version: 16.1.5
@@ -8,44 +8,44 @@ home: https://truecharts.org/charts/enterprise/prometheus
icon: https://truecharts.org/img/hotlink-ok/chart-icons/prometheus.png
deprecated: false
sources:
- https://github.com/prometheus-operator/kube-prometheus
- https://github.com/prometheus-community/helm-charts
- https://github.com/truecharts/charts/tree/master/charts/enterprise/prometheus
- https://quay.io/thanos/thanos
- https://github.com/prometheus-community/helm-charts
- https://github.com/truecharts/charts/tree/master/charts/enterprise/prometheus
- https://hub.docker.com/r/bitnami/alertmanager
- https://github.com/prometheus-operator/kube-prometheus
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- metrics
- metrics
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: node-exporter
version: 6.1.3
repository: https://deps.truecharts.org
condition: exporters.enabled,exporters.node-exporter.enabled
alias: ""
tags: []
import-values: []
- name: kube-state-metrics
version: 6.1.3
repository: https://deps.truecharts.org
condition: exporters.enabled,exporters.kube-state-metrics.enabled
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: node-exporter
version: 6.1.3
repository: https://deps.truecharts.org
condition: exporters.enabled,exporters.node-exporter.enabled
alias: ""
tags: []
import-values: []
- name: kube-state-metrics
version: 6.1.3
repository: https://deps.truecharts.org
condition: exporters.enabled,exporters.kube-state-metrics.enabled
alias: ""
tags: []
import-values: []
annotations:
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: metrics
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: metrics
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise
type: application

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: traefik
version: 25.1.4
version: 25.1.5
appVersion: 2.10.5
description: Traefik is a flexible reverse proxy and Ingress Provider.
home: https://truecharts.org/charts/enterprise/traefik
@@ -12,7 +12,6 @@ sources:
- https://github.com/traefik/traefik
- https://github.com/traefik/traefik-helm-chart
- https://github.com/truecharts/charts/tree/master/charts/enterprise/traefik
- https://github.com/truecharts/containers/tree/master/mirrortraefik
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -1,5 +1,5 @@
image:
repository: tccr.io/truecharts/traefik
repository: tccr.io/tccr/traefik
tag: v2.10.5@sha256:b277733b5b8d7f9d2761813d97e161c1f64ec77960f9c06adde13868efbc8dce
pullPolicy: IfNotPresent
manifestManager:

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: vaultwarden
version: 25.1.4
version: 25.1.5
appVersion: 1.30.1
description: Unofficial Bitwarden compatible server written in Rust
home: https://truecharts.org/charts/enterprise/vaultwarden
@@ -24,7 +24,7 @@ keywords:
- rust
dependencies:
- name: common
version: 17.2.19
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,14 +1,13 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: velero
version: 3.1.4
version: 3.1.5
appVersion: latest
description: Velero is a kubernetes-native backup solution
home: https://truecharts.org/charts/incubator/velero
icon: https://truecharts.org/img/hotlink-ok/chart-icons/velero.png
deprecated: false
sources:
- https://github.com/truecharts/containers/tree/master/mirroralpine
- https://cert-manager.io/
- https://github.com/cert-manager
- https://github.com/truecharts/charts/tree/master/charts/incubator/velero

View File

@@ -1,6 +1,6 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/alpine
repository: tccr.io/tccr/alpine
tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9
manifestManager:
enabled: false

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: apprise-api
version: 4.0.11
version: 4.0.12
appVersion: 0.9.5
description: Push notifications that work with just about every platform!
home: https://truecharts.org/charts/incubator/apprise-api
@@ -21,7 +21,7 @@ keywords:
- usenet
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: appsmith
version: 6.0.11
version: 6.0.12
appVersion: 1.9.50
description: Turn any datasource into an internal app in minutes. Appsmith lets you drag-and-drop UI components to build pages, connect to any API, database or GraphQL source and write logic with JavaScript objects.
home: https://truecharts.org/charts/incubator/appsmith
icon: https://truecharts.org/img/hotlink-ok/chart-icons/appsmith.png
deprecated: false
sources:
- https://github.com/appsmithorg/appsmith
- https://github.com/truecharts/charts/tree/master/charts/incubator/appsmith
- https://hub.docker.com/r/appsmith/appsmith-ce
- https://github.com/appsmithorg/appsmith
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -19,7 +19,7 @@ keywords:
- appsmith
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: awesome-ttrss
version: 4.0.2
version: 4.0.3
appVersion: latest-2023-12-18
description: Awesome TTRSS aims to provide a powerful Chartized all-in-one solution for Tiny Tiny RSS
home: https://truecharts.org/charts/incubator/awesome-ttrss
@@ -20,7 +20,7 @@ keywords:
- awesome-ttrss
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: btdex
version: 3.0.11
version: 3.0.12
appVersion: latest
description: This is a Docker Chart for BTDEX based on jlesage/Chart-baseimage-gui Chart.
home: https://truecharts.org/charts/incubator/btdex
@@ -20,7 +20,7 @@ keywords:
- Crypto
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: cadquery-jupyter
version: 3.0.11
version: 3.0.12
appVersion: 3.5.2
description: CadQuery is an intuitive, easy-to-use Python module for building parametric 3D CAD models. Using CadQuery, you can write short, simple scripts that produce high quality CAD models. It is easy to make many different objects using a single script that can be customized.
home: https://truecharts.org/charts/incubator/cadquery-jupyter
@@ -24,7 +24,7 @@ keywords:
- Network-Other
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: cloudbeaver
version: 4.0.11
version: 4.0.12
appVersion: 23.3.0
description: Cloud Database Manager (Official Chart)
home: https://truecharts.org/charts/incubator/cloudbeaver
@@ -21,7 +21,7 @@ keywords:
- Tools-Utilities
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: conreq
version: 3.0.12
version: 3.0.13
appVersion: latest
description: Conreq, a Content Requesting platform.
home: https://truecharts.org/charts/incubator/conreq
@@ -19,7 +19,7 @@ keywords:
- MediaApp-Other
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: csi-driver-nfs
version: 1.0.12
version: 1.0.13
appVersion: latest
description: csi-driver-nfs is a nfs CSI driver for kubernetes
home: https://truecharts.org/charts/incubator/csi-driver-nfs
@@ -11,7 +11,6 @@ sources:
- https://cert-manager.io/
- https://github.com/cert-manager
- https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-nfs
- https://github.com/truecharts/containers/tree/master/mirroralpine
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -1,6 +1,6 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/alpine
repository: tccr.io/tccr/alpine
tag: latest@sha256:17cd77e25d3fa829d168caec4db7bb5b52ceeb935d8ca0d1180de6f615553dc4
manifestManager:
enabled: false

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: cups-server
version: 5.0.11
version: 5.0.12
appVersion: latest
description: CUPS printing server
home: https://truecharts.org/charts/incubator/cups-server
@@ -19,7 +19,7 @@ keywords:
- cups
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: darktable
version: 7.0.11
version: 7.0.12
appVersion: 4.0.1
description: Darktable is an open source photography workflow application and raw developer.
home: https://truecharts.org/charts/incubator/darktable
@@ -18,7 +18,7 @@ keywords:
- darktable
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: drone-runner
version: 4.0.11
version: 4.0.12
appVersion: 1.0.0
description: Drone by Harness™ is a modern Continuous Integration platform
home: https://truecharts.org/charts/incubator/drone-runner
icon: https://truecharts.org/img/hotlink-ok/chart-icons/drone-runner.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/drone-runner
- https://hub.docker.com/r/drone/drone-runner-kube
- https://docs.drone.io
- https://github.com/truecharts/charts/tree/master/charts/incubator/drone-runner
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -20,7 +20,7 @@ keywords:
- productivity
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: dupeguru
version: 5.0.11
version: 5.0.12
appVersion: 23.11.2
description: dupeGuru is a tool to find duplicate files on your computer. It can scan either filenames or contents.
home: https://truecharts.org/charts/incubator/dupeguru
icon: https://truecharts.org/img/hotlink-ok/chart-icons/dupeguru.png
deprecated: false
sources:
- https://hub.docker.com/r/jlesage/dupeguru
- https://github.com/jlesage/docker-dupeguru
- https://github.com/truecharts/charts/tree/master/charts/incubator/dupeguru
- https://hub.docker.com/r/jlesage/dupeguru
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -20,7 +20,7 @@ keywords:
- dupeguru
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: dvblink
version: 3.0.11
version: 3.0.12
appVersion: latest
description: DVBLink need to enjoy your favorite channels and recordings within your home network and on the go!
home: https://truecharts.org/charts/incubator/dvblink
@@ -19,7 +19,7 @@ keywords:
- MediaServer-Video
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: fancyindex
version: 4.0.11
version: 4.0.12
appVersion: latest
description: Fancyindex provides a lightweight nginx directory listing with theming support
home: https://truecharts.org/charts/incubator/fancyindex
@@ -19,7 +19,7 @@ keywords:
- fancyindex
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: ferdi-client
version: 3.0.12
version: 3.0.13
appVersion: latest
description: Ferdi is a destkop app that helps you organize how you use your favourite apps by combining them into one application. It is based on Franz - a software already used by thousands of people - with the difference that Ferdi gives you many additional features and doesn't restrict its usage! Ferdi is compatible with your existing Franz account so you can continue right where you left off.
home: https://truecharts.org/charts/incubator/ferdi-client
icon: https://truecharts.org/img/hotlink-ok/chart-icons/ferdi-client.png
deprecated: false
sources:
- https://getferdi.com/
- https://github.com/truecharts/charts/tree/master/charts/incubator/ferdi-client
- https://hub.docker.com/r/ich777/ferdi-client
- https://getferdi.com/
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- Tools-Utilities
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: filegator
version: 3.0.11
version: 3.0.12
appVersion: latest
description: FileGator is a free, open-source, self-hosted web application for managing files and folders.
home: https://truecharts.org/charts/incubator/filegator
icon: https://truecharts.org/img/hotlink-ok/chart-icons/filegator.png
deprecated: false
sources:
- https://github.com/filegator/filegator
- https://github.com/truecharts/charts/tree/master/charts/incubator/filegator
- https://hub.docker.com/r/maxime1907/filegator
- https://github.com/filegator/filegator
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -23,7 +23,7 @@ keywords:
- Network-FTP
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: flashpaper
version: 5.0.11
version: 5.0.12
appVersion: latest
description: One-time encrypted password/secret sharing
home: https://truecharts.org/charts/incubator/flashpaper
icon: https://truecharts.org/img/hotlink-ok/chart-icons/flashpaper.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/flashpaper
- https://hub.docker.com/r/andrewpaglusch/flashpaper
- https://github.com/AndrewPaglusch/FlashPaper
- https://github.com/truecharts/charts/tree/master/charts/incubator/flashpaper
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -24,7 +24,7 @@ keywords:
- Network-Web
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: go-auto-yt
version: 3.0.12
version: 3.0.13
appVersion: stable
description: GoAutoYT makes it easy for you to automatically download videos from as many YouTube channels as you'd like.
home: https://truecharts.org/charts/incubator/go-auto-yt
@@ -21,7 +21,7 @@ keywords:
- Tools-Utilities
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: google-cloud-storage-backup
version: 3.0.11
version: 3.0.12
appVersion: latest
description: |
A simple way to backup important files to Google Cloud Storage.
@@ -9,8 +9,8 @@ home: https://truecharts.org/charts/incubator/google-cloud-storage-backup
icon: https://truecharts.org/img/hotlink-ok/chart-icons/google-cloud-storage-backup.png
deprecated: false
sources:
- https://hub.docker.com/r/vinid223/gcloud-storage-backup
- https://github.com/truecharts/charts/tree/master/charts/incubator/google-cloud-storage-backup
- https://hub.docker.com/r/vinid223/gcloud-storage-backup
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- Cloud
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: habridge
version: 6.0.11
version: 6.0.12
appVersion: 5.4.1
description: Habridge emulates Philips Hue API to other home automation gateways such as an Amazon Echo/Dot or other systems that support Philips Hue.
home: https://truecharts.org/charts/incubator/habridge
@@ -18,7 +18,7 @@ keywords:
- habridge
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: icantbelieveitsnotvaletudo
version: 8.0.11
version: 8.0.12
appVersion: 2021.2.1
description: Create live map data from Valetudo powered robots
home: https://truecharts.org/charts/incubator/icantbelieveitsnotvaletudo
icon: https://truecharts.org/img/hotlink-ok/chart-icons/icantbelieveitsnotvaletudo.png
deprecated: false
sources:
- https://hub.docker.com/r/pmaksymiuk/icantbelieveitsnotvaletudo
- https://github.com/Hypfer/ICantBelieveItsNotValetudo
- https://github.com/truecharts/charts/tree/master/charts/incubator/icantbelieveitsnotvaletudo
- https://hub.docker.com/r/pmaksymiuk/icantbelieveitsnotvaletudo
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -22,7 +22,7 @@ keywords:
- iot
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,17 +1,17 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: jitsi
version: 3.0.11
version: 3.0.12
appVersion: stable-8960
description: Jitsi is a set of open-source projects that allows you to easily build and deploy secure video conferencing solutions
home: https://truecharts.org/charts/incubator/jitsi
icon: https://truecharts.org/img/hotlink-ok/chart-icons/jitsi.png
deprecated: false
sources:
- https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-start
- https://jitsi.org
- https://github.com/truecharts/charts/tree/master/charts/incubator/jitsi
- https://hub.docker.com/r/jitsi/jvb
- https://hub.docker.com/r/jitsi/web
- https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-start
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -20,7 +20,7 @@ keywords:
- jitsi
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: jump
version: 3.0.11
version: 3.0.12
appVersion: 1.3.2
description: Jump is yet another self-hosted startpage for your server designed to be simple, stylish, fast and secure.
home: https://truecharts.org/charts/incubator/jump
@@ -20,7 +20,7 @@ keywords:
- jump
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: libreoffice
version: 6.0.11
version: 6.0.12
appVersion: 7.5.5
description: LibreOffice is a free and powerful office suite, and a successor to OpenOffice.org.
home: https://truecharts.org/charts/incubator/libreoffice
@@ -18,7 +18,7 @@ keywords:
- libreoffice
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: livebook
version: 3.0.11
version: 3.0.12
appVersion: latest
description: Livebook is a web application for writing interactive and collaborative code notebooks for Elixir
home: https://truecharts.org/charts/incubator/livebook
@@ -20,7 +20,7 @@ keywords:
- Tools-Utilities
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: ml-workspace
version: 6.0.11
version: 6.0.12
appVersion: 0.13.2
description: All-in-one web-based development environment for machine learning
home: https://truecharts.org/charts/incubator/ml-workspace
@@ -10,7 +10,7 @@ deprecated: false
sources:
- https://github.com/ml-tooling/ml-workspace
- https://github.com/truecharts/charts/tree/master/charts/incubator/ml-workspace
- https://hub.docker.com/r/mltooling/ml-workspace-gpu
- https://hub.docker.com/r/mltooling/ml-workspace-spark
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- ai
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: mocodo-mcd
version: 3.0.11
version: 3.0.12
appVersion: latest
description: Mocodo est un logiciel d'aide l'enseignement et la conception des bases de donnes relationnelles.
home: https://truecharts.org/charts/incubator/mocodo-mcd
@@ -20,7 +20,7 @@ keywords:
- Productivity
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,18 +1,18 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: moviegrabber
version: 3.0.12
version: 3.0.13
appVersion: latest
description: MovieGrabber is a fully automated way of downloading movie from usenet, it supports any nzb client that has a "watched" or "monitor" folder facility such as Sabnzbd+, Grabit and Newsbin. MovieGrabber works by checking imdb for matching criteria and if a match is found the nzb will be downloaded and stored in either a specified queued folder for user review or sent to the watched folder for processing and automatic downloading via your usenet binary client.
home: https://truecharts.org/charts/incubator/moviegrabber
icon: https://truecharts.org/img/hotlink-ok/chart-icons/moviegrabber.png
deprecated: false
sources:
- https://github.com/binhex/moviegrabber
- https://github.com/truecharts/charts/tree/master/charts/incubator/moviegrabber
- https://hub.docker.com/r/binhex/arch-moviegrabber
- https://registry.hub.docker.com/r/binhex/arch-moviegrabber/
- https://github.com/binhex/documentation
- https://github.com/binhex/moviegrabber
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -22,7 +22,7 @@ keywords:
- Downloaders
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: orbital-sync
version: 4.0.11
version: 4.0.12
appVersion: 1.5.2
description: Orbital Sync synchronizes multiple Pi-hole instances for high availability.
home: https://truecharts.org/charts/incubator/orbital-sync
icon: https://truecharts.org/img/hotlink-ok/chart-icons/orbital-sync.png
deprecated: false
sources:
- https://ghcr.io/mattwebbio/orbital-sync
- https://github.com/mattwebbio/orbital-sync/pkgs/container/orbital-sync
- https://github.com/truecharts/charts/tree/master/charts/incubator/orbital-sync
- https://ghcr.io/mattwebbio/orbital-sync
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- DNS
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: pialert
version: 3.0.11
version: 3.0.12
appVersion: latest
description: Monitoring your WIFI/LAN network and alerting of new (intruder or hacker) devices.
home: https://truecharts.org/charts/incubator/pialert
@@ -20,7 +20,7 @@ keywords:
- networking
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: pidgin
version: 6.0.11
version: 6.0.12
appVersion: 2.14.12
description: Pidgin is a chat program which lets you log into accounts on multiple chat networks simultaneously.
home: https://truecharts.org/charts/incubator/pidgin
@@ -18,7 +18,7 @@ keywords:
- pidgin
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: pingvin-share
version: 1.0.11
version: 1.0.12
appVersion: 0.20.2
description: A self-hosted file sharing platform and an alternative for WeTransfer.
home: https://truecharts.org/charts/incubator/pingvin-share
@@ -20,7 +20,7 @@ keywords:
- productivity
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: pixelserv-tls
version: 3.0.11
version: 3.0.12
appVersion: latest
description: pixelserv-tls is a tiny bespoke HTTP/1.1 webserver with HTTPS and SNI support. It acts on behalf of hundreds of thousands of advert/tracker servers and responds to all requests with nothing to speed up web browsing.
home: https://truecharts.org/charts/incubator/pixelserv-tls
icon: https://truecharts.org/img/hotlink-ok/chart-icons/pixelserv-tls.png
deprecated: false
sources:
- https://hub.docker.com/r/imthai/pixelserv-tls
- https://github.com/imTHAI/docker-pixelserv-tls
- https://github.com/truecharts/charts/tree/master/charts/incubator/pixelserv-tls
- https://hub.docker.com/r/imthai/pixelserv-tls
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- Other
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: poste
version: 3.0.11
version: 3.0.12
appVersion: latest
description: 'FREE version of Poste.io, full mail server solution. POP3, SMTP, IMAP, Spamassassin, WebMail, WebAdmin. '
home: https://truecharts.org/charts/incubator/poste
@@ -25,7 +25,7 @@ keywords:
- Network-Messenger
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: pritunl
version: 3.0.11
version: 3.0.12
appVersion: latest
description: |
Run a Pritunl VPN Server [br][br]
@@ -21,7 +21,7 @@ keywords:
- Network-Other
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: ps3netsrv
version: 3.0.11
version: 3.0.12
appVersion: 1.6.0
description: Allows Multiman or Webman to play game backups.
home: https://truecharts.org/charts/incubator/ps3netsrv
icon: https://truecharts.org/img/hotlink-ok/chart-icons/ps3netsrv.png
deprecated: false
sources:
- https://github.com/aldostools/webMAN-MOD/tree/master/_Projects_/ps3netsrv
- https://github.com/truecharts/charts/tree/master/charts/incubator/ps3netsrv
- https://hub.docker.com/r/shawly/ps3netsrv
- https://github.com/aldostools/webMAN-MOD/tree/master/_Projects_/ps3netsrv
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -20,7 +20,7 @@ keywords:
- Network-Other
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: pure-ftpd
version: 3.0.11
version: 3.0.12
appVersion: latest
description: Pure-FTPd is a free (BSD), secure, production-quality and standard-conformant FTP server. [br]Creating user by using console "pure-pw useradd admin -u 99 -g 100 -d /home/admin -m"[/br]
home: https://truecharts.org/charts/incubator/pure-ftpd
icon: https://truecharts.org/img/hotlink-ok/chart-icons/pure-ftpd.png
deprecated: false
sources:
- https://hub.docker.com/r/crazymax/pure-ftpd
- https://www.pureftpd.org/project/pure-ftpd/
- https://github.com/truecharts/charts/tree/master/charts/incubator/pure-ftpd
- https://hub.docker.com/r/crazymax/pure-ftpd
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- Network-FTP
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,8 +1,8 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: pushbits-server
version: 0.0.8
appVersion: 0.10.1
version: 0.0.9
appVersion: 0.10.2
description: Send push notifications via a simple web API, and delivers them to your users.
home: https://truecharts.org/charts/incubator/pushbits-server
icon: https://truecharts.org/img/hotlink-ok/chart-icons/pushbits-server.png
@@ -10,7 +10,7 @@ deprecated: false
sources:
- https://github.com/pushbits/server
- https://github.com/truecharts/charts/tree/master/charts/incubator/pushbits-server
- https://github.com/truecharts/containers/tree/master/mirrorpushbits-server
- https://ghcr.io/pushbits/server
maintainers:
- name: TrueCharts
email: info@truecharts.org

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/pushbits-server
repository: ghcr.io/pushbits/server
pullPolicy: IfNotPresent
tag: v0.10.1@sha256:6020128d995a0054b7104f5a383408a773c5914dbc2d073a71501524f8b79b87
tag: 0.10.2@sha256:59de6e364715e5a5daf07131dd5748ce24c3a8ef0d3b57a81c5d8d973732faf5
service:
main:

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: pydio-cells
version: 9.0.11
version: 9.0.12
appVersion: 4.3.1
description: Pydio-cells is the nextgen file sharing platform for organizations.
home: https://truecharts.org/charts/incubator/pydio-cells
@@ -18,7 +18,7 @@ keywords:
- pydio-cells
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: raneto
version: 3.0.12
version: 3.0.13
appVersion: latest
description: Raneto(http://raneto.com/) - is an open source Knowledgebase platform that uses static Markdown files to power your Knowledgebase.
home: https://truecharts.org/charts/incubator/raneto
@@ -22,7 +22,7 @@ keywords:
- Tools-Utilities
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: restreamer
version: 3.0.11
version: 3.0.12
appVersion: 2.6.0
description: Allows smart free video streaming in real time.
home: https://truecharts.org/charts/incubator/restreamer
@@ -22,7 +22,7 @@ keywords:
- Productivity
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: rtmpserver
version: 5.0.11
version: 5.0.12
appVersion: latest
description: A video streaming server that supports RTMP, HLS, DASH out of the box.
home: https://truecharts.org/charts/incubator/rtmpserver
@@ -21,7 +21,7 @@ keywords:
- Network-Other
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,16 +1,16 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: scprime
version: 3.0.11
version: 3.0.12
appVersion: latest
description: ScPrime is a cryptocurrency project targeting public cloud services with a blockchain based ecosystem to pay individuals to store data around the globe using smart contracts and cryptographic proofs to ensure accuracy, security and redundancy.
home: https://truecharts.org/charts/incubator/scprime
icon: https://truecharts.org/img/hotlink-ok/chart-icons/scprime.png
deprecated: false
sources:
- https://scpri.me
- https://github.com/truecharts/charts/tree/master/charts/incubator/scprime
- https://hub.docker.com/r/scprime/scprime
- https://scpri.me
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -21,7 +21,7 @@ keywords:
- Crypto
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,17 +1,17 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: self-service-password
version: 4.0.11
version: 4.0.12
appVersion: 5.3.3
description: Self Service Password is a PHP application that allows users to change their password in an LDAP directory.
home: https://truecharts.org/charts/incubator/self-service-password
icon: https://truecharts.org/img/hotlink-ok/chart-icons/self-service-password.png
deprecated: false
sources:
- https://self-service-password.readthedocs.io/en/latest
- https://github.com/tiredofit/docker-self-service-password
- https://github.com/truecharts/charts/tree/master/charts/incubator/self-service-password
- https://hub.docker.com/r/tiredofit/self-service-password
- https://self-service-password.readthedocs.io/en/latest
- https://github.com/tiredofit/docker-self-service-password
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -22,7 +22,7 @@ keywords:
- ldap
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: serviio
version: 3.0.11
version: 3.0.12
appVersion: latest
description: Serviio is a freeware media server designed to let users stream music, video, or image files to DLNA compliant televisions, Blu-ray players, game consoles, and Android or Windows Mobile devices on a home network.
home: https://truecharts.org/charts/incubator/serviio
@@ -24,7 +24,7 @@ keywords:
- MediaServer-Other
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: shadowsocks
version: 3.0.11
version: 3.0.12
appVersion: latest
description: A secure SOCKS5 proxy. Shadowsocks is a free and open-source encryption protocol project, widely used in China to circumvent Internet censorship. It was created in 2012 by a Chinese programmer named "clowwindy", and multiple implementations of the protocol have been made available since. Can be used with any SOCKS or Shadowsocks client.
home: https://truecharts.org/charts/incubator/shadowsocks
@@ -22,7 +22,7 @@ keywords:
- Network-VPN
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

View File

@@ -1,7 +1,7 @@
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: snipe-it
version: 9.0.11
version: 9.0.12
appVersion: 6.2.3
description: Open source asset management
home: https://truecharts.org/charts/incubator/snipe-it
@@ -9,9 +9,9 @@ icon: https://truecharts.org/img/hotlink-ok/chart-icons/snipe-it.png
deprecated: false
sources:
- https://github.com/snipe/snipe-it
- https://snipeitapp.com/
- https://github.com/truecharts/charts/tree/master/charts/incubator/snipe-it
- https://hub.docker.com/r/snipe/snipe-it
- https://snipeitapp.com/
maintainers:
- name: TrueCharts
email: info@truecharts.org
@@ -23,7 +23,7 @@ keywords:
- management
dependencies:
- name: common
version: 17.2.18
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""

Some files were not shown because too many files have changed in this diff Show More