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._
This commit is contained in:
Stavros Kois
2024-01-02 13:15:02 +02:00
committed by GitHub
parent 1482d8090e
commit b118ccf6d9
131 changed files with 1909 additions and 1969 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,39 +1,38 @@
kubeVersion: ">=1.24.0-0"
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
icon: https://truecharts.org/img/hotlink-ok/chart-icons/traefik.png
deprecated: false
sources:
- https://traefik.io/
- 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
- https://traefik.io/
- https://github.com/traefik/traefik
- https://github.com/traefik/traefik-helm-chart
- https://github.com/truecharts/charts/tree/master/charts/enterprise/traefik
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- traefik
- ingress
- traefik
- ingress
dependencies:
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.19
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: 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,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,45 +1,44 @@
kubeVersion: ">=1.24.0-0"
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://cert-manager.io/
- https://github.com/cert-manager
- https://github.com/truecharts/charts/tree/master/charts/incubator/velero
- 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
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- velero
- backup
- velero
- backup
dependencies:
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: velero
version: 5.2.0
repository: https://vmware-tanzu.github.io/helm-charts
condition: ""
alias: velero
tags: []
import-values: []
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: velero
version: 5.2.0
repository: https://vmware-tanzu.github.io/helm-charts
condition: ""
alias: velero
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: incubator
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: incubator
type: application

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,45 +1,44 @@
kubeVersion: ">=1.24.0-0"
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
icon: https://truecharts.org/img/hotlink-ok/chart-icons/csi-driver-nfs.png
deprecated: false
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
- https://cert-manager.io/
- https://github.com/cert-manager
- https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-nfs
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- csi-driver-nfs
- backup
- csi-driver-nfs
- backup
dependencies:
- name: common
version: 17.2.18
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: csi-driver-nfs
version: v4.5.0
repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
condition: ""
alias: csi-driver-nfs
tags: []
import-values: []
- name: common
version: 17.2.18
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: csi-driver-nfs
version: v4.5.0
repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
condition: ""
alias: csi-driver-nfs
tags: []
import-values: []
annotations:
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "false"
truecharts.org/category: CSI
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "false"
truecharts.org/category: CSI
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

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,40 +1,40 @@
kubeVersion: ">=1.24.0-0"
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
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://github.com/pushbits/server
- https://github.com/truecharts/charts/tree/master/charts/incubator/pushbits-server
- https://ghcr.io/pushbits/server
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- pushbits-server
- notifications
- matrix
dependencies:
- name: common
version: 17.2.18
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/catagories: |
- pushbits-server
- notifications
truecharts.org/category: unsorted
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
- matrix
dependencies:
- name: common
version: 17.2.18
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/catagories: |
- notifications
truecharts.org/category: unsorted
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

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,46 +1,45 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: cert-manager
version: 3.1.5
version: 3.1.6
appVersion: latest
description: Cert-Manager is a kubernetes-aware certificate manager
home: https://truecharts.org/charts/operators/cert-manager
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cert-manager.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/operators/cert-manager
- https://github.com/truecharts/containers/tree/master/mirroralpine
- https://github.com/cert-manager
- https://cert-manager.io/
- https://github.com/cert-manager
- https://cert-manager.io/
- https://github.com/truecharts/charts/tree/master/charts/operators/cert-manager
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- cert-manager
- certificates
- security
- cert-manager
- certificates
- security
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: cert-manager
version: v1.13.3
repository: https://charts.jetstack.io
condition: ""
alias: certmanager
tags: []
import-values: []
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: cert-manager
version: v1.13.3
repository: https://charts.jetstack.io
condition: ""
alias: certmanager
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: operators
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: operators
type: application

View File

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

View File

@@ -1,46 +1,45 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: cloudnative-pg
version: 5.2.5
version: 5.2.6
appVersion: latest
description: CloudNativePG is a clustered postgresql database operator
home: https://truecharts.org/charts/operators/cloudnative-pg
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cloudnative-pg.png
deprecated: false
sources:
- https://cloudnative-pg.io/
- https://github.com/cloudnative-pg
- https://github.com/truecharts/charts/tree/master/charts/operators/cloudnative-pg
- https://github.com/truecharts/containers/tree/master/mirroralpine
- https://github.com/cloudnative-pg
- https://github.com/truecharts/charts/tree/master/charts/operators/cloudnative-pg
- https://cloudnative-pg.io/
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- database
- cloudnative-pg
- cnpg
- database
- cloudnative-pg
- cnpg
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: cloudnative-pg
version: 0.20.0
repository: https://cloudnative-pg.github.io/charts
condition: ""
alias: cloudnative-pg
tags: []
import-values: []
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: cloudnative-pg
version: 0.20.0
repository: https://cloudnative-pg.github.io/charts
condition: ""
alias: cloudnative-pg
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: operators
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: operators
type: application

View File

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

View File

@@ -1,45 +1,44 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: csi-driver-smb
version: 2.1.5
version: 2.1.6
appVersion: latest
description: csi-driver-smb is a smb CSI driver for kubernetes
home: https://truecharts.org/charts/incubator/csi-driver-smb
icon: https://truecharts.org/img/hotlink-ok/chart-icons/csi-driver-smb.png
deprecated: false
sources:
- https://github.com/cert-manager
- https://cert-manager.io/
- https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-smb
- https://github.com/truecharts/containers/tree/master/mirroralpine
- https://github.com/cert-manager
- https://cert-manager.io/
- https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-smb
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- csi-driver-smb
- backup
- csi-driver-smb
- backup
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: csi-driver-smb
version: v1.13.0
repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
condition: ""
alias: csi-driver-smb
tags: []
import-values: []
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: csi-driver-smb
version: v1.13.0
repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
condition: ""
alias: csi-driver-smb
tags: []
import-values: []
annotations:
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "false"
truecharts.org/category: CSI
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "false"
truecharts.org/category: CSI
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

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,45 +1,44 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: metallb
version: 13.1.5
version: 13.1.6
appVersion: latest
description: A network load-balancer implementation for Kubernetes using standard routing protocols
home: https://truecharts.org/charts/operators/metallb
icon: https://truecharts.org/img/hotlink-ok/chart-icons/metallb.png
deprecated: false
sources:
- https://github.com/metallb/metallb
- https://metallb.universe.tf
- https://github.com/truecharts/charts/tree/master/charts/operators/metallb
- https://github.com/truecharts/containers/tree/master/mirroralpine
- https://metallb.universe.tf
- https://github.com/truecharts/charts/tree/master/charts/operators/metallb
- https://github.com/metallb/metallb
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: metallb
version: 0.13.12
repository: https://metallb.github.io/metallb
condition: ""
alias: metallb
tags: []
import-values: []
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: metallb
version: 0.13.12
repository: https://metallb.github.io/metallb
condition: ""
alias: metallb
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: operators
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: operators
type: application

View File

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

View File

@@ -1,45 +1,44 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: openebs
version: 2.1.5
version: 2.1.6
appVersion: latest
description: OpenEBS is a umbrella container storage provisioner
home: https://truecharts.org/charts/incubator/openebs
icon: https://truecharts.org/img/hotlink-ok/chart-icons/openebs.png
deprecated: false
sources:
- https://cert-manager.io/
- https://github.com/cert-manager
- https://github.com/truecharts/charts/tree/master/charts/incubator/openebs
- 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/openebs
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- openebs
- backup
- openebs
- backup
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: openebs
version: 3.10.0
repository: https://openebs.github.io/charts
condition: ""
alias: openebs
tags: []
import-values: []
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: openebs
version: 3.10.0
repository: https://openebs.github.io/charts
condition: ""
alias: openebs
tags: []
import-values: []
annotations:
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "false"
truecharts.org/category: CSI
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "false"
truecharts.org/category: CSI
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

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,38 +1,38 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: prometheus-operator
version: 3.1.5
version: 3.1.6
appVersion: 0.69.1
description: Prometheus Operator is an operator for prometheus
home: https://truecharts.org/charts/operators/prometheus-operator
icon: https://truecharts.org/img/hotlink-ok/chart-icons/prometheus-operator.png
deprecated: false
sources:
- https://github.com/prometheus-operator
- https://github.com/truecharts/charts/tree/master/charts/operators/prometheus-operator
- https://github.com/truecharts/containers/tree/master/mirrorkube-webhook-certgen
- https://github.com/truecharts/charts/tree/master/charts/operators/prometheus-operator
- https://quay.io/prometheus-operator/prometheus-config-reloader
- https://github.com/prometheus-operator
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- operator
- prometheus
- metics
- operator
- prometheus
- metics
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: operators
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: operators
type: application

View File

@@ -1,21 +1,21 @@
image:
repository: tccr.io/truecharts/prometheus-operator
tag: "v0.69.1@sha256:dc0ad671ec11e5a5b6032a7d36b9451b10f0848f7f0d7203b761de6a1b7c0e99"
repository: quay.io/prometheus-operator/prometheus-operator
tag: "v0.70.0@sha256:e76d06ac84abeb466feb9682e1d0385c4e5a463bc023b32446916b640546a289"
pullPolicy:
configReloaderImage:
repository: tccr.io/truecharts/prometheus-config-reloader
tag: "v0.69.1@sha256:0eb31dcf295350b906e462113f3c2f274ef38f44f95d0e6bd584fb46320e6327"
repository: quay.io/prometheus-operator/prometheus-config-reloader
tag: "v0.70.0@sha256:411cec4bc5e6306804c2d5939c165411a88fb7991c2bd0c3ef4866387f683374"
pullPolicy:
thanosImage:
repository: tccr.io/truecharts/thanos
tag: "v0.32.5@sha256:2e10c5d3525e9b1b7ca1341240b62ce392a31db5adffa0e4e5b232f784f01f5b"
repository: quay.io/thanos/thanos
tag: "v0.33.0@sha256:70d2ea73792e2d26a6eb45e0c999fc88e8cebc1ba443ca059e19715231365cc8"
pullPolicy:
patchImage:
repository: tccr.io/truecharts/kube-webhook-certgen
tag: latest@sha256:28c6de4c7fe7527daafd761e2d33aafe1094004e77248fcc674cc6e092da1017
repository: registry.k8s.io/ingress-nginx/kube-webhook-certgen
tag: v20221220-controller-v1.5.1-58-g787ea74b6@sha256:4d99688e557396f5baa150e019ff7d5b7334f9b9f9a8dab64038c5c2a006f6b5
pullPolicy:
workload:

View File

@@ -1,36 +1,36 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: anki-sync-server
version: 5.1.4
version: 5.1.6
appVersion: 1.1.14
description: A cross-platform Anki sync server.
home: https://truecharts.org/charts/incubator/anki-sync-server
icon: https://truecharts.org/img/hotlink-ok/chart-icons/anki-sync-server.png
deprecated: false
sources:
- https://github.com/ankicommunity/anki-devops-services
- https://github.com/truecharts/charts/tree/master/charts/incubator/anki-sync-server
- https://github.com/truecharts/containers/tree/master/mirroranki-sync-server
- https://github.com/ankicommunity/anki-devops-services
- https://github.com/truecharts/charts/tree/master/charts/incubator/anki-sync-server
- https://hub.docker.com/r/ankicommunity/anki-sync-server-rs
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- anki-sync-server
- anki-sync-server
dependencies:
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.19
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: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,6 +1,6 @@
image:
repository: tccr.io/truecharts/anki-sync-server
tag: v1.1.14@sha256:3951d969ee43c9a0e69394e49111c55a69d4b5784b1cfe121a0151c29dccd811
repository: ankicommunity/anki-sync-server-rs
tag: 1.1.14@sha256:553dbd9600b1580bca34e6ed60c5d8d9fb71f4fb6cdc81d4192f2db15af8ccff
pullPolicy: IfNotPresent
securityContext:

View File

@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: answer
version: 2.1.4
version: 2.1.6
appVersion: 1.2.0
description: A Q&A platform software for teams at any scales.
home: https://truecharts.org/charts/incubator/answer
icon: https://truecharts.org/img/hotlink-ok/chart-icons/answer.png
deprecated: false
sources:
- https://github.com/answerdev/answer
- https://github.com/truecharts/charts/tree/master/charts/incubator/answer
- https://github.com/truecharts/containers/tree/master/mirroranswer
- https://github.com/answerdev/answer
- https://github.com/truecharts/charts/tree/master/charts/incubator/answer
- https://hub.docker.com/r/answerdev/answer
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- answer
- forum
- answer
- forum
dependencies:
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.19
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: forum
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: forum
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/answer
repository: answerdev/answer
pullPolicy: IfNotPresent
tag: v1.2.0@sha256:70a578170bca4a7a1040d44cb5ff143d5e9c2c2f32f9d48f1ad4519d61c35451
tag: 1.2.0@sha256:9b7fd1410df5587e56d446741760ecbd63d342c5e50587d3570e33282cf9cd77
service:
main:

View File

@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: automatic-ripping-machine
version: 2.1.4
version: 2.1.6
appVersion: 2.6.60
description: Automatic Ripping Machine (ARM) Scripts.
home: https://truecharts.org/charts/incubator/automatic-ripping-machine
icon: https://truecharts.org/img/hotlink-ok/chart-icons/automatic-ripping-machine.png
deprecated: false
sources:
- https://github.com/automatic-ripping-machine/automatic-ripping-machine
- https://github.com/truecharts/charts/tree/master/charts/incubator/automatic-ripping-machine
- https://github.com/truecharts/containers/tree/master/mirrorautomatic-ripping-machine
- https://github.com/automatic-ripping-machine/automatic-ripping-machine
- https://github.com/truecharts/charts/tree/master/charts/incubator/automatic-ripping-machine
- https://hub.docker.com/r/automaticrippingmachine/automatic-ripping-machine
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- automatic-ripping-machine
- media
- automatic-ripping-machine
- media
dependencies:
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.19
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: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/automatic-ripping-machine
repository: automaticrippingmachine/automatic-ripping-machine
pullPolicy: IfNotPresent
tag: v2.6.60@sha256:bf79fee03b4ef8867ccbee6448748bf58b86a59c2400dd9beb5a4b926c6e7c10
tag: 2.6.60@sha256:4598de30009b6310fcd877f9141824b3d8ce96c6b1825da734d4c31feeb03651
securityContext:
container:

View File

@@ -1,39 +1,39 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: backuppc
version: 5.1.4
version: 5.1.6
appVersion: 6.0.2
description: A high-performance, enterprise-grade system for backing up Linux, Windows and macOS PCs and laptops to a server's disk.
home: https://truecharts.org/charts/incubator/backuppc
icon: https://truecharts.org/img/hotlink-ok/chart-icons/backuppc.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/backuppc
- https://github.com/truecharts/containers/tree/master/mirrorbackuppc
- https://github.com/tiredofit/docker-backuppc
- https://backuppc.github.io/backuppc/index.html
- https://github.com/tiredofit/docker-backuppc
- https://backuppc.github.io/backuppc/index.html
- https://github.com/truecharts/charts/tree/master/charts/incubator/backuppc
- https://hub.docker.com/r/tiredofit/backuppc
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- backuppc
- Backup
- Network-Web
- backuppc
- Backup
- Network-Web
dependencies:
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.19
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: Backup
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: Backup
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tiredofit/backuppc
tag: 6.0.2@7f4d7c89a204a7a451f90d5d8f551e21120eb2ea0f9500fd34ca5b8e22dc9779
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/backuppc
tag: v6.0.2@sha256:80fe126415f0b530dd7d2645da23c8409f62f184a018c52a3ec1d8c5237d30ff
securityContext:
container:

View File

@@ -1,41 +1,41 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: bazarr
version: 17.1.4
version: 17.1.6
appVersion: 1.4.0
description: Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements
home: https://truecharts.org/charts/stable/bazarr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/bazarr.png
deprecated: false
sources:
- https://github.com/morpheus65535/bazarr
- https://github.com/truecharts/charts/tree/master/charts/stable/bazarr
- https://github.com/truecharts/containers/tree/master/mirrorexportarr
- https://github.com/morpheus65535/bazarr
- https://github.com/truecharts/charts/tree/master/charts/stable/bazarr
- https://ghcr.io/onedr0p/exportarr
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- bazarr
- radarr
- sonarr
- subtitles
- usenet
- torrent
- bazarr
- radarr
- sonarr
- subtitles
- usenet
- torrent
dependencies:
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.19
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: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
type: application

View File

@@ -3,9 +3,9 @@ image:
pullPolicy: IfNotPresent
tag: 1.4.0@sha256:c81c4d9cbec093d5a999cfa3cd1af01d3f00d6292d6f5c33608510cef0ed83c7
exportarrImage:
repository: tccr.io/truecharts/exportarr
repository: ghcr.io/onedr0p/exportarr
tag: v1.6.0@b522e128509b766cf66f847190fccd225ff194dc76775fe6a215f2dd3010cac2
pullPolicy: IfNotPresent
tag: v1.6.0@sha256:ee118701a2ebe8ccb5c25e1003fbed9ef7ce217d4e4b8b6df30cc2a0def818f8
service:
main:
ports:

View File

@@ -1,37 +1,36 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: cs2
version: 2.1.4
version: 2.1.5
appVersion: latest
description: A custom SteamCMD chart that runs CS2.
home: https://truecharts.org/charts/incubator/cs2
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cs2.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/cs2
- https://github.com/truecharts/containers/tree/master/mirrorcs2
- https://github.com/ich777/docker-steamcmd-server/tree/cs2
- https://github.com/ich777/docker-steamcmd-server/tree/cs2
- https://github.com/truecharts/charts/tree/master/charts/incubator/cs2
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- cs2
- counter-strike
- cs2
- counter-strike
dependencies:
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.19
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: games
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: games
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,5 +1,5 @@
image:
repository: tccr.io/truecharts/cs2
repository: tccr.io/tccr/cs2
pullPolicy: IfNotPresent
tag: latest@sha256:24f52ee1c81175980b76914803bc3ca15c02d4217ccc1c0baf414b8cd2d5f44f

View File

@@ -1,51 +1,51 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: ctfd
version: 3.1.5
version: 3.1.7
appVersion: 3.6.0
description: CTFd is a Capture The Flag framework focusing on ease of use and customizability.
home: https://truecharts.org/charts/incubator/ctfd
icon: https://truecharts.org/img/hotlink-ok/chart-icons/ctfd.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/ctfd
- https://github.com/truecharts/containers/tree/master/mirrorctfd
- https://github.com/CTFd/CTFd
- https://ghcr.io/ctfd/ctfd
- https://github.com/CTFd/CTFd
- https://github.com/truecharts/charts/tree/master/charts/incubator/ctfd
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- ctfd
- learning
- ctfd
- learning
dependencies:
- name: common
version: 17.2.21
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: mariadb
version: 12.1.3
repository: https://deps.truecharts.org/
condition: mariadb.enabled
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: mariadb
version: 12.1.3
repository: https://deps.truecharts.org/
condition: mariadb.enabled
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: learning
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: learning
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,8 @@
image:
repository: tccr.io/truecharts/ctfd
repository: ghcr.io/ctfd/ctfd
tag: 3.6.0@9b1e9b9b750703d919ac9ce3dca14e1e02fdaf6d0abb217e29d1bf7fd6e40834
pullPolicy: IfNotPresent
tag: v3.6.0@sha256:5492aa83311f41d70bb5f41b3c5467cf2fafc8b198300001121ad04ea05b6697
service:
main:

View File

@@ -1,35 +1,35 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: custom-app
version: 11.1.4
version: 11.1.5
appVersion: 0.21.1155
description: Advanced tool to create your own TrueCharts-based App
home: https://truecharts.org/charts/stable/custom-app
icon: https://truecharts.org/img/hotlink-ok/chart-icons/custom-app.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/custom-app
- https://ghcr.io/linuxserver/jackett
- https://github.com/truecharts/charts/tree/master/charts/stable/custom-app
- https://ghcr.io/linuxserver/jackett
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- custom
- custom
dependencies:
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.19
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: custom
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: custom
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
type: application

View File

@@ -1,18 +1,24 @@
image:
repository: tccr.io/truecharts/jackett
repository: traefik/whoami
pullPolicy: IfNotPresent
tag: v0.21.1155@sha256:e5422906419a2f5ddd24028d22c41e7abbf9133dc5ac87a06491cbbfe495f9cd
tag: v1.10.1@sha256:6bebf84c091b5da4d4228bf8905436e33ca371afc6f3bd52b1682b40d76b23de
securityContext:
readOnlyRootFilesystem: false
workload:
main:
podSpec:
containers:
main:
args:
- --port
- "8080"
service:
main:
enabled: true
ports:
main:
port: 9117
targetPort: 9117
port: 8080
targetPort: 8080
portsList:
- name: "extraport"
enabled: true

View File

@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: factorio
version: 6.1.4
version: 6.1.6
appVersion: stable
description: A game in which you build and maintain factories.
home: https://truecharts.org/charts/incubator/factorio
icon: https://truecharts.org/img/hotlink-ok/chart-icons/factorio.png
deprecated: false
sources:
- https://github.com/factoriotools/factorio-docker
- https://github.com/truecharts/charts/tree/master/charts/incubator/factorio
- https://github.com/truecharts/containers/tree/master/mirrorfactorio
- https://github.com/factoriotools/factorio-docker
- https://github.com/truecharts/charts/tree/master/charts/incubator/factorio
- https://hub.docker.com/r/factoriotools/factorio
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- factorio
- GameServers
- factorio
- GameServers
dependencies:
- name: common
version: 17.2.19
repository: oci://tccr.io/truecharts
condition: ""
alias: ""
tags: []
import-values: []
- name: common
version: 17.2.19
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: GameServers
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: GameServers
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/factorio
tag: vstable@sha256:1554bb0a5ead1dacdfdffa7539d5d170d3f326aa82aad9f4d88f9e37f3e0ec85
repository: factoriotools/factorio
tag: stable@sha256:37ac9795cdda909f1a3b92a6acb5d384a109b500f15a0c733bfadbc29e2eadcc
securityContext:
container:

View File

@@ -1,40 +1,40 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: filestash
version: 5.1.4
version: 5.1.6
appVersion: latest
description: A Dropbox-like file manager that let you manage your data anywhere it is located.
home: https://truecharts.org/charts/incubator/filestash
icon: https://truecharts.org/img/hotlink-ok/chart-icons/filestash.png
deprecated: false
sources:
- https://github.com/mickael-kerjean/filestash
- https://www.filestash.app/
- https://github.com/truecharts/charts/tree/master/charts/incubator/filestash
- https://github.com/truecharts/containers/tree/master/mirrorfilestash
- https://github.com/mickael-kerjean/filestash
- https://www.filestash.app/
- https://github.com/truecharts/charts/tree/master/charts/incubator/filestash
- https://hub.docker.com/r/machines/filestash
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- filestash
- Cloud
- Productivity
- Network-Web
- filestash
- Cloud
- Productivity
- Network-Web
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: Cloud
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: Cloud
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: machines/filestash
tag: latest@d0d9aedd87f474c42ed724a14253c6b87848141bf1371d5f69684a27c3791514
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/filestash
tag: latest@sha256:cd613d2f128b7aeba051aed421176c44bf5b3b6df0f72102ad6a4b76f569802d
securityContext:
container:

View File

@@ -1,41 +1,41 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: filezilla
version: 10.1.4
appVersion: 3.59.0
version: 10.1.6
appVersion: 3.64.0
description: A Helm chart for Kubernetes
home: https://truecharts.org/charts/incubator/filezilla
icon: https://truecharts.org/img/hotlink-ok/chart-icons/filezilla.png
deprecated: false
sources:
- https://filezilla-project.org/
- https://github.com/truecharts/charts/tree/master/charts/incubator/filezilla
- https://github.com/truecharts/containers/tree/master/mirrorfilezilla
- https://github.com/linuxserver/docker-filezilla
- https://ghcr.io/linuxserver/filezilla
- https://filezilla-project.org/
- https://github.com/linuxserver/docker-filezilla
- https://github.com/truecharts/charts/tree/master/charts/incubator/filezilla
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- filezilla
- ftp
- sftp
- ftps
- client
- filezilla
- ftp
- sftp
- ftps
- client
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: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/filezilla
repository: ghcr.io/linuxserver/filezilla
tag: 3.64.0@c415baaa62ddee0f69811f5bd34ffd981f301c00e97b6fea2361a4ce7ae34a04
pullPolicy: IfNotPresent
tag: 3.59.0@sha256:e6c854d35020a3fafddee718542cd99ef416432fe8424cf1b84559ecec1e6289
securityContext:
container:

View File

@@ -1,37 +1,36 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: freeradius
version: 12.1.4
version: 12.1.5
appVersion: 3.2.0
description: OpenSource Radius implementation
home: https://truecharts.org/charts/stable/freeradius
icon: https://truecharts.org/img/hotlink-ok/chart-icons/freeradius.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/freeradius
- https://github.com/truecharts/containers/tree/master/mirrorfreeradius
- https://freeradius.org/
- https://freeradius.org/
- https://github.com/truecharts/charts/tree/master/charts/stable/freeradius
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- radius
- auth
- radius
- auth
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: auth
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: auth
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
type: application

View File

@@ -1,5 +1,5 @@
image:
repository: tccr.io/truecharts/freeradius
repository: tccr.io/tccr/freeradius
pullPolicy: IfNotPresent
tag: v3.2.0@sha256:e6a9295ae6caf282e957d0e329810e13bbdedc3bec3865e8ab322a0055107623
securityContext:

View File

@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: gravity
version: 2.1.4
appVersion: 0.6.18
version: 2.1.6
appVersion: 0.6.15
description: Fully-replicated DNS and DHCP Server with ad-blocking powered by etcd.
home: https://truecharts.org/charts/incubator/gravity
icon: https://truecharts.org/img/hotlink-ok/chart-icons/gravity.png
deprecated: false
sources:
- https://github.com/BeryJu/gravity
- https://github.com/truecharts/charts/tree/master/charts/incubator/gravity
- https://github.com/truecharts/containers/tree/master/mirrorgravity
- https://github.com/truecharts/charts/tree/master/charts/incubator/gravity
- https://ghcr.io/beryju/gravity
- https://github.com/BeryJu/gravity
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- gravity
- dns
- networking
- gravity
- dns
- networking
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: dns
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: dns
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/gravity
repository: ghcr.io/beryju/gravity
tag: v0.6.15@3b30bdba02bdfcb7ee1ff55dbcdb12275b55b2ab20993f3a68e1610bc0b8380e
pullPolicy: IfNotPresent
tag: v0.6.18@sha256:1fc3f7d2507d618859f4ec84c48af0caf82efaf284c0c34df423cbab138b88c8
securityContext:
container:

View File

@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: homebridge
version: 6.1.4
appVersion: 2023-01
version: 6.1.6
appVersion: "2023"
description: A lightweight NodeJS server that emulates the iOS HomeKit API
home: https://truecharts.org/charts/incubator/homebridge
icon: https://truecharts.org/img/hotlink-ok/chart-icons/homebridge.png
deprecated: false
sources:
- https://homebridge.io/
- https://github.com/oznu/docker-homebridge
- https://github.com/truecharts/charts/tree/master/charts/incubator/homebridge
- https://github.com/truecharts/containers/tree/master/mirrorhomebridge
- https://github.com/oznu/docker-homebridge
- https://github.com/truecharts/charts/tree/master/charts/incubator/homebridge
- https://hub.docker.com/r/homebridge/homebridge
- https://homebridge.io/
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- homebridge
- homekit
- homebridge
- homekit
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: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/homebridge
repository: homebridge/homebridge
tag: 2023-12-30@392a3913060b4d3a12fd19845074ac6dee032948763306f3bba1795ac6248bae
pullPolicy: IfNotPresent
tag: v2023-01@sha256:fa0512d8b38d20d4078b0f403c23c17716a045fcb4dc723b896461a766e22ee9
securityContext:
container:

View File

@@ -1,35 +1,35 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: impostor-server
version: 7.1.4
version: 7.1.6
appVersion: 1.8.4
description: A private Among Us server
home: https://truecharts.org/charts/stable/impostor-server
icon: https://truecharts.org/img/hotlink-ok/chart-icons/impostor-server.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/impostor-server
- https://hub.docker.com/r/aeonlucid/impostor
- https://github.com/truecharts/charts/tree/master/charts/stable/impostor-server
- https://hub.docker.com/r/aeonlucid/impostor
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- impostor-server
- impostor-server
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: games
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: games
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
type: application

View File

@@ -1,4 +1,4 @@
image:
repository: tccr.io/truecharts/impostor-server-nightly
repository: aeonlucid/impostor
tag: nightly@d50e3969809d5bad471f64e22a3b4d1ed1ad8273b168bd931f7e342874034979
pullPolicy: IfNotPresent
tag: vnightly@sha256:0144b558371c3b619bfaa947120108b96ad7100c96588df0d93b2b9b1c533b4f

View File

@@ -4,8 +4,8 @@ image:
tag: v1.8.4@sha256:b01df7535ba5f39d01eb3c6620199d8bc6e3182d9c685307eb21001d7ad23273
nightlyImage:
repository: aeonlucid/impostor
tag: nightly@d50e3969809d5bad471f64e22a3b4d1ed1ad8273b168bd931f7e342874034979
pullPolicy: IfNotPresent
tag: nightly@sha256:727310ae81860f9f9d933e6d0b4cc0fffac97920dce3bc4bf27aa293a297081a
service:
main:
ports:

View File

@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: kopia
version: 10.1.4
version: 10.1.6
appVersion: 0.15.0
description: Kopia is a simple, cross-platform tool for managing encrypted backups in the cloud. It provides fast, incremental backups, secure, client-side end-to-end encryption, compression and data deduplication.
home: https://truecharts.org/charts/stable/kopia
icon: https://truecharts.org/img/hotlink-ok/chart-icons/kopia.png
deprecated: false
sources:
- https://github.com/kopia/kopia
- https://github.com/truecharts/charts/tree/master/charts/stable/kopia
- https://github.com/truecharts/containers/tree/master/mirrorkopia
- https://kopia.io/docs/installation/#docker-images
- https://github.com/kopia/kopia
- https://kopia.io/docs/installation/#docker-images
- https://github.com/truecharts/charts/tree/master/charts/stable/kopia
- https://hub.docker.com/r/kopia/kopia
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- backup
- backup
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: utility
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: utility
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
type: application

View File

@@ -1,6 +1,6 @@
image:
repository: tccr.io/truecharts/kopia
tag: v0.15.0@sha256:915804f85364d2bba51248ea6b639d0988933870dc475da71d028aa819ec8649
repository: kopia/kopia
tag: 0.15.0@fea96cef392971a0dce271ac4edd289476e23f3d4e1b90958785ee579ff14c07
pullPolicy: IfNotPresent
service:

View File

@@ -1,40 +1,40 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: megasync
version: 5.1.4
version: 5.1.6
appVersion: latest
description: MEGAsync can synchronize all of your devices with your MEGA account.
home: https://truecharts.org/charts/incubator/megasync
icon: https://truecharts.org/img/hotlink-ok/chart-icons/megasync.png
deprecated: false
sources:
- https://github.com/ich777/docker-megasync
- https://github.com/truecharts/charts/tree/master/charts/incubator/megasync
- https://github.com/truecharts/containers/tree/master/mirrormegasync
- https://github.com/ich777/docker-megasync
- https://github.com/truecharts/charts/tree/master/charts/incubator/megasync
- https://hub.docker.com/r/ich777/megasync
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- megasync
- Network-Other
- Productivity
- Tools-Utilities
- Backup
- megasync
- Network-Other
- Productivity
- Tools-Utilities
- Backup
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: Network-Other
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: Network-Other
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: ich777/megasync
tag: latest@6c65468d9ed5b55ed6a08fec8e47421c81988b38cf48112308a03ca5a856eaec
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/megasync
tag: vlatest@sha256:04d8c00afb09019389c7142a8cd67a724a6abc388d55c691a56b130f91a928d2
securityContext:
container:

View File

@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: multi-scrobbler
version: 5.1.4
appVersion: 0.6.1
version: 5.1.6
appVersion: latest
description: Track your music listening history from many sources and record to many scrobble clients.
home: https://truecharts.org/charts/stable/multi-scrobbler
icon: https://truecharts.org/img/hotlink-ok/chart-icons/multi-scrobbler.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/multi-scrobbler
- https://github.com/truecharts/containers/tree/master/mirrormulti-scrobbler
- https://github.com/truecharts/charts/tree/master/charts/stable/multi-scrobbler
- https://hub.docker.com/r/foxxmd/multi-scrobbler
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- multi-scrobbler
- Network-Web
- MediaServer-Music
- multi-scrobbler
- Network-Web
- MediaServer-Music
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: Network-Web
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: Network-Web
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: foxxmd/multi-scrobbler
tag: latest@05b72788b63ad0bd02286adccd641a721d65a0d886078f1c69a04602aeb15902
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/multi-scrobbler
tag: v0.6.1@sha256:a08454006d704a1ca96a6dcb89f28556b636c5f131f58eca37014d54bfd74474
securityContext:
container:

View File

@@ -1,48 +1,47 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: nextcloud
version: 28.1.6
version: 28.1.7
appVersion: 28.0.1
description: A private cloud server that puts the control and security of your own data back into your hands.
home: https://truecharts.org/charts/stable/nextcloud
icon: https://truecharts.org/img/hotlink-ok/chart-icons/nextcloud.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/nextcloud
- https://hub.docker.com/r/nginxinc/nginx-unprivileged
- https://github.com/nextcloud/helm
- https://github.com/nextcloud/docker
- https://github.com/nextcloud/docker
- https://github.com/truecharts/charts/tree/master/charts/stable/nextcloud
- https://github.com/nextcloud/helm
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- nextcloud
- storage
- http
- web
- php
- nextcloud
- storage
- http
- web
- php
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: cloud
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: cloud
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
type: application

View File

@@ -1,5 +1,5 @@
image:
repository: tccr.io/truecharts/nextcloud-fpm
repository: tccr.io/tccr/nextcloud-fpm
pullPolicy: IfNotPresent
tag: v28.0.1@sha256:41f597b1bf8a1d924d4246f2d4af52704fcab4464ca50dee6b5db930ebc50a18
nginxImage:
@@ -7,11 +7,11 @@ nginxImage:
pullPolicy: IfNotPresent
tag: 1.25.3@sha256:f67dc757811b9140d83408152cf9dc9296ad4f6b7d1ffb87874ad4759842e2be
imaginaryImage:
repository: tccr.io/truecharts/nextcloud-imaginary
repository: tccr.io/tccr/nextcloud-imaginary
pullPolicy: IfNotPresent
tag: v20230401@sha256:6a227d1b0200d29f25028e07b8852f60e3d91a5814048933e70eccee749dc04c
hpbImage:
repository: tccr.io/truecharts/nextcloud-push-notify
repository: tccr.io/tccr/nextcloud-push-notify
pullPolicy: IfNotPresent
tag: v0.6.3@sha256:b9c35ab123354eeac3996e361f8c30b8e4de6d2ccd69e5179a7c2a101a67b46f
clamavImage:

View File

@@ -1,41 +1,40 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: ombi
version: 17.1.4
version: 17.1.5
appVersion: 4.43.10
description: Want a Movie or TV Show on Plex or Emby? Use Ombi!
home: https://truecharts.org/charts/stable/ombi
icon: https://truecharts.org/img/hotlink-ok/chart-icons/ombi.png
deprecated: false
sources:
- https://github.com/tidusjar/Ombi
- https://github.com/truecharts/charts/tree/master/charts/stable/ombi
- https://github.com/truecharts/containers/tree/master/mirrorombi
- https://github.com/tidusjar/Ombi
- https://github.com/truecharts/charts/tree/master/charts/stable/ombi
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- ombi
- plex
- emby
- sonarr
- radarr
- couchpotato
- ombi
- plex
- emby
- sonarr
- radarr
- couchpotato
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: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
type: application

View File

@@ -1,5 +1,5 @@
image:
repository: tccr.io/truecharts/ombi
repository: tccr.io/tccr/ombi
pullPolicy: IfNotPresent
tag: v4.43.10@sha256:bd0f1b0af7ddda20a369999901aa0016dc85ea94fc9fbe29be6481936a80264a
service:

View File

@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: openbooks
version: 3.1.4
version: 3.1.6
appVersion: 4.5.0
description: IRC Highway eBook Downloads.
home: https://truecharts.org/charts/incubator/openbooks
icon: https://truecharts.org/img/hotlink-ok/chart-icons/openbooks.png
deprecated: false
sources:
- https://github.com/evan-buss/openbooks
- https://github.com/truecharts/charts/tree/master/charts/incubator/openbooks
- https://github.com/truecharts/containers/tree/master/mirroropenbooks
- https://github.com/truecharts/charts/tree/master/charts/incubator/openbooks
- https://hub.docker.com/r/evanbuss/openbooks
- https://github.com/evan-buss/openbooks
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- openbooks
- media
- openbooks
- media
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: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/openbooks
repository: evanbuss/openbooks
tag: 4.5.0@3f2e59a75b68950d57cfec5dc2b1b31d6c6b02706097c70b5438499b59fbdea2
pullPolicy: IfNotPresent
tag: 4.5.0@sha256:fe1b693d63397e01a5673b8b16180539c1cb952abfe4ebfb58d0950ab9886adc
securityContext:
container:

View File

@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: pastey
version: 5.1.4
version: 5.1.6
appVersion: 0.5.1
description: A lightweight, self-hosted paste platform.
home: https://truecharts.org/charts/stable/pastey
icon: https://truecharts.org/img/hotlink-ok/chart-icons/pastey.png
deprecated: false
sources:
- https://github.com/Cesura/pastey
- https://github.com/truecharts/charts/tree/master/charts/stable/pastey
- https://github.com/truecharts/containers/tree/master/mirrorpastey-slim
- https://github.com/Cesura/pastey
- https://github.com/truecharts/charts/tree/master/charts/stable/pastey
- https://hub.docker.com/r/cesura/pastey
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- pastey
- Productivity
- Tools-Utilities
- pastey
- Productivity
- Tools-Utilities
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: Productivity
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: Productivity
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
type: application

View File

@@ -1,11 +1,11 @@
image:
repository: cesura/pastey
tag: 0.5.1@4c4f6e7a31f574a2034e0807bf874e03e350c8931d4477521fae2b3f3e2aecfe
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/pastey
tag: v0.5.1@sha256:cc7d7e848fb023bcc1bf82a568421d2fcb5bd29eb23a5694c925e71662e725ab
slimImage:
repository: cesura/pastey
tag: 0.5.1-slim@dc994c07aa45ce94e7f67958c4d03a6dac95f56427e7113500f0e88a258d3b13
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/pastey-slim
tag: v0.5.1@sha256:acde8ecaf0216a57e1ee4e449884a09b9d8493bcb69185ed74436489dabbece5
securityContext:
container:

View File

@@ -1,39 +1,39 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: photostructure
version: 5.1.4
appVersion: 2.1.0
version: 5.1.6
appVersion: 2.1.0-alpha.7
description: PhotoStructure is your new home for all your photos and videos.
home: https://truecharts.org/charts/incubator/photostructure
icon: https://truecharts.org/img/hotlink-ok/chart-icons/photostructure.png
deprecated: false
sources:
- https://github.com/photostructure/photostructure-for-servers
- https://github.com/truecharts/charts/tree/master/charts/incubator/photostructure
- https://github.com/truecharts/containers/tree/master/mirrorphotostructure
- https://github.com/photostructure/photostructure-for-servers
- https://github.com/truecharts/charts/tree/master/charts/incubator/photostructure
- https://hub.docker.com/r/photostructure/server
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- photostructure
- MediaApp-Photos
- MediaServer-Video
- MediaServer-Photos
- photostructure
- MediaApp-Photos
- MediaServer-Video
- MediaServer-Photos
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: MediaApp-Photos
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: MediaApp-Photos
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: photostructure/server
tag: v2.1.0-alpha.7@ccd309179a5aa61d7601752bc79bf6304cc4257c907a614812ddaef8f422cb54
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/photostructure
tag: v2.1.0@sha256:0c75885bdbb8bd64826af1ad36c12b3533aa6317cfbad2be4c5205368014ad80
securityContext:
container:

View File

@@ -1,36 +1,36 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: plex-meta-manager
version: 5.1.4
version: 5.1.6
appVersion: 1.19.1
description: Python script to update metadata and automatically build collections.
home: https://truecharts.org/charts/incubator/plex-meta-manager
icon: https://truecharts.org/img/hotlink-ok/chart-icons/plex-meta-manager.png
deprecated: false
sources:
- https://github.com/meisnate12/Plex-Meta-Manager
- https://github.com/truecharts/charts/tree/master/charts/incubator/plex-meta-manager
- https://github.com/truecharts/containers/tree/master/mirrorplex-meta-manager
- https://github.com/truecharts/charts/tree/master/charts/incubator/plex-meta-manager
- https://hub.docker.com/r/meisnate12/plex-meta-manager
- https://github.com/meisnate12/Plex-Meta-Manager
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- plex-meta-manager
- plex-meta-manager
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: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: media
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/plex-meta-manager
repository: meisnate12/plex-meta-manager
tag: v1.19.1@25dd08a1940e7c26617d50fe24197d2986fe6857c50f6d12f6991d01e4dc425c
pullPolicy: IfNotPresent
tag: v1.19.1@sha256:f9f0f35b772201e98be32370f93b2557fad3a5b381406165896186ab99ea1382
securityContext:
container:

View File

@@ -1,42 +1,42 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: plex-playlist-sync
version: 2.1.4
version: 2.1.6
appVersion: latest
description: Sync your Spotify and Deezer playlists to your Plex server.
home: https://truecharts.org/charts/incubator/plex-playlist-sync
icon: https://truecharts.org/img/hotlink-ok/chart-icons/plex-playlist-sync.png
deprecated: false
sources:
- https://github.com/truecharts/containers/tree/master/mirrorplex-playlist-sync
- https://github.com/rnagabhyrava/plex-playlist-sync
- https://github.com/truecharts/charts/tree/master/charts/incubator/plex-playlist-sync
- https://hub.docker.com/r/rnagabhyrava/plexplaylistsync
- https://github.com/rnagabhyrava/plex-playlist-sync
- https://github.com/truecharts/charts/tree/master/charts/incubator/plex-playlist-sync
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- plex-playlist-sync
- Spotify
- Deezer
- Tools-Utilities
- MediaApp-Other
- MediaApp-Video
- MediaServer-Video
- plex-playlist-sync
- Spotify
- Deezer
- Tools-Utilities
- MediaApp-Other
- MediaApp-Video
- MediaServer-Video
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: Tools-Utilities
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: Tools-Utilities
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: rnagabhyrava/plexplaylistsync
tag: latest@68b580ff05514eab0735a83adb1b8873427435714c8b303c08cf335ce4e892dc
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/plex-playlist-sync
tag: latest@sha256:82e3431659be3ac051715e1e63e79780cb0b8ff105bd6cc427f4e21cd4b2b58d
securityContext:
container:

View File

@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: plextraktsync
version: 6.1.4
version: 6.1.6
appVersion: 0.27.11
description: Two-way-sync between trakt.tv and Plex Media Server.
home: https://truecharts.org/charts/incubator/plextraktsync
icon: https://truecharts.org/img/hotlink-ok/chart-icons/plextraktsync.png
deprecated: false
sources:
- https://github.com/Taxel/PlexTraktSync
- https://github.com/truecharts/charts/tree/master/charts/incubator/plextraktsync
- https://github.com/truecharts/containers/tree/master/mirrorplextraktsync
- https://github.com/truecharts/charts/tree/master/charts/incubator/plextraktsync
- https://ghcr.io/taxel/plextraktsync
- https://github.com/Taxel/PlexTraktSync
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- plextraktsync
- Tools-Utilities
- MediaApp-Other
- plextraktsync
- Tools-Utilities
- MediaApp-Other
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: Tools-Utilities
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: Tools-Utilities
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: ghcr.io/taxel/plextraktsync
tag: 0.27.11@ccc9d992339e3bf2754f1b4f5c6419e2b05a39a191c265669adefd9bf7b1607c
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/plextraktsync
tag: v0.27.11@sha256:74efbebce5bf060c4e7b6c9936e6c551944957a25f388c70e0d1254e516a0994
securityContext:
container:

View File

@@ -1,37 +1,36 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: pocketmine-mp
version: 2.1.4
version: 2.1.5
appVersion: 5.8.2
description: A server software for Minecraft Bedrock Edition in PHP.
home: https://truecharts.org/charts/incubator/pocketmine-mp
icon: https://truecharts.org/img/hotlink-ok/chart-icons/pocketmine-mp.png
deprecated: false
sources:
- https://github.com/pmmp/PocketMine-MP
- https://github.com/truecharts/charts/tree/master/charts/incubator/pocketmine-mp
- https://github.com/truecharts/containers/tree/master/mirrorpocketmine-mp
- https://github.com/pmmp/PocketMine-MP
- https://github.com/truecharts/charts/tree/master/charts/incubator/pocketmine-mp
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- pocketmine-mp
- minecraft
- pocketmine-mp
- minecraft
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: games
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: games
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,5 +1,5 @@
image:
repository: tccr.io/truecharts/pocketmine-mp
repository: tccr.io/tccr/pocketmine-mp
pullPolicy: IfNotPresent
tag: v5.8.2@sha256:85b5b10f86044282ec1f1707659419347e1e48e899b351196b81e376e7fd38c0

View File

@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: promcord
version: 10.1.4
version: 10.1.5
appVersion: latest
description: Discord bot that provides metrics from a Discord server
home: https://truecharts.org/charts/stable/promcord
icon: https://truecharts.org/img/hotlink-ok/chart-icons/promcord.png
deprecated: false
sources:
- https://github.com/nimarion/promcord
- https://github.com/truecharts/charts/tree/master/charts/stable/promcord
- https://hub.docker.com/r/biospheere/promcord
- https://github.com/nimarion/promcord
- https://github.com/truecharts/charts/tree/master/charts/stable/promcord
- https://hub.docker.com/r/biospheere/promcord
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- promcord
- discord
- metrics
- promcord
- discord
- metrics
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: metrics
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
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: stable
type: application

View File

@@ -1,5 +1,5 @@
image:
repository: tccr.io/truecharts/whoami
repository: tccr.io/tccr/whoami
pullPolicy: IfNotPresent
tag: v1.10.1@sha256:36d22e4b8a154919b819bd7283531783eca9076972e8fc631649bb7eade770d9

View File

@@ -1,36 +1,36 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: proxmox-backup-server
version: 2.1.4
version: 2.1.6
appVersion: 3.0.2
description: Container for proxmox backup server
home: https://truecharts.org/charts/incubator/proxmox-backup-server
icon: https://truecharts.org/img/hotlink-ok/chart-icons/proxmox-backup-server.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/proxmox-backup-server
- https://github.com/truecharts/containers/tree/master/mirrorproxmox-backup-server
- https://github.com/truecharts/charts/tree/master/charts/incubator/proxmox-backup-server
- https://hub.docker.com/r/ayufan/proxmox-backup-server
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- proxmox-backup-server
- pbs
- proxmox-backup-server
- pbs
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: test
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: test
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,6 +1,6 @@
image:
repository: tccr.io/truecharts/proxmox-backup-server
tag: v3.0.2@sha256:31e31c6bc27ca6e682eb2819ba69bec7d20bfa928e5642123e620f9be3277d3c
repository: ayufan/proxmox-backup-server
tag: v3.0.2@7466aa309840f73dbccb6c0f237748384f95273ee1e61f07674c86e3238c006a
pullPolicy: IfNotPresent
securityContext:

View File

@@ -1,36 +1,36 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: rimgo
version: 5.1.4
version: 5.1.6
appVersion: latest
description: Alternative Imgur front-end
home: https://truecharts.org/charts/incubator/rimgo
icon: https://truecharts.org/img/hotlink-ok/chart-icons/rimgo.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/rimgo
- https://github.com/truecharts/containers/tree/master/mirrorrimgo
- https://github.com/truecharts/charts/tree/master/charts/incubator/rimgo
- https://quay.io/pussthecatorg/rimgo
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- rimgo
- Network-Web
- rimgo
- Network-Web
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: Network-Web
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: Network-Web
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: quay.io/pussthecatorg/rimgo
tag: latest@c6cd14760d42670acb57e8bccdc5c34a2e9209a39276b7f568352c3e503e0d97
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/rimgo
tag: latest@sha256:fce81544a27a9e727bfb807cb2b4d8b9e578715c69fbbde4de93627dc19fe470
persistence: {}
env:

View File

@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: smtp-relay
version: 2.1.4
version: 2.1.6
appVersion: 0.5.2
description: A SMTP service for relaying emails.
home: https://truecharts.org/charts/incubator/smtp-relay
icon: https://truecharts.org/img/hotlink-ok/chart-icons/smtp-relay.png
deprecated: false
sources:
- https://github.com/ix-ai/smtp
- https://github.com/truecharts/charts/tree/master/charts/incubator/smtp-relay
- https://github.com/truecharts/containers/tree/master/mirrorsmtp-relay
- https://github.com/ix-ai/smtp
- https://github.com/truecharts/charts/tree/master/charts/incubator/smtp-relay
- https://ghcr.io/ix-ai/smtp
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- smtp-relay
- smtp
- smtp-relay
- smtp
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: smtp
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: smtp
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/smtp-relay
repository: ghcr.io/ix-ai/smtp
pullPolicy: IfNotPresent
tag: v0.5.2@sha256:ad5044ebdec5d2e75d08021f333b742328c2554e9807894031e328321433f049
tag: v0.5.2@sha256:73629c8a2e0896d4591b6b3e884eb17bac14007a2352d9e977cf5706a5c33a9a
securityContext:
container:

View File

@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: sonsoftheforest
version: 2.1.4
appVersion: latest
version: 2.1.6
appVersion: sonsoftheforest
description: A custom SteamCMD chart that runs Sons Of The Forest Server.
home: https://truecharts.org/charts/incubator/sonsoftheforest
icon: https://truecharts.org/img/hotlink-ok/chart-icons/sonsoftheforest.png
deprecated: false
sources:
- https://github.com/ich777/docker-steamcmd-server/tree/sonsoftheforest
- https://github.com/truecharts/charts/tree/master/charts/incubator/sonsoftheforest
- https://github.com/truecharts/containers/tree/master/mirrorsonsoftheforest
- https://hub.docker.com/r/ich777/steamcmd
- https://github.com/ich777/docker-steamcmd-server/tree/sonsoftheforest
- https://github.com/truecharts/charts/tree/master/charts/incubator/sonsoftheforest
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- sonsoftheforest
- GameServers
- sonsoftheforest
- GameServers
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: GameServers
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: GameServers
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/sonsoftheforest
repository: ich777/steamcmd
tag: sonsoftheforest@8b7590087f32f15265c35a32227c123d695b1cff14132c5fb27b62da93aa51f5
pullPolicy: IfNotPresent
tag: latest@sha256:df2acf5c7112f5e53b4be5eaa550e6396ae284994d92384ec4a5305d8cf8abca
securityContext:
container:

View File

@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: steam-headless
version: 2.1.4
version: 2.1.6
appVersion: latest
description: A Headless Steam chart.
home: https://truecharts.org/charts/incubator/steam-headless
icon: https://truecharts.org/img/hotlink-ok/chart-icons/steam-headless.png
deprecated: false
sources:
- https://github.com/Steam-Headless/docker-steam-headless
- https://github.com/truecharts/charts/tree/master/charts/incubator/steam-headless
- https://github.com/truecharts/containers/tree/master/mirrorsteam-headless
- https://hub.docker.com/r/josh5/steam-headless
- https://github.com/Steam-Headless/docker-steam-headless
- https://github.com/truecharts/charts/tree/master/charts/incubator/steam-headless
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- steam-headless
- games
- steam-headless
- games
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: games
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: games
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/steam-headless
repository: josh5/steam-headless
tag: latest@129e798a62a48116f8bd3fc53c5e2324f0177f27afd7cff234e0897349523129
pullPolicy: IfNotPresent
tag: vlatest@sha256:e78bb73f080ad1608a54fe45185e923b908e4889eac40809aaa5bb1294767580
securityContext:
container:

View File

@@ -1,36 +1,36 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: stun-turn-server
version: 5.1.4
version: 5.1.6
appVersion: latest
description: This is a Basic STUN & TURN server that was mainly created for Nextcloud Talk.
home: https://truecharts.org/charts/stable/stun-turn-server
icon: https://truecharts.org/img/hotlink-ok/chart-icons/stun-turn-server.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/stun-turn-server
- https://github.com/truecharts/containers/tree/master/mirrorstun-turn-server
- https://github.com/truecharts/charts/tree/master/charts/stable/stun-turn-server
- https://hub.docker.com/r/ich777/stun-turn-server
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- stun-turn-server
- Network
- stun-turn-server
- Network
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: Network
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable
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: stable
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: ich777/stun-turn-server
tag: latest@fe6e439818ec95920998c134f631545f74575b92b3c4d8a2f15ab9800845fc2d
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/stun-turn-server
tag: latest@sha256:459d8f624ae06708f245e51a25afd904a3b83242630913976356ee754925391f
service:
main:

View File

@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: tasmoadmin
version: 6.1.4
appVersion: 3.2.0
version: 6.1.6
appVersion: 3.1.2
description: A administrative platform for devices flashed with Tasmota.
home: https://truecharts.org/charts/incubator/tasmoadmin
icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmoadmin.png
deprecated: false
sources:
- https://github.com/truecharts/containers/tree/master/mirrortasmoadmin
- https://github.com/TasmoAdmin/TasmoAdmin
- https://github.com/truecharts/charts/tree/master/charts/incubator/tasmoadmin
- https://github.com/TasmoAdmin/TasmoAdmin
- https://github.com/truecharts/charts/tree/master/charts/incubator/tasmoadmin
- https://ghcr.io/tasmoadmin/tasmoadmin
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- tasmoadmin
- HomeAutomation
- Network-Management
- tasmoadmin
- HomeAutomation
- Network-Management
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: HomeAutomation
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: HomeAutomation
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: ghcr.io/tasmoadmin/tasmoadmin
tag: v3.1.2@0c50bda69ced49e8c1e6f765094434f4355a062fb61a5c3477e71d8ccc4b9bc9
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/tasmoadmin
tag: v3.2.0@sha256:9ba3cbe28414dd61e03b9d36c29c4792f6fde11dbe0e130f9186760d5afe6c29
securityContext:
container:

View File

@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: tasmobackup
version: 5.1.4
appVersion: latest
version: 5.1.6
appVersion: 1.05.00
description: backup all your tasmota devices in one place.
home: https://truecharts.org/charts/incubator/tasmobackup
icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmobackup.png
deprecated: false
sources:
- https://github.com/truecharts/containers/tree/master/mirrortasmobackup
- https://github.com/danmed/TasmoBackupV1
- https://github.com/truecharts/charts/tree/master/charts/incubator/tasmobackup
- https://hub.docker.com/r/danmed/tasmobackupv1
- https://github.com/danmed/TasmoBackupV1
- https://github.com/truecharts/charts/tree/master/charts/incubator/tasmobackup
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- tasmobackup
- HomeAutomation
- Network-Management
- tasmobackup
- HomeAutomation
- Network-Management
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: HomeAutomation
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: HomeAutomation
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,10 +1,11 @@
image:
repository: danmed/tasmobackupv1
tag: 1.05.00@65cd95d00b1476c4e6c38530ea8eaa0d59b9983e24b3f95639b7c79a0ff194b8
pullPolicy: IfNotPresent
env:
DBNAME: data/tasmobackup
DBTYPE: sqlite
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/tasmobackup
tag: latest@sha256:197cbf9ce71dd849473ea47c09cb60a667d7f80dd456f13123eaca61517d5ff3
securityContext:
container:

View File

@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: tasmocompiler
version: 5.1.4
version: 5.1.6
appVersion: latest
description: TasmoCompiler is a simple web GUI which allows you to compile fantastic Tasmota firmware with your own settings
home: https://truecharts.org/charts/incubator/tasmocompiler
icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmocompiler.png
deprecated: false
sources:
- https://github.com/benzino77/tasmocompiler
- https://github.com/truecharts/charts/tree/master/charts/incubator/tasmocompiler
- https://github.com/truecharts/containers/tree/master/mirrortasmocompiler
- https://github.com/truecharts/charts/tree/master/charts/incubator/tasmocompiler
- https://hub.docker.com/r/benzino77/tasmocompiler
- https://github.com/benzino77/tasmocompiler
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- tasmocompiler
- HomeAutomation
- Tools-Utilities
- tasmocompiler
- HomeAutomation
- Tools-Utilities
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: HomeAutomation
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
max_scale_version: 23.10.2
min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true"
truecharts.org/category: HomeAutomation
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: benzino77/tasmocompiler
tag: latest@d2df0ef394c2b387e8a9a9dc0282fc448148c07f2341ec21a9100a4967e0aee1
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/tasmocompiler
tag: latest@sha256:506e9f54b21eaeca6eb7a5cfdef32640592ad2b05289a2c8b7a32338d8d9ee38
securityContext:
container:

View File

@@ -1,41 +1,41 @@
kubeVersion: ">=1.24.0-0"
kubeVersion: '>=1.24.0-0'
apiVersion: v2
name: traefik-forward-auth
version: 2.1.4
version: 2.1.6
appVersion: latest
description: A minimal forward authentication service that provides OAuth/SSO login and authentication for the traefik reverse proxy/load balancer. An example for a typical setup is included in the source (docs/how-to.md).
home: https://truecharts.org/charts/incubator/traefik-forward-auth
icon: https://truecharts.org/img/hotlink-ok/chart-icons/traefik-forward-auth.png
deprecated: false
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/traefik-forward-auth
- https://github.com/truecharts/containers/tree/master/mirrortraefik-forward-auth
- https://github.com/thomseddon/traefik-forward-auth
- https://github.com/truecharts/charts/tree/master/charts/incubator/traefik-forward-auth
- https://hub.docker.com/r/thomseddon/traefik-forward-auth
- https://github.com/thomseddon/traefik-forward-auth
maintainers:
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
- name: TrueCharts
email: info@truecharts.org
url: https://truecharts.org
keywords:
- traefik-forward-auth
- traefik
- forward-auth
- auth
- ingress
- middleware
- traefik-forward-auth
- traefik
- forward-auth
- auth
- ingress
- middleware
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: network
truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator
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: incubator
type: application

View File

@@ -1,7 +1,7 @@
image:
repository: tccr.io/truecharts/traefik-forward-auth
pullPolicy: IfNotPresent
tag: latest@sha256:edd7eb812cb38e59d32b5a00398b57a78506db2390cbe295f5df590a38a5d44e
repository: thomseddon/traefik-forward-auth
tag: latest@b364aa6a4117569163eff793999901f9f5a0c4f7f2da18b4ecbcd140d7b6107b
pullPolicy: IfNotPresente
workload:
main:

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