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
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
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
+26 -156
View File
@@ -145,36 +145,14 @@ jobs:
kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm - name: Prep Helm
shell: bash
run: | run: |
helm repo add truecharts-deps https://deps.truecharts.org ./.github/scripts/prep_helm.sh
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
- name: Add Dependencies - name: Add Dependencies
shell: bash
run: | run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
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
- name: Run chart-testing (install) - name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade 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 kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm - name: Prep Helm
shell: bash
run: | run: |
helm repo add truecharts-deps https://deps.truecharts.org ./.github/scripts/prep_helm.sh
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
- name: Add Dependencies - name: Add Dependencies
shell: bash
run: | run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
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
- name: Run chart-testing (install) - name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade 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 kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm - name: Prep Helm
shell: bash
run: | run: |
helm repo add truecharts-deps https://deps.truecharts.org ./.github/scripts/prep_helm.sh
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
- name: Add Dependencies - name: Add Dependencies
shell: bash
run: | run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
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
- name: Run chart-testing (install) - name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade 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 kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm - name: Prep Helm
shell: bash
run: | run: |
helm repo add truecharts-deps https://deps.truecharts.org ./.github/scripts/prep_helm.sh
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
- name: Add Dependencies - name: Add Dependencies
shell: bash
run: | run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
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
- name: Run chart-testing (install) - name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade 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 kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm - name: Prep Helm
shell: bash
run: | run: |
helm repo add truecharts-deps https://deps.truecharts.org ./.github/scripts/prep_helm.sh
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
- name: Add Dependencies - name: Add Dependencies
shell: bash
run: | run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
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
- name: Run chart-testing (install) - name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade 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 kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true
- name: Prep Helm - name: Prep Helm
shell: bash
run: | run: |
helm repo add truecharts-deps https://deps.truecharts.org ./.github/scripts/prep_helm.sh
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
- name: Add Dependencies - name: Add Dependencies
shell: bash
run: | run: |
if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}"
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
- name: Run chart-testing (install) - name: Run chart-testing (install)
run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade
+25 -26
View File
@@ -1,39 +1,38 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: traefik name: traefik
version: 25.1.4 version: 25.1.5
appVersion: 2.10.5 appVersion: 2.10.5
description: Traefik is a flexible reverse proxy and Ingress Provider. description: Traefik is a flexible reverse proxy and Ingress Provider.
home: https://truecharts.org/charts/enterprise/traefik home: https://truecharts.org/charts/enterprise/traefik
icon: https://truecharts.org/img/hotlink-ok/chart-icons/traefik.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/traefik.png
deprecated: false deprecated: false
sources: sources:
- https://traefik.io/ - https://traefik.io/
- https://github.com/traefik/traefik - https://github.com/traefik/traefik
- https://github.com/traefik/traefik-helm-chart - https://github.com/traefik/traefik-helm-chart
- https://github.com/truecharts/charts/tree/master/charts/enterprise/traefik - https://github.com/truecharts/charts/tree/master/charts/enterprise/traefik
- https://github.com/truecharts/containers/tree/master/mirrortraefik
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- traefik - traefik
- ingress - ingress
dependencies: dependencies:
- name: common - name: common
version: 17.2.19 version: 17.2.19
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: network truecharts.org/category: network
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: enterprise truecharts.org/train: enterprise
type: application type: application
+1 -1
View File
@@ -1,5 +1,5 @@
image: image:
repository: tccr.io/truecharts/traefik repository: tccr.io/tccr/traefik
tag: v2.10.5@sha256:b277733b5b8d7f9d2761813d97e161c1f64ec77960f9c06adde13868efbc8dce tag: v2.10.5@sha256:b277733b5b8d7f9d2761813d97e161c1f64ec77960f9c06adde13868efbc8dce
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
manifestManager: manifestManager:
+31 -32
View File
@@ -1,45 +1,44 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: velero name: velero
version: 3.1.4 version: 3.1.5
appVersion: latest appVersion: latest
description: Velero is a kubernetes-native backup solution description: Velero is a kubernetes-native backup solution
home: https://truecharts.org/charts/incubator/velero home: https://truecharts.org/charts/incubator/velero
icon: https://truecharts.org/img/hotlink-ok/chart-icons/velero.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/velero.png
deprecated: false deprecated: false
sources: sources:
- https://cert-manager.io/ - https://cert-manager.io/
- https://github.com/cert-manager - https://github.com/cert-manager
- https://github.com/truecharts/charts/tree/master/charts/incubator/velero - https://github.com/truecharts/charts/tree/master/charts/incubator/velero
- https://github.com/truecharts/containers/tree/master/mirroralpine
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- velero - velero
- backup - backup
dependencies: dependencies:
- name: common - name: common
version: 17.2.19 version: 17.2.19
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
- name: velero - name: velero
version: 5.2.0 version: 5.2.0
repository: https://vmware-tanzu.github.io/helm-charts repository: https://vmware-tanzu.github.io/helm-charts
condition: "" condition: ""
alias: velero alias: velero
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: operators truecharts.org/category: operators
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+1 -1
View File
@@ -1,6 +1,6 @@
image: image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/alpine repository: tccr.io/tccr/alpine
tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9
manifestManager: manifestManager:
enabled: false enabled: false
+31 -32
View File
@@ -1,45 +1,44 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: csi-driver-nfs name: csi-driver-nfs
version: 1.0.12 version: 1.0.13
appVersion: latest appVersion: latest
description: csi-driver-nfs is a nfs CSI driver for kubernetes description: csi-driver-nfs is a nfs CSI driver for kubernetes
home: https://truecharts.org/charts/incubator/csi-driver-nfs home: https://truecharts.org/charts/incubator/csi-driver-nfs
icon: https://truecharts.org/img/hotlink-ok/chart-icons/csi-driver-nfs.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/csi-driver-nfs.png
deprecated: false deprecated: false
sources: sources:
- https://cert-manager.io/ - https://cert-manager.io/
- https://github.com/cert-manager - https://github.com/cert-manager
- https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-nfs - https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-nfs
- https://github.com/truecharts/containers/tree/master/mirroralpine
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- csi-driver-nfs - csi-driver-nfs
- backup - backup
dependencies: dependencies:
- name: common - name: common
version: 17.2.18 version: 17.2.18
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
- name: csi-driver-nfs - name: csi-driver-nfs
version: v4.5.0 version: v4.5.0
repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts
condition: "" condition: ""
alias: csi-driver-nfs alias: csi-driver-nfs
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "false" truecharts.org/SCALE-support: "false"
truecharts.org/category: CSI truecharts.org/category: CSI
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+1 -1
View File
@@ -1,6 +1,6 @@
image: image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/alpine repository: tccr.io/tccr/alpine
tag: latest@sha256:17cd77e25d3fa829d168caec4db7bb5b52ceeb935d8ca0d1180de6f615553dc4 tag: latest@sha256:17cd77e25d3fa829d168caec4db7bb5b52ceeb935d8ca0d1180de6f615553dc4
manifestManager: manifestManager:
enabled: false enabled: false
+29 -29
View File
@@ -1,40 +1,40 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: pushbits-server name: pushbits-server
version: 0.0.8 version: 0.0.9
appVersion: 0.10.1 appVersion: 0.10.2
description: Send push notifications via a simple web API, and delivers them to your users. description: Send push notifications via a simple web API, and delivers them to your users.
home: https://truecharts.org/charts/incubator/pushbits-server home: https://truecharts.org/charts/incubator/pushbits-server
icon: https://truecharts.org/img/hotlink-ok/chart-icons/pushbits-server.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/pushbits-server.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/pushbits/server - https://github.com/pushbits/server
- https://github.com/truecharts/charts/tree/master/charts/incubator/pushbits-server - https://github.com/truecharts/charts/tree/master/charts/incubator/pushbits-server
- https://github.com/truecharts/containers/tree/master/mirrorpushbits-server - https://ghcr.io/pushbits/server
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- pushbits-server - 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: |
- notifications - notifications
truecharts.org/category: unsorted - matrix
truecharts.org/max_helm_version: "3.13" dependencies:
truecharts.org/min_helm_version: "3.12" - name: common
truecharts.org/train: incubator 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 type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/pushbits-server repository: ghcr.io/pushbits/server
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v0.10.1@sha256:6020128d995a0054b7104f5a383408a773c5914dbc2d073a71501524f8b79b87 tag: 0.10.2@sha256:59de6e364715e5a5daf07131dd5748ce24c3a8ef0d3b57a81c5d8d973732faf5
service: service:
main: main:
+32 -33
View File
@@ -1,46 +1,45 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: cert-manager name: cert-manager
version: 3.1.5 version: 3.1.6
appVersion: latest appVersion: latest
description: Cert-Manager is a kubernetes-aware certificate manager description: Cert-Manager is a kubernetes-aware certificate manager
home: https://truecharts.org/charts/operators/cert-manager home: https://truecharts.org/charts/operators/cert-manager
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cert-manager.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/cert-manager.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/operators/cert-manager - https://github.com/cert-manager
- 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/operators/cert-manager
- https://cert-manager.io/
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- cert-manager - cert-manager
- certificates - certificates
- security - security
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
- name: cert-manager - name: cert-manager
version: v1.13.3 version: v1.13.3
repository: https://charts.jetstack.io repository: https://charts.jetstack.io
condition: "" condition: ""
alias: certmanager alias: certmanager
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: operators truecharts.org/category: operators
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: operators truecharts.org/train: operators
type: application type: application
+1 -1
View File
@@ -1,5 +1,5 @@
image: image:
repository: tccr.io/truecharts/alpine repository: tccr.io/tccr/alpine
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9
+32 -33
View File
@@ -1,46 +1,45 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: cloudnative-pg name: cloudnative-pg
version: 5.2.5 version: 5.2.6
appVersion: latest appVersion: latest
description: CloudNativePG is a clustered postgresql database operator description: CloudNativePG is a clustered postgresql database operator
home: https://truecharts.org/charts/operators/cloudnative-pg home: https://truecharts.org/charts/operators/cloudnative-pg
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cloudnative-pg.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/cloudnative-pg.png
deprecated: false deprecated: false
sources: sources:
- https://cloudnative-pg.io/ - https://github.com/cloudnative-pg
- https://github.com/cloudnative-pg - https://github.com/truecharts/charts/tree/master/charts/operators/cloudnative-pg
- https://github.com/truecharts/charts/tree/master/charts/operators/cloudnative-pg - https://cloudnative-pg.io/
- https://github.com/truecharts/containers/tree/master/mirroralpine
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- database - database
- cloudnative-pg - cloudnative-pg
- cnpg - cnpg
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
- name: cloudnative-pg - name: cloudnative-pg
version: 0.20.0 version: 0.20.0
repository: https://cloudnative-pg.github.io/charts repository: https://cloudnative-pg.github.io/charts
condition: "" condition: ""
alias: cloudnative-pg alias: cloudnative-pg
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: operators truecharts.org/category: operators
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: operators truecharts.org/train: operators
type: application type: application
+1 -1
View File
@@ -1,5 +1,5 @@
image: image:
repository: tccr.io/truecharts/alpine repository: tccr.io/tccr/alpine
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9
+31 -32
View File
@@ -1,45 +1,44 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: csi-driver-smb name: csi-driver-smb
version: 2.1.5 version: 2.1.6
appVersion: latest appVersion: latest
description: csi-driver-smb is a smb CSI driver for kubernetes description: csi-driver-smb is a smb CSI driver for kubernetes
home: https://truecharts.org/charts/incubator/csi-driver-smb home: https://truecharts.org/charts/incubator/csi-driver-smb
icon: https://truecharts.org/img/hotlink-ok/chart-icons/csi-driver-smb.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/csi-driver-smb.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/cert-manager - https://github.com/cert-manager
- https://cert-manager.io/ - https://cert-manager.io/
- https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-smb - https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-smb
- https://github.com/truecharts/containers/tree/master/mirroralpine
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- csi-driver-smb - csi-driver-smb
- backup - backup
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
- name: csi-driver-smb - name: csi-driver-smb
version: v1.13.0 version: v1.13.0
repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts
condition: "" condition: ""
alias: csi-driver-smb alias: csi-driver-smb
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "false" truecharts.org/SCALE-support: "false"
truecharts.org/category: CSI truecharts.org/category: CSI
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+1 -1
View File
@@ -1,6 +1,6 @@
image: image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/alpine repository: tccr.io/tccr/alpine
tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9
manifestManager: manifestManager:
enabled: false enabled: false
+31 -32
View File
@@ -1,45 +1,44 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: metallb name: metallb
version: 13.1.5 version: 13.1.6
appVersion: latest appVersion: latest
description: A network load-balancer implementation for Kubernetes using standard routing protocols description: A network load-balancer implementation for Kubernetes using standard routing protocols
home: https://truecharts.org/charts/operators/metallb home: https://truecharts.org/charts/operators/metallb
icon: https://truecharts.org/img/hotlink-ok/chart-icons/metallb.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/metallb.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/metallb/metallb - https://metallb.universe.tf
- https://metallb.universe.tf - https://github.com/truecharts/charts/tree/master/charts/operators/metallb
- https://github.com/truecharts/charts/tree/master/charts/operators/metallb - https://github.com/metallb/metallb
- https://github.com/truecharts/containers/tree/master/mirroralpine
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- metallb - metallb
- loadbalancer - loadbalancer
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
- name: metallb - name: metallb
version: 0.13.12 version: 0.13.12
repository: https://metallb.github.io/metallb repository: https://metallb.github.io/metallb
condition: "" condition: ""
alias: metallb alias: metallb
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: operators truecharts.org/category: operators
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: operators truecharts.org/train: operators
type: application type: application
+1 -1
View File
@@ -1,5 +1,5 @@
image: image:
repository: tccr.io/truecharts/alpine repository: tccr.io/tccr/alpine
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9
+31 -32
View File
@@ -1,45 +1,44 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: openebs name: openebs
version: 2.1.5 version: 2.1.6
appVersion: latest appVersion: latest
description: OpenEBS is a umbrella container storage provisioner description: OpenEBS is a umbrella container storage provisioner
home: https://truecharts.org/charts/incubator/openebs home: https://truecharts.org/charts/incubator/openebs
icon: https://truecharts.org/img/hotlink-ok/chart-icons/openebs.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/openebs.png
deprecated: false deprecated: false
sources: sources:
- https://cert-manager.io/ - https://cert-manager.io/
- https://github.com/cert-manager - https://github.com/cert-manager
- https://github.com/truecharts/charts/tree/master/charts/incubator/openebs - https://github.com/truecharts/charts/tree/master/charts/incubator/openebs
- https://github.com/truecharts/containers/tree/master/mirroralpine
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- openebs - openebs
- backup - backup
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
- name: openebs - name: openebs
version: 3.10.0 version: 3.10.0
repository: https://openebs.github.io/charts repository: https://openebs.github.io/charts
condition: "" condition: ""
alias: openebs alias: openebs
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "false" truecharts.org/SCALE-support: "false"
truecharts.org/category: CSI truecharts.org/category: CSI
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+1 -1
View File
@@ -1,6 +1,6 @@
image: image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/alpine repository: tccr.io/tccr/alpine
tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9
manifestManager: manifestManager:
enabled: false enabled: false
+25 -25
View File
@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: prometheus-operator name: prometheus-operator
version: 3.1.5 version: 3.1.6
appVersion: 0.69.1 appVersion: 0.69.1
description: Prometheus Operator is an operator for prometheus description: Prometheus Operator is an operator for prometheus
home: https://truecharts.org/charts/operators/prometheus-operator home: https://truecharts.org/charts/operators/prometheus-operator
icon: https://truecharts.org/img/hotlink-ok/chart-icons/prometheus-operator.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/prometheus-operator.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/prometheus-operator - https://github.com/truecharts/charts/tree/master/charts/operators/prometheus-operator
- https://github.com/truecharts/charts/tree/master/charts/operators/prometheus-operator - https://quay.io/prometheus-operator/prometheus-config-reloader
- https://github.com/truecharts/containers/tree/master/mirrorkube-webhook-certgen - https://github.com/prometheus-operator
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- operator - operator
- prometheus - prometheus
- metics - metics
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: operators truecharts.org/category: operators
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: operators truecharts.org/train: operators
type: application type: application
@@ -1,21 +1,21 @@
image: image:
repository: tccr.io/truecharts/prometheus-operator repository: quay.io/prometheus-operator/prometheus-operator
tag: "v0.69.1@sha256:dc0ad671ec11e5a5b6032a7d36b9451b10f0848f7f0d7203b761de6a1b7c0e99" tag: "v0.70.0@sha256:e76d06ac84abeb466feb9682e1d0385c4e5a463bc023b32446916b640546a289"
pullPolicy: pullPolicy:
configReloaderImage: configReloaderImage:
repository: tccr.io/truecharts/prometheus-config-reloader repository: quay.io/prometheus-operator/prometheus-config-reloader
tag: "v0.69.1@sha256:0eb31dcf295350b906e462113f3c2f274ef38f44f95d0e6bd584fb46320e6327" tag: "v0.70.0@sha256:411cec4bc5e6306804c2d5939c165411a88fb7991c2bd0c3ef4866387f683374"
pullPolicy: pullPolicy:
thanosImage: thanosImage:
repository: tccr.io/truecharts/thanos repository: quay.io/thanos/thanos
tag: "v0.32.5@sha256:2e10c5d3525e9b1b7ca1341240b62ce392a31db5adffa0e4e5b232f784f01f5b" tag: "v0.33.0@sha256:70d2ea73792e2d26a6eb45e0c999fc88e8cebc1ba443ca059e19715231365cc8"
pullPolicy: pullPolicy:
patchImage: patchImage:
repository: tccr.io/truecharts/kube-webhook-certgen repository: registry.k8s.io/ingress-nginx/kube-webhook-certgen
tag: latest@sha256:28c6de4c7fe7527daafd761e2d33aafe1094004e77248fcc674cc6e092da1017 tag: v20221220-controller-v1.5.1-58-g787ea74b6@sha256:4d99688e557396f5baa150e019ff7d5b7334f9b9f9a8dab64038c5c2a006f6b5
pullPolicy: pullPolicy:
workload: workload:
+23 -23
View File
@@ -1,36 +1,36 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: anki-sync-server name: anki-sync-server
version: 5.1.4 version: 5.1.6
appVersion: 1.1.14 appVersion: 1.1.14
description: A cross-platform Anki sync server. description: A cross-platform Anki sync server.
home: https://truecharts.org/charts/incubator/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 icon: https://truecharts.org/img/hotlink-ok/chart-icons/anki-sync-server.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/ankicommunity/anki-devops-services - https://github.com/ankicommunity/anki-devops-services
- https://github.com/truecharts/charts/tree/master/charts/incubator/anki-sync-server - https://github.com/truecharts/charts/tree/master/charts/incubator/anki-sync-server
- https://github.com/truecharts/containers/tree/master/mirroranki-sync-server - https://hub.docker.com/r/ankicommunity/anki-sync-server-rs
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- anki-sync-server - anki-sync-server
dependencies: dependencies:
- name: common - name: common
version: 17.2.19 version: 17.2.19
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: media truecharts.org/category: media
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,6 +1,6 @@
image: image:
repository: tccr.io/truecharts/anki-sync-server repository: ankicommunity/anki-sync-server-rs
tag: v1.1.14@sha256:3951d969ee43c9a0e69394e49111c55a69d4b5784b1cfe121a0151c29dccd811 tag: 1.1.14@sha256:553dbd9600b1580bca34e6ed60c5d8d9fb71f4fb6cdc81d4192f2db15af8ccff
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
securityContext: securityContext:
+24 -24
View File
@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: answer name: answer
version: 2.1.4 version: 2.1.6
appVersion: 1.2.0 appVersion: 1.2.0
description: A Q&A platform software for teams at any scales. description: A Q&A platform software for teams at any scales.
home: https://truecharts.org/charts/incubator/answer home: https://truecharts.org/charts/incubator/answer
icon: https://truecharts.org/img/hotlink-ok/chart-icons/answer.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/answer.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/answerdev/answer - https://github.com/answerdev/answer
- https://github.com/truecharts/charts/tree/master/charts/incubator/answer - https://github.com/truecharts/charts/tree/master/charts/incubator/answer
- https://github.com/truecharts/containers/tree/master/mirroranswer - https://hub.docker.com/r/answerdev/answer
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- answer - answer
- forum - forum
dependencies: dependencies:
- name: common - name: common
version: 17.2.19 version: 17.2.19
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: forum truecharts.org/category: forum
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/answer repository: answerdev/answer
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v1.2.0@sha256:70a578170bca4a7a1040d44cb5ff143d5e9c2c2f32f9d48f1ad4519d61c35451 tag: 1.2.0@sha256:9b7fd1410df5587e56d446741760ecbd63d342c5e50587d3570e33282cf9cd77
service: service:
main: main:
@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: automatic-ripping-machine name: automatic-ripping-machine
version: 2.1.4 version: 2.1.6
appVersion: 2.6.60 appVersion: 2.6.60
description: Automatic Ripping Machine (ARM) Scripts. description: Automatic Ripping Machine (ARM) Scripts.
home: https://truecharts.org/charts/incubator/automatic-ripping-machine home: https://truecharts.org/charts/incubator/automatic-ripping-machine
icon: https://truecharts.org/img/hotlink-ok/chart-icons/automatic-ripping-machine.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/automatic-ripping-machine.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/automatic-ripping-machine/automatic-ripping-machine - 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/charts/tree/master/charts/incubator/automatic-ripping-machine
- https://github.com/truecharts/containers/tree/master/mirrorautomatic-ripping-machine - https://hub.docker.com/r/automaticrippingmachine/automatic-ripping-machine
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- automatic-ripping-machine - automatic-ripping-machine
- media - media
dependencies: dependencies:
- name: common - name: common
version: 17.2.19 version: 17.2.19
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: media truecharts.org/category: media
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/automatic-ripping-machine repository: automaticrippingmachine/automatic-ripping-machine
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v2.6.60@sha256:bf79fee03b4ef8867ccbee6448748bf58b86a59c2400dd9beb5a4b926c6e7c10 tag: 2.6.60@sha256:4598de30009b6310fcd877f9141824b3d8ce96c6b1825da734d4c31feeb03651
securityContext: securityContext:
container: container:
+26 -26
View File
@@ -1,39 +1,39 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: backuppc name: backuppc
version: 5.1.4 version: 5.1.6
appVersion: 6.0.2 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. 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 home: https://truecharts.org/charts/incubator/backuppc
icon: https://truecharts.org/img/hotlink-ok/chart-icons/backuppc.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/backuppc.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/backuppc - https://github.com/tiredofit/docker-backuppc
- https://github.com/truecharts/containers/tree/master/mirrorbackuppc - https://backuppc.github.io/backuppc/index.html
- https://github.com/tiredofit/docker-backuppc - https://github.com/truecharts/charts/tree/master/charts/incubator/backuppc
- https://backuppc.github.io/backuppc/index.html - https://hub.docker.com/r/tiredofit/backuppc
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- backuppc - backuppc
- Backup - Backup
- Network-Web - Network-Web
dependencies: dependencies:
- name: common - name: common
version: 17.2.19 version: 17.2.19
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: Backup truecharts.org/category: Backup
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tiredofit/backuppc
tag: 6.0.2@7f4d7c89a204a7a451f90d5d8f551e21120eb2ea0f9500fd34ca5b8e22dc9779
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/backuppc
tag: v6.0.2@sha256:80fe126415f0b530dd7d2645da23c8409f62f184a018c52a3ec1d8c5237d30ff
securityContext: securityContext:
container: container:
+28 -28
View File
@@ -1,41 +1,41 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: bazarr name: bazarr
version: 17.1.4 version: 17.1.6
appVersion: 1.4.0 appVersion: 1.4.0
description: Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements 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 home: https://truecharts.org/charts/stable/bazarr
icon: https://truecharts.org/img/hotlink-ok/chart-icons/bazarr.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/bazarr.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/morpheus65535/bazarr - https://github.com/morpheus65535/bazarr
- https://github.com/truecharts/charts/tree/master/charts/stable/bazarr - https://github.com/truecharts/charts/tree/master/charts/stable/bazarr
- https://github.com/truecharts/containers/tree/master/mirrorexportarr - https://ghcr.io/onedr0p/exportarr
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- bazarr - bazarr
- radarr - radarr
- sonarr - sonarr
- subtitles - subtitles
- usenet - usenet
- torrent - torrent
dependencies: dependencies:
- name: common - name: common
version: 17.2.19 version: 17.2.19
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: media truecharts.org/category: media
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+2 -2
View File
@@ -3,9 +3,9 @@ image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: 1.4.0@sha256:c81c4d9cbec093d5a999cfa3cd1af01d3f00d6292d6f5c33608510cef0ed83c7 tag: 1.4.0@sha256:c81c4d9cbec093d5a999cfa3cd1af01d3f00d6292d6f5c33608510cef0ed83c7
exportarrImage: exportarrImage:
repository: tccr.io/truecharts/exportarr repository: ghcr.io/onedr0p/exportarr
tag: v1.6.0@b522e128509b766cf66f847190fccd225ff194dc76775fe6a215f2dd3010cac2
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v1.6.0@sha256:ee118701a2ebe8ccb5c25e1003fbed9ef7ce217d4e4b8b6df30cc2a0def818f8
service: service:
main: main:
ports: ports:
+23 -24
View File
@@ -1,37 +1,36 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: cs2 name: cs2
version: 2.1.4 version: 2.1.5
appVersion: latest appVersion: latest
description: A custom SteamCMD chart that runs CS2. description: A custom SteamCMD chart that runs CS2.
home: https://truecharts.org/charts/incubator/cs2 home: https://truecharts.org/charts/incubator/cs2
icon: https://truecharts.org/img/hotlink-ok/chart-icons/cs2.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/cs2.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/cs2 - https://github.com/ich777/docker-steamcmd-server/tree/cs2
- https://github.com/truecharts/containers/tree/master/mirrorcs2 - https://github.com/truecharts/charts/tree/master/charts/incubator/cs2
- https://github.com/ich777/docker-steamcmd-server/tree/cs2
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- cs2 - cs2
- counter-strike - counter-strike
dependencies: dependencies:
- name: common - name: common
version: 17.2.19 version: 17.2.19
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: games truecharts.org/category: games
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+1 -1
View File
@@ -1,5 +1,5 @@
image: image:
repository: tccr.io/truecharts/cs2 repository: tccr.io/tccr/cs2
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: latest@sha256:24f52ee1c81175980b76914803bc3ca15c02d4217ccc1c0baf414b8cd2d5f44f tag: latest@sha256:24f52ee1c81175980b76914803bc3ca15c02d4217ccc1c0baf414b8cd2d5f44f
+38 -38
View File
@@ -1,51 +1,51 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: ctfd name: ctfd
version: 3.1.5 version: 3.1.7
appVersion: 3.6.0 appVersion: 3.6.0
description: CTFd is a Capture The Flag framework focusing on ease of use and customizability. description: CTFd is a Capture The Flag framework focusing on ease of use and customizability.
home: https://truecharts.org/charts/incubator/ctfd home: https://truecharts.org/charts/incubator/ctfd
icon: https://truecharts.org/img/hotlink-ok/chart-icons/ctfd.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/ctfd.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/ctfd - https://ghcr.io/ctfd/ctfd
- https://github.com/truecharts/containers/tree/master/mirrorctfd - https://github.com/CTFd/CTFd
- https://github.com/CTFd/CTFd - https://github.com/truecharts/charts/tree/master/charts/incubator/ctfd
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- ctfd - ctfd
- learning - learning
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
- name: mariadb - name: mariadb
version: 12.1.3 version: 12.1.3
repository: https://deps.truecharts.org/ repository: https://deps.truecharts.org/
condition: mariadb.enabled condition: mariadb.enabled
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
- name: redis - name: redis
version: 11.1.3 version: 11.1.3
repository: https://deps.truecharts.org repository: https://deps.truecharts.org
condition: redis.enabled condition: redis.enabled
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: learning truecharts.org/category: learning
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+3 -2
View File
@@ -1,7 +1,8 @@
image: image:
repository: tccr.io/truecharts/ctfd repository: ghcr.io/ctfd/ctfd
tag: 3.6.0@9b1e9b9b750703d919ac9ce3dca14e1e02fdaf6d0abb217e29d1bf7fd6e40834
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v3.6.0@sha256:5492aa83311f41d70bb5f41b3c5467cf2fafc8b198300001121ad04ea05b6697
service: service:
main: main:
+22 -22
View File
@@ -1,35 +1,35 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: custom-app name: custom-app
version: 11.1.4 version: 11.1.5
appVersion: 0.21.1155 appVersion: 0.21.1155
description: Advanced tool to create your own TrueCharts-based App description: Advanced tool to create your own TrueCharts-based App
home: https://truecharts.org/charts/stable/custom-app home: https://truecharts.org/charts/stable/custom-app
icon: https://truecharts.org/img/hotlink-ok/chart-icons/custom-app.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/custom-app.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/custom-app - https://github.com/truecharts/charts/tree/master/charts/stable/custom-app
- https://ghcr.io/linuxserver/jackett - https://ghcr.io/linuxserver/jackett
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- custom - custom
dependencies: dependencies:
- name: common - name: common
version: 17.2.19 version: 17.2.19
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: custom truecharts.org/category: custom
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+12 -6
View File
@@ -1,18 +1,24 @@
image: image:
repository: tccr.io/truecharts/jackett repository: traefik/whoami
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v0.21.1155@sha256:e5422906419a2f5ddd24028d22c41e7abbf9133dc5ac87a06491cbbfe495f9cd tag: v1.10.1@sha256:6bebf84c091b5da4d4228bf8905436e33ca371afc6f3bd52b1682b40d76b23de
securityContext: workload:
readOnlyRootFilesystem: false main:
podSpec:
containers:
main:
args:
- --port
- "8080"
service: service:
main: main:
enabled: true enabled: true
ports: ports:
main: main:
port: 9117 port: 8080
targetPort: 9117 targetPort: 8080
portsList: portsList:
- name: "extraport" - name: "extraport"
enabled: true enabled: true
+24 -24
View File
@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: factorio name: factorio
version: 6.1.4 version: 6.1.6
appVersion: stable appVersion: stable
description: A game in which you build and maintain factories. description: A game in which you build and maintain factories.
home: https://truecharts.org/charts/incubator/factorio home: https://truecharts.org/charts/incubator/factorio
icon: https://truecharts.org/img/hotlink-ok/chart-icons/factorio.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/factorio.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/factoriotools/factorio-docker - https://github.com/factoriotools/factorio-docker
- https://github.com/truecharts/charts/tree/master/charts/incubator/factorio - https://github.com/truecharts/charts/tree/master/charts/incubator/factorio
- https://github.com/truecharts/containers/tree/master/mirrorfactorio - https://hub.docker.com/r/factoriotools/factorio
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- factorio - factorio
- GameServers - GameServers
dependencies: dependencies:
- name: common - name: common
version: 17.2.19 version: 17.2.19
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: GameServers truecharts.org/category: GameServers
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/factorio repository: factoriotools/factorio
tag: vstable@sha256:1554bb0a5ead1dacdfdffa7539d5d170d3f326aa82aad9f4d88f9e37f3e0ec85 tag: stable@sha256:37ac9795cdda909f1a3b92a6acb5d384a109b500f15a0c733bfadbc29e2eadcc
securityContext: securityContext:
container: container:
+27 -27
View File
@@ -1,40 +1,40 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: filestash name: filestash
version: 5.1.4 version: 5.1.6
appVersion: latest appVersion: latest
description: A Dropbox-like file manager that let you manage your data anywhere it is located. description: A Dropbox-like file manager that let you manage your data anywhere it is located.
home: https://truecharts.org/charts/incubator/filestash home: https://truecharts.org/charts/incubator/filestash
icon: https://truecharts.org/img/hotlink-ok/chart-icons/filestash.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/filestash.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/mickael-kerjean/filestash - https://github.com/mickael-kerjean/filestash
- https://www.filestash.app/ - https://www.filestash.app/
- https://github.com/truecharts/charts/tree/master/charts/incubator/filestash - https://github.com/truecharts/charts/tree/master/charts/incubator/filestash
- https://github.com/truecharts/containers/tree/master/mirrorfilestash - https://hub.docker.com/r/machines/filestash
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- filestash - filestash
- Cloud - Cloud
- Productivity - Productivity
- Network-Web - Network-Web
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: Cloud truecharts.org/category: Cloud
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: machines/filestash
tag: latest@d0d9aedd87f474c42ed724a14253c6b87848141bf1371d5f69684a27c3791514
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/filestash
tag: latest@sha256:cd613d2f128b7aeba051aed421176c44bf5b3b6df0f72102ad6a4b76f569802d
securityContext: securityContext:
container: container:
+29 -29
View File
@@ -1,41 +1,41 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: filezilla name: filezilla
version: 10.1.4 version: 10.1.6
appVersion: 3.59.0 appVersion: 3.64.0
description: A Helm chart for Kubernetes description: A Helm chart for Kubernetes
home: https://truecharts.org/charts/incubator/filezilla home: https://truecharts.org/charts/incubator/filezilla
icon: https://truecharts.org/img/hotlink-ok/chart-icons/filezilla.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/filezilla.png
deprecated: false deprecated: false
sources: sources:
- https://filezilla-project.org/ - https://ghcr.io/linuxserver/filezilla
- https://github.com/truecharts/charts/tree/master/charts/incubator/filezilla - https://filezilla-project.org/
- https://github.com/truecharts/containers/tree/master/mirrorfilezilla - https://github.com/linuxserver/docker-filezilla
- https://github.com/linuxserver/docker-filezilla - https://github.com/truecharts/charts/tree/master/charts/incubator/filezilla
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- filezilla - filezilla
- ftp - ftp
- sftp - sftp
- ftps - ftps
- client - client
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: media truecharts.org/category: media
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/filezilla repository: ghcr.io/linuxserver/filezilla
tag: 3.64.0@c415baaa62ddee0f69811f5bd34ffd981f301c00e97b6fea2361a4ce7ae34a04
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: 3.59.0@sha256:e6c854d35020a3fafddee718542cd99ef416432fe8424cf1b84559ecec1e6289
securityContext: securityContext:
container: container:
+23 -24
View File
@@ -1,37 +1,36 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: freeradius name: freeradius
version: 12.1.4 version: 12.1.5
appVersion: 3.2.0 appVersion: 3.2.0
description: OpenSource Radius implementation description: OpenSource Radius implementation
home: https://truecharts.org/charts/stable/freeradius home: https://truecharts.org/charts/stable/freeradius
icon: https://truecharts.org/img/hotlink-ok/chart-icons/freeradius.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/freeradius.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/freeradius - https://freeradius.org/
- https://github.com/truecharts/containers/tree/master/mirrorfreeradius - https://github.com/truecharts/charts/tree/master/charts/stable/freeradius
- https://freeradius.org/
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- radius - radius
- auth - auth
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: auth truecharts.org/category: auth
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+1 -1
View File
@@ -1,5 +1,5 @@
image: image:
repository: tccr.io/truecharts/freeradius repository: tccr.io/tccr/freeradius
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v3.2.0@sha256:e6a9295ae6caf282e957d0e329810e13bbdedc3bec3865e8ab322a0055107623 tag: v3.2.0@sha256:e6a9295ae6caf282e957d0e329810e13bbdedc3bec3865e8ab322a0055107623
securityContext: securityContext:
+26 -26
View File
@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: gravity name: gravity
version: 2.1.4 version: 2.1.6
appVersion: 0.6.18 appVersion: 0.6.15
description: Fully-replicated DNS and DHCP Server with ad-blocking powered by etcd. description: Fully-replicated DNS and DHCP Server with ad-blocking powered by etcd.
home: https://truecharts.org/charts/incubator/gravity home: https://truecharts.org/charts/incubator/gravity
icon: https://truecharts.org/img/hotlink-ok/chart-icons/gravity.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/gravity.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/BeryJu/gravity - https://github.com/truecharts/charts/tree/master/charts/incubator/gravity
- https://github.com/truecharts/charts/tree/master/charts/incubator/gravity - https://ghcr.io/beryju/gravity
- https://github.com/truecharts/containers/tree/master/mirrorgravity - https://github.com/BeryJu/gravity
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- gravity - gravity
- dns - dns
- networking - networking
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: dns truecharts.org/category: dns
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/gravity repository: ghcr.io/beryju/gravity
tag: v0.6.15@3b30bdba02bdfcb7ee1ff55dbcdb12275b55b2ab20993f3a68e1610bc0b8380e
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v0.6.18@sha256:1fc3f7d2507d618859f4ec84c48af0caf82efaf284c0c34df423cbab138b88c8
securityContext: securityContext:
container: container:
+26 -26
View File
@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: homebridge name: homebridge
version: 6.1.4 version: 6.1.6
appVersion: 2023-01 appVersion: "2023"
description: A lightweight NodeJS server that emulates the iOS HomeKit API description: A lightweight NodeJS server that emulates the iOS HomeKit API
home: https://truecharts.org/charts/incubator/homebridge home: https://truecharts.org/charts/incubator/homebridge
icon: https://truecharts.org/img/hotlink-ok/chart-icons/homebridge.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/homebridge.png
deprecated: false deprecated: false
sources: sources:
- https://homebridge.io/ - https://github.com/oznu/docker-homebridge
- https://github.com/oznu/docker-homebridge - https://github.com/truecharts/charts/tree/master/charts/incubator/homebridge
- https://github.com/truecharts/charts/tree/master/charts/incubator/homebridge - https://hub.docker.com/r/homebridge/homebridge
- https://github.com/truecharts/containers/tree/master/mirrorhomebridge - https://homebridge.io/
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- homebridge - homebridge
- homekit - homekit
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: media truecharts.org/category: media
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/homebridge repository: homebridge/homebridge
tag: 2023-12-30@392a3913060b4d3a12fd19845074ac6dee032948763306f3bba1795ac6248bae
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v2023-01@sha256:fa0512d8b38d20d4078b0f403c23c17716a045fcb4dc723b896461a766e22ee9
securityContext: securityContext:
container: container:
+22 -22
View File
@@ -1,35 +1,35 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: impostor-server name: impostor-server
version: 7.1.4 version: 7.1.6
appVersion: 1.8.4 appVersion: 1.8.4
description: A private Among Us server description: A private Among Us server
home: https://truecharts.org/charts/stable/impostor-server home: https://truecharts.org/charts/stable/impostor-server
icon: https://truecharts.org/img/hotlink-ok/chart-icons/impostor-server.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/impostor-server.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/impostor-server - https://github.com/truecharts/charts/tree/master/charts/stable/impostor-server
- https://hub.docker.com/r/aeonlucid/impostor - https://hub.docker.com/r/aeonlucid/impostor
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- impostor-server - impostor-server
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: games truecharts.org/category: games
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+2 -2
View File
@@ -1,4 +1,4 @@
image: image:
repository: tccr.io/truecharts/impostor-server-nightly repository: aeonlucid/impostor
tag: nightly@d50e3969809d5bad471f64e22a3b4d1ed1ad8273b168bd931f7e342874034979
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: vnightly@sha256:0144b558371c3b619bfaa947120108b96ad7100c96588df0d93b2b9b1c533b4f
+1 -1
View File
@@ -4,8 +4,8 @@ image:
tag: v1.8.4@sha256:b01df7535ba5f39d01eb3c6620199d8bc6e3182d9c685307eb21001d7ad23273 tag: v1.8.4@sha256:b01df7535ba5f39d01eb3c6620199d8bc6e3182d9c685307eb21001d7ad23273
nightlyImage: nightlyImage:
repository: aeonlucid/impostor repository: aeonlucid/impostor
tag: nightly@d50e3969809d5bad471f64e22a3b4d1ed1ad8273b168bd931f7e342874034979
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: nightly@sha256:727310ae81860f9f9d933e6d0b4cc0fffac97920dce3bc4bf27aa293a297081a
service: service:
main: main:
ports: ports:
+24 -24
View File
@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: kopia name: kopia
version: 10.1.4 version: 10.1.6
appVersion: 0.15.0 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. 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 home: https://truecharts.org/charts/stable/kopia
icon: https://truecharts.org/img/hotlink-ok/chart-icons/kopia.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/kopia.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/kopia/kopia - https://github.com/kopia/kopia
- https://github.com/truecharts/charts/tree/master/charts/stable/kopia - https://kopia.io/docs/installation/#docker-images
- https://github.com/truecharts/containers/tree/master/mirrorkopia - https://github.com/truecharts/charts/tree/master/charts/stable/kopia
- https://kopia.io/docs/installation/#docker-images - https://hub.docker.com/r/kopia/kopia
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- backup - backup
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: utility truecharts.org/category: utility
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+2 -2
View File
@@ -1,6 +1,6 @@
image: image:
repository: tccr.io/truecharts/kopia repository: kopia/kopia
tag: v0.15.0@sha256:915804f85364d2bba51248ea6b639d0988933870dc475da71d028aa819ec8649 tag: 0.15.0@fea96cef392971a0dce271ac4edd289476e23f3d4e1b90958785ee579ff14c07
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
service: service:
+27 -27
View File
@@ -1,40 +1,40 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: megasync name: megasync
version: 5.1.4 version: 5.1.6
appVersion: latest appVersion: latest
description: MEGAsync can synchronize all of your devices with your MEGA account. description: MEGAsync can synchronize all of your devices with your MEGA account.
home: https://truecharts.org/charts/incubator/megasync home: https://truecharts.org/charts/incubator/megasync
icon: https://truecharts.org/img/hotlink-ok/chart-icons/megasync.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/megasync.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/ich777/docker-megasync - https://github.com/ich777/docker-megasync
- https://github.com/truecharts/charts/tree/master/charts/incubator/megasync - https://github.com/truecharts/charts/tree/master/charts/incubator/megasync
- https://github.com/truecharts/containers/tree/master/mirrormegasync - https://hub.docker.com/r/ich777/megasync
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- megasync - megasync
- Network-Other - Network-Other
- Productivity - Productivity
- Tools-Utilities - Tools-Utilities
- Backup - Backup
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: Network-Other truecharts.org/category: Network-Other
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: ich777/megasync
tag: latest@6c65468d9ed5b55ed6a08fec8e47421c81988b38cf48112308a03ca5a856eaec
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/megasync
tag: vlatest@sha256:04d8c00afb09019389c7142a8cd67a724a6abc388d55c691a56b130f91a928d2
securityContext: securityContext:
container: container:
+25 -25
View File
@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: multi-scrobbler name: multi-scrobbler
version: 5.1.4 version: 5.1.6
appVersion: 0.6.1 appVersion: latest
description: Track your music listening history from many sources and record to many scrobble clients. description: Track your music listening history from many sources and record to many scrobble clients.
home: https://truecharts.org/charts/stable/multi-scrobbler home: https://truecharts.org/charts/stable/multi-scrobbler
icon: https://truecharts.org/img/hotlink-ok/chart-icons/multi-scrobbler.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/multi-scrobbler.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/multi-scrobbler - https://github.com/truecharts/charts/tree/master/charts/stable/multi-scrobbler
- https://github.com/truecharts/containers/tree/master/mirrormulti-scrobbler - https://hub.docker.com/r/foxxmd/multi-scrobbler
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- multi-scrobbler - multi-scrobbler
- Network-Web - Network-Web
- MediaServer-Music - MediaServer-Music
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: Network-Web truecharts.org/category: Network-Web
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: foxxmd/multi-scrobbler
tag: latest@05b72788b63ad0bd02286adccd641a721d65a0d886078f1c69a04602aeb15902
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/multi-scrobbler
tag: v0.6.1@sha256:a08454006d704a1ca96a6dcb89f28556b636c5f131f58eca37014d54bfd74474
securityContext: securityContext:
container: container:
+34 -35
View File
@@ -1,48 +1,47 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: nextcloud name: nextcloud
version: 28.1.6 version: 28.1.7
appVersion: 28.0.1 appVersion: 28.0.1
description: A private cloud server that puts the control and security of your own data back into your hands. 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 home: https://truecharts.org/charts/stable/nextcloud
icon: https://truecharts.org/img/hotlink-ok/chart-icons/nextcloud.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/nextcloud.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/nextcloud - https://github.com/nextcloud/docker
- https://hub.docker.com/r/nginxinc/nginx-unprivileged - https://github.com/truecharts/charts/tree/master/charts/stable/nextcloud
- https://github.com/nextcloud/helm - https://github.com/nextcloud/helm
- https://github.com/nextcloud/docker
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- nextcloud - nextcloud
- storage - storage
- http - http
- web - web
- php - php
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
- name: redis - name: redis
version: 11.1.3 version: 11.1.3
repository: https://deps.truecharts.org repository: https://deps.truecharts.org
condition: redis.enabled condition: redis.enabled
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: cloud truecharts.org/category: cloud
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+3 -3
View File
@@ -1,5 +1,5 @@
image: image:
repository: tccr.io/truecharts/nextcloud-fpm repository: tccr.io/tccr/nextcloud-fpm
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v28.0.1@sha256:41f597b1bf8a1d924d4246f2d4af52704fcab4464ca50dee6b5db930ebc50a18 tag: v28.0.1@sha256:41f597b1bf8a1d924d4246f2d4af52704fcab4464ca50dee6b5db930ebc50a18
nginxImage: nginxImage:
@@ -7,11 +7,11 @@ nginxImage:
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: 1.25.3@sha256:f67dc757811b9140d83408152cf9dc9296ad4f6b7d1ffb87874ad4759842e2be tag: 1.25.3@sha256:f67dc757811b9140d83408152cf9dc9296ad4f6b7d1ffb87874ad4759842e2be
imaginaryImage: imaginaryImage:
repository: tccr.io/truecharts/nextcloud-imaginary repository: tccr.io/tccr/nextcloud-imaginary
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v20230401@sha256:6a227d1b0200d29f25028e07b8852f60e3d91a5814048933e70eccee749dc04c tag: v20230401@sha256:6a227d1b0200d29f25028e07b8852f60e3d91a5814048933e70eccee749dc04c
hpbImage: hpbImage:
repository: tccr.io/truecharts/nextcloud-push-notify repository: tccr.io/tccr/nextcloud-push-notify
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v0.6.3@sha256:b9c35ab123354eeac3996e361f8c30b8e4de6d2ccd69e5179a7c2a101a67b46f tag: v0.6.3@sha256:b9c35ab123354eeac3996e361f8c30b8e4de6d2ccd69e5179a7c2a101a67b46f
clamavImage: clamavImage:
+27 -28
View File
@@ -1,41 +1,40 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: ombi name: ombi
version: 17.1.4 version: 17.1.5
appVersion: 4.43.10 appVersion: 4.43.10
description: Want a Movie or TV Show on Plex or Emby? Use Ombi! description: Want a Movie or TV Show on Plex or Emby? Use Ombi!
home: https://truecharts.org/charts/stable/ombi home: https://truecharts.org/charts/stable/ombi
icon: https://truecharts.org/img/hotlink-ok/chart-icons/ombi.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/ombi.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/tidusjar/Ombi - https://github.com/tidusjar/Ombi
- https://github.com/truecharts/charts/tree/master/charts/stable/ombi - https://github.com/truecharts/charts/tree/master/charts/stable/ombi
- https://github.com/truecharts/containers/tree/master/mirrorombi
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- ombi - ombi
- plex - plex
- emby - emby
- sonarr - sonarr
- radarr - radarr
- couchpotato - couchpotato
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: media truecharts.org/category: media
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+1 -1
View File
@@ -1,5 +1,5 @@
image: image:
repository: tccr.io/truecharts/ombi repository: tccr.io/tccr/ombi
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v4.43.10@sha256:bd0f1b0af7ddda20a369999901aa0016dc85ea94fc9fbe29be6481936a80264a tag: v4.43.10@sha256:bd0f1b0af7ddda20a369999901aa0016dc85ea94fc9fbe29be6481936a80264a
service: service:
+24 -24
View File
@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: openbooks name: openbooks
version: 3.1.4 version: 3.1.6
appVersion: 4.5.0 appVersion: 4.5.0
description: IRC Highway eBook Downloads. description: IRC Highway eBook Downloads.
home: https://truecharts.org/charts/incubator/openbooks home: https://truecharts.org/charts/incubator/openbooks
icon: https://truecharts.org/img/hotlink-ok/chart-icons/openbooks.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/openbooks.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/evan-buss/openbooks - https://github.com/truecharts/charts/tree/master/charts/incubator/openbooks
- https://github.com/truecharts/charts/tree/master/charts/incubator/openbooks - https://hub.docker.com/r/evanbuss/openbooks
- https://github.com/truecharts/containers/tree/master/mirroropenbooks - https://github.com/evan-buss/openbooks
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- openbooks - openbooks
- media - media
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: media truecharts.org/category: media
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/openbooks repository: evanbuss/openbooks
tag: 4.5.0@3f2e59a75b68950d57cfec5dc2b1b31d6c6b02706097c70b5438499b59fbdea2
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: 4.5.0@sha256:fe1b693d63397e01a5673b8b16180539c1cb952abfe4ebfb58d0950ab9886adc
securityContext: securityContext:
container: container:
+25 -25
View File
@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: pastey name: pastey
version: 5.1.4 version: 5.1.6
appVersion: 0.5.1 appVersion: 0.5.1
description: A lightweight, self-hosted paste platform. description: A lightweight, self-hosted paste platform.
home: https://truecharts.org/charts/stable/pastey home: https://truecharts.org/charts/stable/pastey
icon: https://truecharts.org/img/hotlink-ok/chart-icons/pastey.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/pastey.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/Cesura/pastey - https://github.com/Cesura/pastey
- https://github.com/truecharts/charts/tree/master/charts/stable/pastey - https://github.com/truecharts/charts/tree/master/charts/stable/pastey
- https://github.com/truecharts/containers/tree/master/mirrorpastey-slim - https://hub.docker.com/r/cesura/pastey
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- pastey - pastey
- Productivity - Productivity
- Tools-Utilities - Tools-Utilities
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: Productivity truecharts.org/category: Productivity
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+4 -4
View File
@@ -1,11 +1,11 @@
image: image:
repository: cesura/pastey
tag: 0.5.1@4c4f6e7a31f574a2034e0807bf874e03e350c8931d4477521fae2b3f3e2aecfe
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/pastey
tag: v0.5.1@sha256:cc7d7e848fb023bcc1bf82a568421d2fcb5bd29eb23a5694c925e71662e725ab
slimImage: slimImage:
repository: cesura/pastey
tag: 0.5.1-slim@dc994c07aa45ce94e7f67958c4d03a6dac95f56427e7113500f0e88a258d3b13
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/pastey-slim
tag: v0.5.1@sha256:acde8ecaf0216a57e1ee4e449884a09b9d8493bcb69185ed74436489dabbece5
securityContext: securityContext:
container: container:
+27 -27
View File
@@ -1,39 +1,39 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: photostructure name: photostructure
version: 5.1.4 version: 5.1.6
appVersion: 2.1.0 appVersion: 2.1.0-alpha.7
description: PhotoStructure is your new home for all your photos and videos. description: PhotoStructure is your new home for all your photos and videos.
home: https://truecharts.org/charts/incubator/photostructure home: https://truecharts.org/charts/incubator/photostructure
icon: https://truecharts.org/img/hotlink-ok/chart-icons/photostructure.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/photostructure.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/photostructure/photostructure-for-servers - https://github.com/photostructure/photostructure-for-servers
- https://github.com/truecharts/charts/tree/master/charts/incubator/photostructure - https://github.com/truecharts/charts/tree/master/charts/incubator/photostructure
- https://github.com/truecharts/containers/tree/master/mirrorphotostructure - https://hub.docker.com/r/photostructure/server
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- photostructure - photostructure
- MediaApp-Photos - MediaApp-Photos
- MediaServer-Video - MediaServer-Video
- MediaServer-Photos - MediaServer-Photos
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: MediaApp-Photos truecharts.org/category: MediaApp-Photos
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: photostructure/server
tag: v2.1.0-alpha.7@ccd309179a5aa61d7601752bc79bf6304cc4257c907a614812ddaef8f422cb54
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/photostructure
tag: v2.1.0@sha256:0c75885bdbb8bd64826af1ad36c12b3533aa6317cfbad2be4c5205368014ad80
securityContext: securityContext:
container: container:
+23 -23
View File
@@ -1,36 +1,36 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: plex-meta-manager name: plex-meta-manager
version: 5.1.4 version: 5.1.6
appVersion: 1.19.1 appVersion: 1.19.1
description: Python script to update metadata and automatically build collections. description: Python script to update metadata and automatically build collections.
home: https://truecharts.org/charts/incubator/plex-meta-manager home: https://truecharts.org/charts/incubator/plex-meta-manager
icon: https://truecharts.org/img/hotlink-ok/chart-icons/plex-meta-manager.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/plex-meta-manager.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/meisnate12/Plex-Meta-Manager - https://github.com/truecharts/charts/tree/master/charts/incubator/plex-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/truecharts/containers/tree/master/mirrorplex-meta-manager - https://github.com/meisnate12/Plex-Meta-Manager
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- plex-meta-manager - plex-meta-manager
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: media truecharts.org/category: media
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/plex-meta-manager repository: meisnate12/plex-meta-manager
tag: v1.19.1@25dd08a1940e7c26617d50fe24197d2986fe6857c50f6d12f6991d01e4dc425c
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v1.19.1@sha256:f9f0f35b772201e98be32370f93b2557fad3a5b381406165896186ab99ea1382
securityContext: securityContext:
container: container:
+29 -29
View File
@@ -1,42 +1,42 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: plex-playlist-sync name: plex-playlist-sync
version: 2.1.4 version: 2.1.6
appVersion: latest appVersion: latest
description: Sync your Spotify and Deezer playlists to your Plex server. description: Sync your Spotify and Deezer playlists to your Plex server.
home: https://truecharts.org/charts/incubator/plex-playlist-sync home: https://truecharts.org/charts/incubator/plex-playlist-sync
icon: https://truecharts.org/img/hotlink-ok/chart-icons/plex-playlist-sync.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/plex-playlist-sync.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/containers/tree/master/mirrorplex-playlist-sync - https://hub.docker.com/r/rnagabhyrava/plexplaylistsync
- https://github.com/rnagabhyrava/plex-playlist-sync - https://github.com/rnagabhyrava/plex-playlist-sync
- https://github.com/truecharts/charts/tree/master/charts/incubator/plex-playlist-sync - https://github.com/truecharts/charts/tree/master/charts/incubator/plex-playlist-sync
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- plex-playlist-sync - plex-playlist-sync
- Spotify - Spotify
- Deezer - Deezer
- Tools-Utilities - Tools-Utilities
- MediaApp-Other - MediaApp-Other
- MediaApp-Video - MediaApp-Video
- MediaServer-Video - MediaServer-Video
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: Tools-Utilities truecharts.org/category: Tools-Utilities
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: rnagabhyrava/plexplaylistsync
tag: latest@68b580ff05514eab0735a83adb1b8873427435714c8b303c08cf335ce4e892dc
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/plex-playlist-sync
tag: latest@sha256:82e3431659be3ac051715e1e63e79780cb0b8ff105bd6cc427f4e21cd4b2b58d
securityContext: securityContext:
container: container:
+25 -25
View File
@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: plextraktsync name: plextraktsync
version: 6.1.4 version: 6.1.6
appVersion: 0.27.11 appVersion: 0.27.11
description: Two-way-sync between trakt.tv and Plex Media Server. description: Two-way-sync between trakt.tv and Plex Media Server.
home: https://truecharts.org/charts/incubator/plextraktsync home: https://truecharts.org/charts/incubator/plextraktsync
icon: https://truecharts.org/img/hotlink-ok/chart-icons/plextraktsync.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/plextraktsync.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/Taxel/PlexTraktSync - https://github.com/truecharts/charts/tree/master/charts/incubator/plextraktsync
- https://github.com/truecharts/charts/tree/master/charts/incubator/plextraktsync - https://ghcr.io/taxel/plextraktsync
- https://github.com/truecharts/containers/tree/master/mirrorplextraktsync - https://github.com/Taxel/PlexTraktSync
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- plextraktsync - plextraktsync
- Tools-Utilities - Tools-Utilities
- MediaApp-Other - MediaApp-Other
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: Tools-Utilities truecharts.org/category: Tools-Utilities
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: ghcr.io/taxel/plextraktsync
tag: 0.27.11@ccc9d992339e3bf2754f1b4f5c6419e2b05a39a191c265669adefd9bf7b1607c
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/plextraktsync
tag: v0.27.11@sha256:74efbebce5bf060c4e7b6c9936e6c551944957a25f388c70e0d1254e516a0994
securityContext: securityContext:
container: container:
+23 -24
View File
@@ -1,37 +1,36 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: pocketmine-mp name: pocketmine-mp
version: 2.1.4 version: 2.1.5
appVersion: 5.8.2 appVersion: 5.8.2
description: A server software for Minecraft Bedrock Edition in PHP. description: A server software for Minecraft Bedrock Edition in PHP.
home: https://truecharts.org/charts/incubator/pocketmine-mp home: https://truecharts.org/charts/incubator/pocketmine-mp
icon: https://truecharts.org/img/hotlink-ok/chart-icons/pocketmine-mp.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/pocketmine-mp.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/pmmp/PocketMine-MP - https://github.com/pmmp/PocketMine-MP
- https://github.com/truecharts/charts/tree/master/charts/incubator/pocketmine-mp - https://github.com/truecharts/charts/tree/master/charts/incubator/pocketmine-mp
- https://github.com/truecharts/containers/tree/master/mirrorpocketmine-mp
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- pocketmine-mp - pocketmine-mp
- minecraft - minecraft
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: games truecharts.org/category: games
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+1 -1
View File
@@ -1,5 +1,5 @@
image: image:
repository: tccr.io/truecharts/pocketmine-mp repository: tccr.io/tccr/pocketmine-mp
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v5.8.2@sha256:85b5b10f86044282ec1f1707659419347e1e48e899b351196b81e376e7fd38c0 tag: v5.8.2@sha256:85b5b10f86044282ec1f1707659419347e1e48e899b351196b81e376e7fd38c0
+25 -25
View File
@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: promcord name: promcord
version: 10.1.4 version: 10.1.5
appVersion: latest appVersion: latest
description: Discord bot that provides metrics from a Discord server description: Discord bot that provides metrics from a Discord server
home: https://truecharts.org/charts/stable/promcord home: https://truecharts.org/charts/stable/promcord
icon: https://truecharts.org/img/hotlink-ok/chart-icons/promcord.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/promcord.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/nimarion/promcord - https://github.com/nimarion/promcord
- https://github.com/truecharts/charts/tree/master/charts/stable/promcord - https://github.com/truecharts/charts/tree/master/charts/stable/promcord
- https://hub.docker.com/r/biospheere/promcord - https://hub.docker.com/r/biospheere/promcord
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- promcord - promcord
- discord - discord
- metrics - metrics
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: metrics truecharts.org/category: metrics
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+1 -1
View File
@@ -1,5 +1,5 @@
image: image:
repository: tccr.io/truecharts/whoami repository: tccr.io/tccr/whoami
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v1.10.1@sha256:36d22e4b8a154919b819bd7283531783eca9076972e8fc631649bb7eade770d9 tag: v1.10.1@sha256:36d22e4b8a154919b819bd7283531783eca9076972e8fc631649bb7eade770d9
+23 -23
View File
@@ -1,36 +1,36 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: proxmox-backup-server name: proxmox-backup-server
version: 2.1.4 version: 2.1.6
appVersion: 3.0.2 appVersion: 3.0.2
description: Container for proxmox backup server description: Container for proxmox backup server
home: https://truecharts.org/charts/incubator/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 icon: https://truecharts.org/img/hotlink-ok/chart-icons/proxmox-backup-server.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/proxmox-backup-server - https://github.com/truecharts/charts/tree/master/charts/incubator/proxmox-backup-server
- https://github.com/truecharts/containers/tree/master/mirrorproxmox-backup-server - https://hub.docker.com/r/ayufan/proxmox-backup-server
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- proxmox-backup-server - proxmox-backup-server
- pbs - pbs
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: test truecharts.org/category: test
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
@@ -1,6 +1,6 @@
image: image:
repository: tccr.io/truecharts/proxmox-backup-server repository: ayufan/proxmox-backup-server
tag: v3.0.2@sha256:31e31c6bc27ca6e682eb2819ba69bec7d20bfa928e5642123e620f9be3277d3c tag: v3.0.2@7466aa309840f73dbccb6c0f237748384f95273ee1e61f07674c86e3238c006a
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
securityContext: securityContext:
+23 -23
View File
@@ -1,36 +1,36 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: rimgo name: rimgo
version: 5.1.4 version: 5.1.6
appVersion: latest appVersion: latest
description: Alternative Imgur front-end description: Alternative Imgur front-end
home: https://truecharts.org/charts/incubator/rimgo home: https://truecharts.org/charts/incubator/rimgo
icon: https://truecharts.org/img/hotlink-ok/chart-icons/rimgo.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/rimgo.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/rimgo - https://github.com/truecharts/charts/tree/master/charts/incubator/rimgo
- https://github.com/truecharts/containers/tree/master/mirrorrimgo - https://quay.io/pussthecatorg/rimgo
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- rimgo - rimgo
- Network-Web - Network-Web
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: Network-Web truecharts.org/category: Network-Web
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: quay.io/pussthecatorg/rimgo
tag: latest@c6cd14760d42670acb57e8bccdc5c34a2e9209a39276b7f568352c3e503e0d97
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/rimgo
tag: latest@sha256:fce81544a27a9e727bfb807cb2b4d8b9e578715c69fbbde4de93627dc19fe470
persistence: {} persistence: {}
env: env:
+24 -24
View File
@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: smtp-relay name: smtp-relay
version: 2.1.4 version: 2.1.6
appVersion: 0.5.2 appVersion: 0.5.2
description: A SMTP service for relaying emails. description: A SMTP service for relaying emails.
home: https://truecharts.org/charts/incubator/smtp-relay home: https://truecharts.org/charts/incubator/smtp-relay
icon: https://truecharts.org/img/hotlink-ok/chart-icons/smtp-relay.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/smtp-relay.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/ix-ai/smtp - https://github.com/ix-ai/smtp
- https://github.com/truecharts/charts/tree/master/charts/incubator/smtp-relay - https://github.com/truecharts/charts/tree/master/charts/incubator/smtp-relay
- https://github.com/truecharts/containers/tree/master/mirrorsmtp-relay - https://ghcr.io/ix-ai/smtp
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- smtp-relay - smtp-relay
- smtp - smtp
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: smtp truecharts.org/category: smtp
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/smtp-relay repository: ghcr.io/ix-ai/smtp
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v0.5.2@sha256:ad5044ebdec5d2e75d08021f333b742328c2554e9807894031e328321433f049 tag: v0.5.2@sha256:73629c8a2e0896d4591b6b3e884eb17bac14007a2352d9e977cf5706a5c33a9a
securityContext: securityContext:
container: container:
+25 -25
View File
@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: sonsoftheforest name: sonsoftheforest
version: 2.1.4 version: 2.1.6
appVersion: latest appVersion: sonsoftheforest
description: A custom SteamCMD chart that runs Sons Of The Forest Server. description: A custom SteamCMD chart that runs Sons Of The Forest Server.
home: https://truecharts.org/charts/incubator/sonsoftheforest home: https://truecharts.org/charts/incubator/sonsoftheforest
icon: https://truecharts.org/img/hotlink-ok/chart-icons/sonsoftheforest.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/sonsoftheforest.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/ich777/docker-steamcmd-server/tree/sonsoftheforest - https://hub.docker.com/r/ich777/steamcmd
- https://github.com/truecharts/charts/tree/master/charts/incubator/sonsoftheforest - https://github.com/ich777/docker-steamcmd-server/tree/sonsoftheforest
- https://github.com/truecharts/containers/tree/master/mirrorsonsoftheforest - https://github.com/truecharts/charts/tree/master/charts/incubator/sonsoftheforest
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- sonsoftheforest - sonsoftheforest
- GameServers - GameServers
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: GameServers truecharts.org/category: GameServers
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/sonsoftheforest repository: ich777/steamcmd
tag: sonsoftheforest@8b7590087f32f15265c35a32227c123d695b1cff14132c5fb27b62da93aa51f5
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: latest@sha256:df2acf5c7112f5e53b4be5eaa550e6396ae284994d92384ec4a5305d8cf8abca
securityContext: securityContext:
container: container:
+24 -24
View File
@@ -1,37 +1,37 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: steam-headless name: steam-headless
version: 2.1.4 version: 2.1.6
appVersion: latest appVersion: latest
description: A Headless Steam chart. description: A Headless Steam chart.
home: https://truecharts.org/charts/incubator/steam-headless home: https://truecharts.org/charts/incubator/steam-headless
icon: https://truecharts.org/img/hotlink-ok/chart-icons/steam-headless.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/steam-headless.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/Steam-Headless/docker-steam-headless - https://hub.docker.com/r/josh5/steam-headless
- https://github.com/truecharts/charts/tree/master/charts/incubator/steam-headless - https://github.com/Steam-Headless/docker-steam-headless
- https://github.com/truecharts/containers/tree/master/mirrorsteam-headless - https://github.com/truecharts/charts/tree/master/charts/incubator/steam-headless
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- steam-headless - steam-headless
- games - games
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: games truecharts.org/category: games
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/steam-headless repository: josh5/steam-headless
tag: latest@129e798a62a48116f8bd3fc53c5e2324f0177f27afd7cff234e0897349523129
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: vlatest@sha256:e78bb73f080ad1608a54fe45185e923b908e4889eac40809aaa5bb1294767580
securityContext: securityContext:
container: container:
+23 -23
View File
@@ -1,36 +1,36 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: stun-turn-server name: stun-turn-server
version: 5.1.4 version: 5.1.6
appVersion: latest appVersion: latest
description: This is a Basic STUN & TURN server that was mainly created for Nextcloud Talk. description: This is a Basic STUN & TURN server that was mainly created for Nextcloud Talk.
home: https://truecharts.org/charts/stable/stun-turn-server home: https://truecharts.org/charts/stable/stun-turn-server
icon: https://truecharts.org/img/hotlink-ok/chart-icons/stun-turn-server.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/stun-turn-server.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/stun-turn-server - https://github.com/truecharts/charts/tree/master/charts/stable/stun-turn-server
- https://github.com/truecharts/containers/tree/master/mirrorstun-turn-server - https://hub.docker.com/r/ich777/stun-turn-server
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- stun-turn-server - stun-turn-server
- Network - Network
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: Network truecharts.org/category: Network
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: stable truecharts.org/train: stable
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: ich777/stun-turn-server
tag: latest@fe6e439818ec95920998c134f631545f74575b92b3c4d8a2f15ab9800845fc2d
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/stun-turn-server
tag: latest@sha256:459d8f624ae06708f245e51a25afd904a3b83242630913976356ee754925391f
service: service:
main: main:
+26 -26
View File
@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: tasmoadmin name: tasmoadmin
version: 6.1.4 version: 6.1.6
appVersion: 3.2.0 appVersion: 3.1.2
description: A administrative platform for devices flashed with Tasmota. description: A administrative platform for devices flashed with Tasmota.
home: https://truecharts.org/charts/incubator/tasmoadmin home: https://truecharts.org/charts/incubator/tasmoadmin
icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmoadmin.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmoadmin.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/containers/tree/master/mirrortasmoadmin - https://github.com/TasmoAdmin/TasmoAdmin
- https://github.com/TasmoAdmin/TasmoAdmin - https://github.com/truecharts/charts/tree/master/charts/incubator/tasmoadmin
- https://github.com/truecharts/charts/tree/master/charts/incubator/tasmoadmin - https://ghcr.io/tasmoadmin/tasmoadmin
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- tasmoadmin - tasmoadmin
- HomeAutomation - HomeAutomation
- Network-Management - Network-Management
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: HomeAutomation truecharts.org/category: HomeAutomation
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: ghcr.io/tasmoadmin/tasmoadmin
tag: v3.1.2@0c50bda69ced49e8c1e6f765094434f4355a062fb61a5c3477e71d8ccc4b9bc9
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/tasmoadmin
tag: v3.2.0@sha256:9ba3cbe28414dd61e03b9d36c29c4792f6fde11dbe0e130f9186760d5afe6c29
securityContext: securityContext:
container: container:
+26 -26
View File
@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: tasmobackup name: tasmobackup
version: 5.1.4 version: 5.1.6
appVersion: latest appVersion: 1.05.00
description: backup all your tasmota devices in one place. description: backup all your tasmota devices in one place.
home: https://truecharts.org/charts/incubator/tasmobackup home: https://truecharts.org/charts/incubator/tasmobackup
icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmobackup.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmobackup.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/containers/tree/master/mirrortasmobackup - https://hub.docker.com/r/danmed/tasmobackupv1
- https://github.com/danmed/TasmoBackupV1 - https://github.com/danmed/TasmoBackupV1
- https://github.com/truecharts/charts/tree/master/charts/incubator/tasmobackup - https://github.com/truecharts/charts/tree/master/charts/incubator/tasmobackup
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- tasmobackup - tasmobackup
- HomeAutomation - HomeAutomation
- Network-Management - Network-Management
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: HomeAutomation truecharts.org/category: HomeAutomation
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+5 -4
View File
@@ -1,10 +1,11 @@
image:
repository: danmed/tasmobackupv1
tag: 1.05.00@65cd95d00b1476c4e6c38530ea8eaa0d59b9983e24b3f95639b7c79a0ff194b8
pullPolicy: IfNotPresent
env: env:
DBNAME: data/tasmobackup DBNAME: data/tasmobackup
DBTYPE: sqlite DBTYPE: sqlite
image:
pullPolicy: IfNotPresent
repository: tccr.io/truecharts/tasmobackup
tag: latest@sha256:197cbf9ce71dd849473ea47c09cb60a667d7f80dd456f13123eaca61517d5ff3
securityContext: securityContext:
container: container:
+25 -25
View File
@@ -1,38 +1,38 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: tasmocompiler name: tasmocompiler
version: 5.1.4 version: 5.1.6
appVersion: latest appVersion: latest
description: TasmoCompiler is a simple web GUI which allows you to compile fantastic Tasmota firmware with your own settings 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 home: https://truecharts.org/charts/incubator/tasmocompiler
icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmocompiler.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmocompiler.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/benzino77/tasmocompiler - https://github.com/truecharts/charts/tree/master/charts/incubator/tasmocompiler
- https://github.com/truecharts/charts/tree/master/charts/incubator/tasmocompiler - https://hub.docker.com/r/benzino77/tasmocompiler
- https://github.com/truecharts/containers/tree/master/mirrortasmocompiler - https://github.com/benzino77/tasmocompiler
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- tasmocompiler - tasmocompiler
- HomeAutomation - HomeAutomation
- Tools-Utilities - Tools-Utilities
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: HomeAutomation truecharts.org/category: HomeAutomation
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
+2 -2
View File
@@ -1,7 +1,7 @@
image: image:
repository: benzino77/tasmocompiler
tag: latest@d2df0ef394c2b387e8a9a9dc0282fc448148c07f2341ec21a9100a4967e0aee1
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
repository: tccr.io/truecharts/tasmocompiler
tag: latest@sha256:506e9f54b21eaeca6eb7a5cfdef32640592ad2b05289a2c8b7a32338d8d9ee38
securityContext: securityContext:
container: container:
+28 -28
View File
@@ -1,41 +1,41 @@
kubeVersion: ">=1.24.0-0" kubeVersion: '>=1.24.0-0'
apiVersion: v2 apiVersion: v2
name: traefik-forward-auth name: traefik-forward-auth
version: 2.1.4 version: 2.1.6
appVersion: latest 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). 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 home: https://truecharts.org/charts/incubator/traefik-forward-auth
icon: https://truecharts.org/img/hotlink-ok/chart-icons/traefik-forward-auth.png icon: https://truecharts.org/img/hotlink-ok/chart-icons/traefik-forward-auth.png
deprecated: false deprecated: false
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/traefik-forward-auth - https://github.com/truecharts/charts/tree/master/charts/incubator/traefik-forward-auth
- https://github.com/truecharts/containers/tree/master/mirrortraefik-forward-auth - https://hub.docker.com/r/thomseddon/traefik-forward-auth
- https://github.com/thomseddon/traefik-forward-auth - https://github.com/thomseddon/traefik-forward-auth
maintainers: maintainers:
- name: TrueCharts - name: TrueCharts
email: info@truecharts.org email: info@truecharts.org
url: https://truecharts.org url: https://truecharts.org
keywords: keywords:
- traefik-forward-auth - traefik-forward-auth
- traefik - traefik
- forward-auth - forward-auth
- auth - auth
- ingress - ingress
- middleware - middleware
dependencies: dependencies:
- name: common - name: common
version: 17.2.21 version: 17.2.21
repository: oci://tccr.io/truecharts repository: oci://tccr.io/truecharts
condition: "" condition: ""
alias: "" alias: ""
tags: [] tags: []
import-values: [] import-values: []
annotations: annotations:
max_scale_version: 23.10.2 max_scale_version: 23.10.2
min_scale_version: 23.10.0 min_scale_version: 23.10.0
truecharts.org/SCALE-support: "true" truecharts.org/SCALE-support: "true"
truecharts.org/category: network truecharts.org/category: network
truecharts.org/max_helm_version: "3.13" truecharts.org/max_helm_version: "3.13"
truecharts.org/min_helm_version: "3.12" truecharts.org/min_helm_version: "3.12"
truecharts.org/train: incubator truecharts.org/train: incubator
type: application type: application
@@ -1,7 +1,7 @@
image: image:
repository: tccr.io/truecharts/traefik-forward-auth repository: thomseddon/traefik-forward-auth
pullPolicy: IfNotPresent tag: latest@b364aa6a4117569163eff793999901f9f5a0c4f7f2da18b4ecbcd140d7b6107b
tag: latest@sha256:edd7eb812cb38e59d32b5a00398b57a78506db2390cbe295f5df590a38a5d44e pullPolicy: IfNotPresente
workload: workload:
main: main:

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