diff --git a/.github/scripts/install_dependencies.sh b/.github/scripts/install_dependencies.sh new file mode 100755 index 00000000000..7499a34b01e --- /dev/null +++ b/.github/scripts/install_dependencies.sh @@ -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 diff --git a/.github/scripts/prep_helm.sh b/.github/scripts/prep_helm.sh new file mode 100755 index 00000000000..662a4bccae6 --- /dev/null +++ b/.github/scripts/prep_helm.sh @@ -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 diff --git a/.github/workflows/charts-test.yaml b/.github/workflows/charts-test.yaml index 6427b15f7d6..876d132e805 100644 --- a/.github/workflows/charts-test.yaml +++ b/.github/workflows/charts-test.yaml @@ -145,36 +145,14 @@ jobs: kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true - name: Prep Helm + shell: bash run: | - helm repo add truecharts-deps https://deps.truecharts.org - helm repo add jetstack https://charts.jetstack.io - helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts - helm repo add cnpg https://cloudnative-pg.github.io/charts - helm repo add metallb https://metallb.github.io/metallb - helm repo add prometheus-community https://prometheus-community.github.io/helm-charts - helm repo add openebs https://openebs.github.io/charts - helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts - helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts - helm repo update + ./.github/scripts/prep_helm.sh - name: Add Dependencies + shell: bash run: | - if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then - helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait - fi - ## TODO: Only add when required - if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then - helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then - helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then - helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then - helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait - fi + ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}" - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade @@ -221,36 +199,15 @@ jobs: kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true - name: Prep Helm + shell: bash run: | - helm repo add truecharts-deps https://deps.truecharts.org - helm repo add jetstack https://charts.jetstack.io - helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts - helm repo add cnpg https://cloudnative-pg.github.io/charts - helm repo add metallb https://metallb.github.io/metallb - helm repo add prometheus-community https://prometheus-community.github.io/helm-charts - helm repo add openebs https://openebs.github.io/charts - helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts - helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts - helm repo update + ./.github/scripts/prep_helm.sh - name: Add Dependencies + shell: bash run: | - if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then - helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait - fi - ## TODO: Only add when required - if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then - helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then - helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then - helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then - helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait - fi + ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}" + - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade @@ -297,36 +254,14 @@ jobs: kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true - name: Prep Helm + shell: bash run: | - helm repo add truecharts-deps https://deps.truecharts.org - helm repo add jetstack https://charts.jetstack.io - helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts - helm repo add cnpg https://cloudnative-pg.github.io/charts - helm repo add metallb https://metallb.github.io/metallb - helm repo add prometheus-community https://prometheus-community.github.io/helm-charts - helm repo add openebs https://openebs.github.io/charts - helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts - helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts - helm repo update + ./.github/scripts/prep_helm.sh - name: Add Dependencies + shell: bash run: | - if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then - helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait - fi - ## TODO: Only add when required - if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then - helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then - helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then - helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then - helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait - fi + ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}" - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade @@ -373,36 +308,14 @@ jobs: kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true - name: Prep Helm + shell: bash run: | - helm repo add truecharts-deps https://deps.truecharts.org - helm repo add jetstack https://charts.jetstack.io - helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts - helm repo add cnpg https://cloudnative-pg.github.io/charts - helm repo add metallb https://metallb.github.io/metallb - helm repo add prometheus-community https://prometheus-community.github.io/helm-charts - helm repo add openebs https://openebs.github.io/charts - helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts - helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts - helm repo update + ./.github/scripts/prep_helm.sh - name: Add Dependencies + shell: bash run: | - if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then - helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait - fi - ## TODO: Only add when required - if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then - helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then - helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then - helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then - helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait - fi + ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}" - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade @@ -449,36 +362,14 @@ jobs: kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true - name: Prep Helm + shell: bash run: | - helm repo add truecharts-deps https://deps.truecharts.org - helm repo add jetstack https://charts.jetstack.io - helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts - helm repo add cnpg https://cloudnative-pg.github.io/charts - helm repo add metallb https://metallb.github.io/metallb - helm repo add prometheus-community https://prometheus-community.github.io/helm-charts - helm repo add openebs https://openebs.github.io/charts - helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts - helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts - helm repo update + ./.github/scripts/prep_helm.sh - name: Add Dependencies + shell: bash run: | - if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then - helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait - fi - ## TODO: Only add when required - if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then - helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then - helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then - helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then - helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait - fi + ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}" - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade @@ -525,36 +416,15 @@ jobs: kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true - name: Prep Helm + shell: bash run: | - helm repo add truecharts-deps https://deps.truecharts.org - helm repo add jetstack https://charts.jetstack.io - helm repo add vmwaretanzu https://vmware-tanzu.github.io/helm-charts - helm repo add cnpg https://cloudnative-pg.github.io/charts - helm repo add metallb https://metallb.github.io/metallb - helm repo add prometheus-community https://prometheus-community.github.io/helm-charts - helm repo add openebs https://openebs.github.io/charts - helm repo add csi-driver-smb https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts - helm repo add csi-driver-nfs https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts - helm repo update + ./.github/scripts/prep_helm.sh - name: Add Dependencies + shell: bash run: | - if [[ "${{ matrix.chart }}" == "charts/operators/metallb-config" ]]; then - helm install metallb oci://tccr.io/truecharts/metallb --namespace metallb --create-namespace --wait - fi - ## TODO: Only add when required - if [[ "${{ matrix.chart }}" == "charts/enterprise/clusterissuer" ]]; then - helm install cert-manager oci://tccr.io/truecharts/cert-manager --namespace cert-manager --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/cloudnative-pg" ]]; then - helm install cloudnative-pg oci://tccr.io/truecharts/cloudnative-pg --namespace cloudnative-pg --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/operators/prometheus-operator" ]]; then - helm install prometheus-operator oci://tccr.io/truecharts/prometheus-operator --namespace prometheus-operator --create-namespace --wait - fi - if [[ "${{ matrix.chart }}" != "charts/enterprise/traefik" ]]; then - helm install traefik oci://tccr.io/truecharts/traefik --namespace traefik --create-namespace --wait - fi + ./.github/scripts/install_dependencies.sh "${{ matrix.chart }}" + - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" # --upgrade diff --git a/charts/enterprise/traefik/Chart.yaml b/charts/enterprise/traefik/Chart.yaml index a112d9fb02d..5c4c4f95bf6 100644 --- a/charts/enterprise/traefik/Chart.yaml +++ b/charts/enterprise/traefik/Chart.yaml @@ -1,39 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: traefik -version: 25.1.4 +version: 25.1.5 appVersion: 2.10.5 description: Traefik is a flexible reverse proxy and Ingress Provider. home: https://truecharts.org/charts/enterprise/traefik icon: https://truecharts.org/img/hotlink-ok/chart-icons/traefik.png deprecated: false sources: - - https://traefik.io/ - - https://github.com/traefik/traefik - - https://github.com/traefik/traefik-helm-chart - - https://github.com/truecharts/charts/tree/master/charts/enterprise/traefik - - https://github.com/truecharts/containers/tree/master/mirrortraefik + - https://traefik.io/ + - https://github.com/traefik/traefik + - https://github.com/traefik/traefik-helm-chart + - https://github.com/truecharts/charts/tree/master/charts/enterprise/traefik maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - traefik - - ingress + - traefik + - ingress dependencies: - - name: common - version: 17.2.19 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.19 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: network - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: enterprise + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: network + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: enterprise type: application diff --git a/charts/enterprise/traefik/values.yaml b/charts/enterprise/traefik/values.yaml index 6e3f6d7ac72..3d5b8818264 100644 --- a/charts/enterprise/traefik/values.yaml +++ b/charts/enterprise/traefik/values.yaml @@ -1,5 +1,5 @@ image: - repository: tccr.io/truecharts/traefik + repository: tccr.io/tccr/traefik tag: v2.10.5@sha256:b277733b5b8d7f9d2761813d97e161c1f64ec77960f9c06adde13868efbc8dce pullPolicy: IfNotPresent manifestManager: diff --git a/charts/enterprise/velero/Chart.yaml b/charts/enterprise/velero/Chart.yaml index 681110ad09d..3c7a7446c97 100644 --- a/charts/enterprise/velero/Chart.yaml +++ b/charts/enterprise/velero/Chart.yaml @@ -1,45 +1,44 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: velero -version: 3.1.4 +version: 3.1.5 appVersion: latest description: Velero is a kubernetes-native backup solution home: https://truecharts.org/charts/incubator/velero icon: https://truecharts.org/img/hotlink-ok/chart-icons/velero.png deprecated: false sources: - - https://cert-manager.io/ - - https://github.com/cert-manager - - https://github.com/truecharts/charts/tree/master/charts/incubator/velero - - https://github.com/truecharts/containers/tree/master/mirroralpine + - https://cert-manager.io/ + - https://github.com/cert-manager + - https://github.com/truecharts/charts/tree/master/charts/incubator/velero maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - velero - - backup + - velero + - backup dependencies: - - name: common - version: 17.2.19 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: velero - version: 5.2.0 - repository: https://vmware-tanzu.github.io/helm-charts - condition: "" - alias: velero - tags: [] - import-values: [] + - name: common + version: 17.2.19 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: velero + version: 5.2.0 + repository: https://vmware-tanzu.github.io/helm-charts + condition: "" + alias: velero + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: operators - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/enterprise/velero/values.yaml b/charts/enterprise/velero/values.yaml index f9e47a4f8d9..e3fe1c85dc3 100644 --- a/charts/enterprise/velero/values.yaml +++ b/charts/enterprise/velero/values.yaml @@ -1,6 +1,6 @@ image: pullPolicy: IfNotPresent - repository: tccr.io/truecharts/alpine + repository: tccr.io/tccr/alpine tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 manifestManager: enabled: false diff --git a/charts/incubator/csi-driver-nfs/Chart.yaml b/charts/incubator/csi-driver-nfs/Chart.yaml index af3c0796a63..dcf80f35eda 100644 --- a/charts/incubator/csi-driver-nfs/Chart.yaml +++ b/charts/incubator/csi-driver-nfs/Chart.yaml @@ -1,45 +1,44 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: csi-driver-nfs -version: 1.0.12 +version: 1.0.13 appVersion: latest description: csi-driver-nfs is a nfs CSI driver for kubernetes home: https://truecharts.org/charts/incubator/csi-driver-nfs icon: https://truecharts.org/img/hotlink-ok/chart-icons/csi-driver-nfs.png deprecated: false sources: - - https://cert-manager.io/ - - https://github.com/cert-manager - - https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-nfs - - https://github.com/truecharts/containers/tree/master/mirroralpine + - https://cert-manager.io/ + - https://github.com/cert-manager + - https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-nfs maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - csi-driver-nfs - - backup + - csi-driver-nfs + - backup dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: csi-driver-nfs - version: v4.5.0 - repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts - condition: "" - alias: csi-driver-nfs - tags: [] - import-values: [] + - name: common + version: 17.2.18 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: csi-driver-nfs + version: v4.5.0 + repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts + condition: "" + alias: csi-driver-nfs + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "false" - truecharts.org/category: CSI - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "false" + truecharts.org/category: CSI + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/incubator/csi-driver-nfs/values.yaml b/charts/incubator/csi-driver-nfs/values.yaml index 1149f6db76c..56abfdb2466 100644 --- a/charts/incubator/csi-driver-nfs/values.yaml +++ b/charts/incubator/csi-driver-nfs/values.yaml @@ -1,6 +1,6 @@ image: pullPolicy: IfNotPresent - repository: tccr.io/truecharts/alpine + repository: tccr.io/tccr/alpine tag: latest@sha256:17cd77e25d3fa829d168caec4db7bb5b52ceeb935d8ca0d1180de6f615553dc4 manifestManager: enabled: false diff --git a/charts/incubator/pushbits-server/Chart.yaml b/charts/incubator/pushbits-server/Chart.yaml index ef7c1e1ab68..ca2aa71878d 100644 --- a/charts/incubator/pushbits-server/Chart.yaml +++ b/charts/incubator/pushbits-server/Chart.yaml @@ -1,40 +1,40 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: pushbits-server -version: 0.0.8 -appVersion: 0.10.1 +version: 0.0.9 +appVersion: 0.10.2 description: Send push notifications via a simple web API, and delivers them to your users. home: https://truecharts.org/charts/incubator/pushbits-server icon: https://truecharts.org/img/hotlink-ok/chart-icons/pushbits-server.png deprecated: false sources: - - https://github.com/pushbits/server - - https://github.com/truecharts/charts/tree/master/charts/incubator/pushbits-server - - https://github.com/truecharts/containers/tree/master/mirrorpushbits-server + - https://github.com/pushbits/server + - https://github.com/truecharts/charts/tree/master/charts/incubator/pushbits-server + - https://ghcr.io/pushbits/server maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - pushbits-server - - notifications - - matrix -dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] -annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/catagories: | + - pushbits-server - notifications - truecharts.org/category: unsorted - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + - matrix +dependencies: + - name: common + version: 17.2.18 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] +annotations: + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/catagories: | + - notifications + truecharts.org/category: unsorted + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/incubator/pushbits-server/values.yaml b/charts/incubator/pushbits-server/values.yaml index 071aab58de4..568428c2342 100644 --- a/charts/incubator/pushbits-server/values.yaml +++ b/charts/incubator/pushbits-server/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/pushbits-server + repository: ghcr.io/pushbits/server pullPolicy: IfNotPresent - tag: v0.10.1@sha256:6020128d995a0054b7104f5a383408a773c5914dbc2d073a71501524f8b79b87 + tag: 0.10.2@sha256:59de6e364715e5a5daf07131dd5748ce24c3a8ef0d3b57a81c5d8d973732faf5 service: main: diff --git a/charts/operators/cert-manager/Chart.yaml b/charts/operators/cert-manager/Chart.yaml index b917687ca6b..bad4052b485 100644 --- a/charts/operators/cert-manager/Chart.yaml +++ b/charts/operators/cert-manager/Chart.yaml @@ -1,46 +1,45 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: cert-manager -version: 3.1.5 +version: 3.1.6 appVersion: latest description: Cert-Manager is a kubernetes-aware certificate manager home: https://truecharts.org/charts/operators/cert-manager icon: https://truecharts.org/img/hotlink-ok/chart-icons/cert-manager.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/operators/cert-manager - - https://github.com/truecharts/containers/tree/master/mirroralpine - - https://github.com/cert-manager - - https://cert-manager.io/ + - https://github.com/cert-manager + - https://cert-manager.io/ + - https://github.com/truecharts/charts/tree/master/charts/operators/cert-manager maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - cert-manager - - certificates - - security + - cert-manager + - certificates + - security dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: cert-manager - version: v1.13.3 - repository: https://charts.jetstack.io - condition: "" - alias: certmanager - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: cert-manager + version: v1.13.3 + repository: https://charts.jetstack.io + condition: "" + alias: certmanager + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: operators - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: operators + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: operators type: application diff --git a/charts/operators/cert-manager/values.yaml b/charts/operators/cert-manager/values.yaml index 9c35540ecd3..9f2c6d5fe66 100644 --- a/charts/operators/cert-manager/values.yaml +++ b/charts/operators/cert-manager/values.yaml @@ -1,5 +1,5 @@ image: - repository: tccr.io/truecharts/alpine + repository: tccr.io/tccr/alpine pullPolicy: IfNotPresent tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 diff --git a/charts/operators/cloudnative-pg/Chart.yaml b/charts/operators/cloudnative-pg/Chart.yaml index d8e8fc6729f..e52a27b66e9 100644 --- a/charts/operators/cloudnative-pg/Chart.yaml +++ b/charts/operators/cloudnative-pg/Chart.yaml @@ -1,46 +1,45 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: cloudnative-pg -version: 5.2.5 +version: 5.2.6 appVersion: latest description: CloudNativePG is a clustered postgresql database operator home: https://truecharts.org/charts/operators/cloudnative-pg icon: https://truecharts.org/img/hotlink-ok/chart-icons/cloudnative-pg.png deprecated: false sources: - - https://cloudnative-pg.io/ - - https://github.com/cloudnative-pg - - https://github.com/truecharts/charts/tree/master/charts/operators/cloudnative-pg - - https://github.com/truecharts/containers/tree/master/mirroralpine + - https://github.com/cloudnative-pg + - https://github.com/truecharts/charts/tree/master/charts/operators/cloudnative-pg + - https://cloudnative-pg.io/ maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - database - - cloudnative-pg - - cnpg + - database + - cloudnative-pg + - cnpg dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: cloudnative-pg - version: 0.20.0 - repository: https://cloudnative-pg.github.io/charts - condition: "" - alias: cloudnative-pg - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: cloudnative-pg + version: 0.20.0 + repository: https://cloudnative-pg.github.io/charts + condition: "" + alias: cloudnative-pg + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: operators - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: operators + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: operators type: application diff --git a/charts/operators/cloudnative-pg/values.yaml b/charts/operators/cloudnative-pg/values.yaml index c788a793a96..31aab8b26c0 100644 --- a/charts/operators/cloudnative-pg/values.yaml +++ b/charts/operators/cloudnative-pg/values.yaml @@ -1,5 +1,5 @@ image: - repository: tccr.io/truecharts/alpine + repository: tccr.io/tccr/alpine pullPolicy: IfNotPresent tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 diff --git a/charts/operators/csi-driver-smb/Chart.yaml b/charts/operators/csi-driver-smb/Chart.yaml index 53c599244f6..26b9ed4df9d 100644 --- a/charts/operators/csi-driver-smb/Chart.yaml +++ b/charts/operators/csi-driver-smb/Chart.yaml @@ -1,45 +1,44 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: csi-driver-smb -version: 2.1.5 +version: 2.1.6 appVersion: latest description: csi-driver-smb is a smb CSI driver for kubernetes home: https://truecharts.org/charts/incubator/csi-driver-smb icon: https://truecharts.org/img/hotlink-ok/chart-icons/csi-driver-smb.png deprecated: false sources: - - https://github.com/cert-manager - - https://cert-manager.io/ - - https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-smb - - https://github.com/truecharts/containers/tree/master/mirroralpine + - https://github.com/cert-manager + - https://cert-manager.io/ + - https://github.com/truecharts/charts/tree/master/charts/incubator/csi-driver-smb maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - csi-driver-smb - - backup + - csi-driver-smb + - backup dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: csi-driver-smb - version: v1.13.0 - repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts - condition: "" - alias: csi-driver-smb - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: csi-driver-smb + version: v1.13.0 + repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-smb/master/charts + condition: "" + alias: csi-driver-smb + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "false" - truecharts.org/category: CSI - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "false" + truecharts.org/category: CSI + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/operators/csi-driver-smb/values.yaml b/charts/operators/csi-driver-smb/values.yaml index 694191e3e00..9e188949bdb 100644 --- a/charts/operators/csi-driver-smb/values.yaml +++ b/charts/operators/csi-driver-smb/values.yaml @@ -1,6 +1,6 @@ image: pullPolicy: IfNotPresent - repository: tccr.io/truecharts/alpine + repository: tccr.io/tccr/alpine tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 manifestManager: enabled: false diff --git a/charts/operators/metallb/Chart.yaml b/charts/operators/metallb/Chart.yaml index c5c01b93616..3afea0596b2 100644 --- a/charts/operators/metallb/Chart.yaml +++ b/charts/operators/metallb/Chart.yaml @@ -1,45 +1,44 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: metallb -version: 13.1.5 +version: 13.1.6 appVersion: latest description: A network load-balancer implementation for Kubernetes using standard routing protocols home: https://truecharts.org/charts/operators/metallb icon: https://truecharts.org/img/hotlink-ok/chart-icons/metallb.png deprecated: false sources: - - https://github.com/metallb/metallb - - https://metallb.universe.tf - - https://github.com/truecharts/charts/tree/master/charts/operators/metallb - - https://github.com/truecharts/containers/tree/master/mirroralpine + - https://metallb.universe.tf + - https://github.com/truecharts/charts/tree/master/charts/operators/metallb + - https://github.com/metallb/metallb maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - metallb - - loadbalancer + - metallb + - loadbalancer dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: metallb - version: 0.13.12 - repository: https://metallb.github.io/metallb - condition: "" - alias: metallb - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: metallb + version: 0.13.12 + repository: https://metallb.github.io/metallb + condition: "" + alias: metallb + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: operators - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: operators + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: operators type: application diff --git a/charts/operators/metallb/values.yaml b/charts/operators/metallb/values.yaml index c788a793a96..31aab8b26c0 100644 --- a/charts/operators/metallb/values.yaml +++ b/charts/operators/metallb/values.yaml @@ -1,5 +1,5 @@ image: - repository: tccr.io/truecharts/alpine + repository: tccr.io/tccr/alpine pullPolicy: IfNotPresent tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 diff --git a/charts/operators/openebs/Chart.yaml b/charts/operators/openebs/Chart.yaml index d6507b8eeb0..2bf56dc4a34 100644 --- a/charts/operators/openebs/Chart.yaml +++ b/charts/operators/openebs/Chart.yaml @@ -1,45 +1,44 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: openebs -version: 2.1.5 +version: 2.1.6 appVersion: latest description: OpenEBS is a umbrella container storage provisioner home: https://truecharts.org/charts/incubator/openebs icon: https://truecharts.org/img/hotlink-ok/chart-icons/openebs.png deprecated: false sources: - - https://cert-manager.io/ - - https://github.com/cert-manager - - https://github.com/truecharts/charts/tree/master/charts/incubator/openebs - - https://github.com/truecharts/containers/tree/master/mirroralpine + - https://cert-manager.io/ + - https://github.com/cert-manager + - https://github.com/truecharts/charts/tree/master/charts/incubator/openebs maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - openebs - - backup + - openebs + - backup dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: openebs - version: 3.10.0 - repository: https://openebs.github.io/charts - condition: "" - alias: openebs - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: openebs + version: 3.10.0 + repository: https://openebs.github.io/charts + condition: "" + alias: openebs + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "false" - truecharts.org/category: CSI - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "false" + truecharts.org/category: CSI + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/operators/openebs/values.yaml b/charts/operators/openebs/values.yaml index 694191e3e00..9e188949bdb 100644 --- a/charts/operators/openebs/values.yaml +++ b/charts/operators/openebs/values.yaml @@ -1,6 +1,6 @@ image: pullPolicy: IfNotPresent - repository: tccr.io/truecharts/alpine + repository: tccr.io/tccr/alpine tag: latest@sha256:51c4ca9a8213d3f4026bd560e8aa2de365d275d6cd0298eff2ae20671fef34e9 manifestManager: enabled: false diff --git a/charts/operators/prometheus-operator/Chart.yaml b/charts/operators/prometheus-operator/Chart.yaml index f0360ab2427..759d81275fc 100644 --- a/charts/operators/prometheus-operator/Chart.yaml +++ b/charts/operators/prometheus-operator/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: prometheus-operator -version: 3.1.5 +version: 3.1.6 appVersion: 0.69.1 description: Prometheus Operator is an operator for prometheus home: https://truecharts.org/charts/operators/prometheus-operator icon: https://truecharts.org/img/hotlink-ok/chart-icons/prometheus-operator.png deprecated: false sources: - - https://github.com/prometheus-operator - - https://github.com/truecharts/charts/tree/master/charts/operators/prometheus-operator - - https://github.com/truecharts/containers/tree/master/mirrorkube-webhook-certgen + - https://github.com/truecharts/charts/tree/master/charts/operators/prometheus-operator + - https://quay.io/prometheus-operator/prometheus-config-reloader + - https://github.com/prometheus-operator maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - operator - - prometheus - - metics + - operator + - prometheus + - metics dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: operators - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: operators + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: operators type: application diff --git a/charts/operators/prometheus-operator/values.yaml b/charts/operators/prometheus-operator/values.yaml index 8f0948b6e1a..71505efd1fa 100644 --- a/charts/operators/prometheus-operator/values.yaml +++ b/charts/operators/prometheus-operator/values.yaml @@ -1,21 +1,21 @@ image: - repository: tccr.io/truecharts/prometheus-operator - tag: "v0.69.1@sha256:dc0ad671ec11e5a5b6032a7d36b9451b10f0848f7f0d7203b761de6a1b7c0e99" + repository: quay.io/prometheus-operator/prometheus-operator + tag: "v0.70.0@sha256:e76d06ac84abeb466feb9682e1d0385c4e5a463bc023b32446916b640546a289" pullPolicy: configReloaderImage: - repository: tccr.io/truecharts/prometheus-config-reloader - tag: "v0.69.1@sha256:0eb31dcf295350b906e462113f3c2f274ef38f44f95d0e6bd584fb46320e6327" + repository: quay.io/prometheus-operator/prometheus-config-reloader + tag: "v0.70.0@sha256:411cec4bc5e6306804c2d5939c165411a88fb7991c2bd0c3ef4866387f683374" pullPolicy: thanosImage: - repository: tccr.io/truecharts/thanos - tag: "v0.32.5@sha256:2e10c5d3525e9b1b7ca1341240b62ce392a31db5adffa0e4e5b232f784f01f5b" + repository: quay.io/thanos/thanos + tag: "v0.33.0@sha256:70d2ea73792e2d26a6eb45e0c999fc88e8cebc1ba443ca059e19715231365cc8" pullPolicy: patchImage: - repository: tccr.io/truecharts/kube-webhook-certgen - tag: latest@sha256:28c6de4c7fe7527daafd761e2d33aafe1094004e77248fcc674cc6e092da1017 + repository: registry.k8s.io/ingress-nginx/kube-webhook-certgen + tag: v20221220-controller-v1.5.1-58-g787ea74b6@sha256:4d99688e557396f5baa150e019ff7d5b7334f9b9f9a8dab64038c5c2a006f6b5 pullPolicy: workload: diff --git a/charts/stable/anki-sync-server/Chart.yaml b/charts/stable/anki-sync-server/Chart.yaml index 667f4df791c..2a0de87c8c0 100644 --- a/charts/stable/anki-sync-server/Chart.yaml +++ b/charts/stable/anki-sync-server/Chart.yaml @@ -1,36 +1,36 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: anki-sync-server -version: 5.1.4 +version: 5.1.6 appVersion: 1.1.14 description: A cross-platform Anki sync server. home: https://truecharts.org/charts/incubator/anki-sync-server icon: https://truecharts.org/img/hotlink-ok/chart-icons/anki-sync-server.png deprecated: false sources: - - https://github.com/ankicommunity/anki-devops-services - - https://github.com/truecharts/charts/tree/master/charts/incubator/anki-sync-server - - https://github.com/truecharts/containers/tree/master/mirroranki-sync-server + - https://github.com/ankicommunity/anki-devops-services + - https://github.com/truecharts/charts/tree/master/charts/incubator/anki-sync-server + - https://hub.docker.com/r/ankicommunity/anki-sync-server-rs maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - anki-sync-server + - anki-sync-server dependencies: - - name: common - version: 17.2.19 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.19 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/anki-sync-server/values.yaml b/charts/stable/anki-sync-server/values.yaml index f8e507b5672..cac9776c996 100644 --- a/charts/stable/anki-sync-server/values.yaml +++ b/charts/stable/anki-sync-server/values.yaml @@ -1,6 +1,6 @@ image: - repository: tccr.io/truecharts/anki-sync-server - tag: v1.1.14@sha256:3951d969ee43c9a0e69394e49111c55a69d4b5784b1cfe121a0151c29dccd811 + repository: ankicommunity/anki-sync-server-rs + tag: 1.1.14@sha256:553dbd9600b1580bca34e6ed60c5d8d9fb71f4fb6cdc81d4192f2db15af8ccff pullPolicy: IfNotPresent securityContext: diff --git a/charts/stable/answer/Chart.yaml b/charts/stable/answer/Chart.yaml index df8d41d9fe9..e4b036dd429 100644 --- a/charts/stable/answer/Chart.yaml +++ b/charts/stable/answer/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: answer -version: 2.1.4 +version: 2.1.6 appVersion: 1.2.0 description: A Q&A platform software for teams at any scales. home: https://truecharts.org/charts/incubator/answer icon: https://truecharts.org/img/hotlink-ok/chart-icons/answer.png deprecated: false sources: - - https://github.com/answerdev/answer - - https://github.com/truecharts/charts/tree/master/charts/incubator/answer - - https://github.com/truecharts/containers/tree/master/mirroranswer + - https://github.com/answerdev/answer + - https://github.com/truecharts/charts/tree/master/charts/incubator/answer + - https://hub.docker.com/r/answerdev/answer maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - answer - - forum + - answer + - forum dependencies: - - name: common - version: 17.2.19 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.19 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: forum - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: forum + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/answer/values.yaml b/charts/stable/answer/values.yaml index f618b8f68c0..c77a456c3b1 100644 --- a/charts/stable/answer/values.yaml +++ b/charts/stable/answer/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/answer + repository: answerdev/answer pullPolicy: IfNotPresent - tag: v1.2.0@sha256:70a578170bca4a7a1040d44cb5ff143d5e9c2c2f32f9d48f1ad4519d61c35451 + tag: 1.2.0@sha256:9b7fd1410df5587e56d446741760ecbd63d342c5e50587d3570e33282cf9cd77 service: main: diff --git a/charts/stable/automatic-ripping-machine/Chart.yaml b/charts/stable/automatic-ripping-machine/Chart.yaml index b0481cfde91..aebcee88667 100644 --- a/charts/stable/automatic-ripping-machine/Chart.yaml +++ b/charts/stable/automatic-ripping-machine/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: automatic-ripping-machine -version: 2.1.4 +version: 2.1.6 appVersion: 2.6.60 description: Automatic Ripping Machine (ARM) Scripts. home: https://truecharts.org/charts/incubator/automatic-ripping-machine icon: https://truecharts.org/img/hotlink-ok/chart-icons/automatic-ripping-machine.png deprecated: false sources: - - https://github.com/automatic-ripping-machine/automatic-ripping-machine - - https://github.com/truecharts/charts/tree/master/charts/incubator/automatic-ripping-machine - - https://github.com/truecharts/containers/tree/master/mirrorautomatic-ripping-machine + - https://github.com/automatic-ripping-machine/automatic-ripping-machine + - https://github.com/truecharts/charts/tree/master/charts/incubator/automatic-ripping-machine + - https://hub.docker.com/r/automaticrippingmachine/automatic-ripping-machine maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - automatic-ripping-machine - - media + - automatic-ripping-machine + - media dependencies: - - name: common - version: 17.2.19 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.19 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/automatic-ripping-machine/values.yaml b/charts/stable/automatic-ripping-machine/values.yaml index 28ed627a114..49b75dec045 100644 --- a/charts/stable/automatic-ripping-machine/values.yaml +++ b/charts/stable/automatic-ripping-machine/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/automatic-ripping-machine + repository: automaticrippingmachine/automatic-ripping-machine pullPolicy: IfNotPresent - tag: v2.6.60@sha256:bf79fee03b4ef8867ccbee6448748bf58b86a59c2400dd9beb5a4b926c6e7c10 + tag: 2.6.60@sha256:4598de30009b6310fcd877f9141824b3d8ce96c6b1825da734d4c31feeb03651 securityContext: container: diff --git a/charts/stable/backuppc/Chart.yaml b/charts/stable/backuppc/Chart.yaml index a41b9f6e56e..815c32662b2 100644 --- a/charts/stable/backuppc/Chart.yaml +++ b/charts/stable/backuppc/Chart.yaml @@ -1,39 +1,39 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: backuppc -version: 5.1.4 +version: 5.1.6 appVersion: 6.0.2 description: A high-performance, enterprise-grade system for backing up Linux, Windows and macOS PCs and laptops to a server's disk. home: https://truecharts.org/charts/incubator/backuppc icon: https://truecharts.org/img/hotlink-ok/chart-icons/backuppc.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/backuppc - - https://github.com/truecharts/containers/tree/master/mirrorbackuppc - - https://github.com/tiredofit/docker-backuppc - - https://backuppc.github.io/backuppc/index.html + - https://github.com/tiredofit/docker-backuppc + - https://backuppc.github.io/backuppc/index.html + - https://github.com/truecharts/charts/tree/master/charts/incubator/backuppc + - https://hub.docker.com/r/tiredofit/backuppc maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - backuppc - - Backup - - Network-Web + - backuppc + - Backup + - Network-Web dependencies: - - name: common - version: 17.2.19 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.19 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: Backup - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: Backup + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/backuppc/values.yaml b/charts/stable/backuppc/values.yaml index 362a83df917..42c57c1fce1 100644 --- a/charts/stable/backuppc/values.yaml +++ b/charts/stable/backuppc/values.yaml @@ -1,7 +1,7 @@ image: + repository: tiredofit/backuppc + tag: 6.0.2@7f4d7c89a204a7a451f90d5d8f551e21120eb2ea0f9500fd34ca5b8e22dc9779 pullPolicy: IfNotPresent - repository: tccr.io/truecharts/backuppc - tag: v6.0.2@sha256:80fe126415f0b530dd7d2645da23c8409f62f184a018c52a3ec1d8c5237d30ff securityContext: container: diff --git a/charts/stable/bazarr/Chart.yaml b/charts/stable/bazarr/Chart.yaml index 90df7c517d7..717da89a44e 100644 --- a/charts/stable/bazarr/Chart.yaml +++ b/charts/stable/bazarr/Chart.yaml @@ -1,41 +1,41 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: bazarr -version: 17.1.4 +version: 17.1.6 appVersion: 1.4.0 description: Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements home: https://truecharts.org/charts/stable/bazarr icon: https://truecharts.org/img/hotlink-ok/chart-icons/bazarr.png deprecated: false sources: - - https://github.com/morpheus65535/bazarr - - https://github.com/truecharts/charts/tree/master/charts/stable/bazarr - - https://github.com/truecharts/containers/tree/master/mirrorexportarr + - https://github.com/morpheus65535/bazarr + - https://github.com/truecharts/charts/tree/master/charts/stable/bazarr + - https://ghcr.io/onedr0p/exportarr maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - bazarr - - radarr - - sonarr - - subtitles - - usenet - - torrent + - bazarr + - radarr + - sonarr + - subtitles + - usenet + - torrent dependencies: - - name: common - version: 17.2.19 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.19 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/bazarr/values.yaml b/charts/stable/bazarr/values.yaml index cff11f956ea..56c36b9ccd2 100644 --- a/charts/stable/bazarr/values.yaml +++ b/charts/stable/bazarr/values.yaml @@ -3,9 +3,9 @@ image: pullPolicy: IfNotPresent tag: 1.4.0@sha256:c81c4d9cbec093d5a999cfa3cd1af01d3f00d6292d6f5c33608510cef0ed83c7 exportarrImage: - repository: tccr.io/truecharts/exportarr + repository: ghcr.io/onedr0p/exportarr + tag: v1.6.0@b522e128509b766cf66f847190fccd225ff194dc76775fe6a215f2dd3010cac2 pullPolicy: IfNotPresent - tag: v1.6.0@sha256:ee118701a2ebe8ccb5c25e1003fbed9ef7ce217d4e4b8b6df30cc2a0def818f8 service: main: ports: diff --git a/charts/stable/cs2/Chart.yaml b/charts/stable/cs2/Chart.yaml index fb5080238d1..8d6612d1a51 100644 --- a/charts/stable/cs2/Chart.yaml +++ b/charts/stable/cs2/Chart.yaml @@ -1,37 +1,36 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: cs2 -version: 2.1.4 +version: 2.1.5 appVersion: latest description: A custom SteamCMD chart that runs CS2. home: https://truecharts.org/charts/incubator/cs2 icon: https://truecharts.org/img/hotlink-ok/chart-icons/cs2.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/cs2 - - https://github.com/truecharts/containers/tree/master/mirrorcs2 - - https://github.com/ich777/docker-steamcmd-server/tree/cs2 + - https://github.com/ich777/docker-steamcmd-server/tree/cs2 + - https://github.com/truecharts/charts/tree/master/charts/incubator/cs2 maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - cs2 - - counter-strike + - cs2 + - counter-strike dependencies: - - name: common - version: 17.2.19 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.19 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: games - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: games + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/cs2/values.yaml b/charts/stable/cs2/values.yaml index f7fff9b4b2b..9ff02e44d45 100644 --- a/charts/stable/cs2/values.yaml +++ b/charts/stable/cs2/values.yaml @@ -1,5 +1,5 @@ image: - repository: tccr.io/truecharts/cs2 + repository: tccr.io/tccr/cs2 pullPolicy: IfNotPresent tag: latest@sha256:24f52ee1c81175980b76914803bc3ca15c02d4217ccc1c0baf414b8cd2d5f44f diff --git a/charts/stable/ctfd/Chart.yaml b/charts/stable/ctfd/Chart.yaml index 8b9d60be7be..0b9273a6d65 100644 --- a/charts/stable/ctfd/Chart.yaml +++ b/charts/stable/ctfd/Chart.yaml @@ -1,51 +1,51 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: ctfd -version: 3.1.5 +version: 3.1.7 appVersion: 3.6.0 description: CTFd is a Capture The Flag framework focusing on ease of use and customizability. home: https://truecharts.org/charts/incubator/ctfd icon: https://truecharts.org/img/hotlink-ok/chart-icons/ctfd.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/ctfd - - https://github.com/truecharts/containers/tree/master/mirrorctfd - - https://github.com/CTFd/CTFd + - https://ghcr.io/ctfd/ctfd + - https://github.com/CTFd/CTFd + - https://github.com/truecharts/charts/tree/master/charts/incubator/ctfd maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - ctfd - - learning + - ctfd + - learning dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: mariadb - version: 12.1.3 - repository: https://deps.truecharts.org/ - condition: mariadb.enabled - alias: "" - tags: [] - import-values: [] - - name: redis - version: 11.1.3 - repository: https://deps.truecharts.org - condition: redis.enabled - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: mariadb + version: 12.1.3 + repository: https://deps.truecharts.org/ + condition: mariadb.enabled + alias: "" + tags: [] + import-values: [] + - name: redis + version: 11.1.3 + repository: https://deps.truecharts.org + condition: redis.enabled + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: learning - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: learning + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/ctfd/values.yaml b/charts/stable/ctfd/values.yaml index 140f5a00784..9facd19f17d 100644 --- a/charts/stable/ctfd/values.yaml +++ b/charts/stable/ctfd/values.yaml @@ -1,7 +1,8 @@ image: - repository: tccr.io/truecharts/ctfd + repository: ghcr.io/ctfd/ctfd + tag: 3.6.0@9b1e9b9b750703d919ac9ce3dca14e1e02fdaf6d0abb217e29d1bf7fd6e40834 pullPolicy: IfNotPresent - tag: v3.6.0@sha256:5492aa83311f41d70bb5f41b3c5467cf2fafc8b198300001121ad04ea05b6697 + service: main: diff --git a/charts/stable/custom-app/Chart.yaml b/charts/stable/custom-app/Chart.yaml index 81db09bdd58..7e290899f55 100644 --- a/charts/stable/custom-app/Chart.yaml +++ b/charts/stable/custom-app/Chart.yaml @@ -1,35 +1,35 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: custom-app -version: 11.1.4 +version: 11.1.5 appVersion: 0.21.1155 description: Advanced tool to create your own TrueCharts-based App home: https://truecharts.org/charts/stable/custom-app icon: https://truecharts.org/img/hotlink-ok/chart-icons/custom-app.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/stable/custom-app - - https://ghcr.io/linuxserver/jackett + - https://github.com/truecharts/charts/tree/master/charts/stable/custom-app + - https://ghcr.io/linuxserver/jackett maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - custom + - custom dependencies: - - name: common - version: 17.2.19 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.19 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: custom - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: custom + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/custom-app/ci/test-values.yaml b/charts/stable/custom-app/ci/test-values.yaml index a1cd7ec9447..2d81e2ce6e3 100644 --- a/charts/stable/custom-app/ci/test-values.yaml +++ b/charts/stable/custom-app/ci/test-values.yaml @@ -1,18 +1,24 @@ image: - repository: tccr.io/truecharts/jackett + repository: traefik/whoami pullPolicy: IfNotPresent - tag: v0.21.1155@sha256:e5422906419a2f5ddd24028d22c41e7abbf9133dc5ac87a06491cbbfe495f9cd + tag: v1.10.1@sha256:6bebf84c091b5da4d4228bf8905436e33ca371afc6f3bd52b1682b40d76b23de -securityContext: - readOnlyRootFilesystem: false +workload: + main: + podSpec: + containers: + main: + args: + - --port + - "8080" service: main: enabled: true ports: main: - port: 9117 - targetPort: 9117 + port: 8080 + targetPort: 8080 portsList: - name: "extraport" enabled: true diff --git a/charts/stable/factorio/Chart.yaml b/charts/stable/factorio/Chart.yaml index 553b35a9130..90e1363be56 100644 --- a/charts/stable/factorio/Chart.yaml +++ b/charts/stable/factorio/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: factorio -version: 6.1.4 +version: 6.1.6 appVersion: stable description: A game in which you build and maintain factories. home: https://truecharts.org/charts/incubator/factorio icon: https://truecharts.org/img/hotlink-ok/chart-icons/factorio.png deprecated: false sources: - - https://github.com/factoriotools/factorio-docker - - https://github.com/truecharts/charts/tree/master/charts/incubator/factorio - - https://github.com/truecharts/containers/tree/master/mirrorfactorio + - https://github.com/factoriotools/factorio-docker + - https://github.com/truecharts/charts/tree/master/charts/incubator/factorio + - https://hub.docker.com/r/factoriotools/factorio maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - factorio - - GameServers + - factorio + - GameServers dependencies: - - name: common - version: 17.2.19 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.19 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: GameServers - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: GameServers + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/factorio/values.yaml b/charts/stable/factorio/values.yaml index eb04673b056..46468758dd0 100644 --- a/charts/stable/factorio/values.yaml +++ b/charts/stable/factorio/values.yaml @@ -1,7 +1,7 @@ image: pullPolicy: IfNotPresent - repository: tccr.io/truecharts/factorio - tag: vstable@sha256:1554bb0a5ead1dacdfdffa7539d5d170d3f326aa82aad9f4d88f9e37f3e0ec85 + repository: factoriotools/factorio + tag: stable@sha256:37ac9795cdda909f1a3b92a6acb5d384a109b500f15a0c733bfadbc29e2eadcc securityContext: container: diff --git a/charts/stable/filestash/Chart.yaml b/charts/stable/filestash/Chart.yaml index cb526409e31..e61aee5aca7 100644 --- a/charts/stable/filestash/Chart.yaml +++ b/charts/stable/filestash/Chart.yaml @@ -1,40 +1,40 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: filestash -version: 5.1.4 +version: 5.1.6 appVersion: latest description: A Dropbox-like file manager that let you manage your data anywhere it is located. home: https://truecharts.org/charts/incubator/filestash icon: https://truecharts.org/img/hotlink-ok/chart-icons/filestash.png deprecated: false sources: - - https://github.com/mickael-kerjean/filestash - - https://www.filestash.app/ - - https://github.com/truecharts/charts/tree/master/charts/incubator/filestash - - https://github.com/truecharts/containers/tree/master/mirrorfilestash + - https://github.com/mickael-kerjean/filestash + - https://www.filestash.app/ + - https://github.com/truecharts/charts/tree/master/charts/incubator/filestash + - https://hub.docker.com/r/machines/filestash maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - filestash - - Cloud - - Productivity - - Network-Web + - filestash + - Cloud + - Productivity + - Network-Web dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: Cloud - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: Cloud + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/filestash/values.yaml b/charts/stable/filestash/values.yaml index 175ce58d00a..a29ac17924c 100644 --- a/charts/stable/filestash/values.yaml +++ b/charts/stable/filestash/values.yaml @@ -1,7 +1,7 @@ image: + repository: machines/filestash + tag: latest@d0d9aedd87f474c42ed724a14253c6b87848141bf1371d5f69684a27c3791514 pullPolicy: IfNotPresent - repository: tccr.io/truecharts/filestash - tag: latest@sha256:cd613d2f128b7aeba051aed421176c44bf5b3b6df0f72102ad6a4b76f569802d securityContext: container: diff --git a/charts/stable/filezilla/Chart.yaml b/charts/stable/filezilla/Chart.yaml index 8abcba726d1..c72a4e5acff 100644 --- a/charts/stable/filezilla/Chart.yaml +++ b/charts/stable/filezilla/Chart.yaml @@ -1,41 +1,41 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: filezilla -version: 10.1.4 -appVersion: 3.59.0 +version: 10.1.6 +appVersion: 3.64.0 description: A Helm chart for Kubernetes home: https://truecharts.org/charts/incubator/filezilla icon: https://truecharts.org/img/hotlink-ok/chart-icons/filezilla.png deprecated: false sources: - - https://filezilla-project.org/ - - https://github.com/truecharts/charts/tree/master/charts/incubator/filezilla - - https://github.com/truecharts/containers/tree/master/mirrorfilezilla - - https://github.com/linuxserver/docker-filezilla + - https://ghcr.io/linuxserver/filezilla + - https://filezilla-project.org/ + - https://github.com/linuxserver/docker-filezilla + - https://github.com/truecharts/charts/tree/master/charts/incubator/filezilla maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - filezilla - - ftp - - sftp - - ftps - - client + - filezilla + - ftp + - sftp + - ftps + - client dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/filezilla/values.yaml b/charts/stable/filezilla/values.yaml index a932a10dd37..074b3ef3561 100644 --- a/charts/stable/filezilla/values.yaml +++ b/charts/stable/filezilla/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/filezilla + repository: ghcr.io/linuxserver/filezilla + tag: 3.64.0@c415baaa62ddee0f69811f5bd34ffd981f301c00e97b6fea2361a4ce7ae34a04 pullPolicy: IfNotPresent - tag: 3.59.0@sha256:e6c854d35020a3fafddee718542cd99ef416432fe8424cf1b84559ecec1e6289 securityContext: container: diff --git a/charts/stable/freeradius/Chart.yaml b/charts/stable/freeradius/Chart.yaml index f89a98c87a4..92d59486bfc 100644 --- a/charts/stable/freeradius/Chart.yaml +++ b/charts/stable/freeradius/Chart.yaml @@ -1,37 +1,36 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: freeradius -version: 12.1.4 +version: 12.1.5 appVersion: 3.2.0 description: OpenSource Radius implementation home: https://truecharts.org/charts/stable/freeradius icon: https://truecharts.org/img/hotlink-ok/chart-icons/freeradius.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/stable/freeradius - - https://github.com/truecharts/containers/tree/master/mirrorfreeradius - - https://freeradius.org/ + - https://freeradius.org/ + - https://github.com/truecharts/charts/tree/master/charts/stable/freeradius maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - radius - - auth + - radius + - auth dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: auth - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: auth + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/freeradius/values.yaml b/charts/stable/freeradius/values.yaml index 77e16f404eb..19c7245733f 100644 --- a/charts/stable/freeradius/values.yaml +++ b/charts/stable/freeradius/values.yaml @@ -1,5 +1,5 @@ image: - repository: tccr.io/truecharts/freeradius + repository: tccr.io/tccr/freeradius pullPolicy: IfNotPresent tag: v3.2.0@sha256:e6a9295ae6caf282e957d0e329810e13bbdedc3bec3865e8ab322a0055107623 securityContext: diff --git a/charts/stable/gravity/Chart.yaml b/charts/stable/gravity/Chart.yaml index aad182b4da7..9c23d0aa846 100644 --- a/charts/stable/gravity/Chart.yaml +++ b/charts/stable/gravity/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: gravity -version: 2.1.4 -appVersion: 0.6.18 +version: 2.1.6 +appVersion: 0.6.15 description: Fully-replicated DNS and DHCP Server with ad-blocking powered by etcd. home: https://truecharts.org/charts/incubator/gravity icon: https://truecharts.org/img/hotlink-ok/chart-icons/gravity.png deprecated: false sources: - - https://github.com/BeryJu/gravity - - https://github.com/truecharts/charts/tree/master/charts/incubator/gravity - - https://github.com/truecharts/containers/tree/master/mirrorgravity + - https://github.com/truecharts/charts/tree/master/charts/incubator/gravity + - https://ghcr.io/beryju/gravity + - https://github.com/BeryJu/gravity maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - gravity - - dns - - networking + - gravity + - dns + - networking dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: dns - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: dns + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/gravity/values.yaml b/charts/stable/gravity/values.yaml index 81e50345013..f48a894d615 100644 --- a/charts/stable/gravity/values.yaml +++ b/charts/stable/gravity/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/gravity + repository: ghcr.io/beryju/gravity + tag: v0.6.15@3b30bdba02bdfcb7ee1ff55dbcdb12275b55b2ab20993f3a68e1610bc0b8380e pullPolicy: IfNotPresent - tag: v0.6.18@sha256:1fc3f7d2507d618859f4ec84c48af0caf82efaf284c0c34df423cbab138b88c8 securityContext: container: diff --git a/charts/stable/homebridge/Chart.yaml b/charts/stable/homebridge/Chart.yaml index 8def85eefb4..50a9fc0a2ad 100644 --- a/charts/stable/homebridge/Chart.yaml +++ b/charts/stable/homebridge/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: homebridge -version: 6.1.4 -appVersion: 2023-01 +version: 6.1.6 +appVersion: "2023" description: A lightweight NodeJS server that emulates the iOS HomeKit API home: https://truecharts.org/charts/incubator/homebridge icon: https://truecharts.org/img/hotlink-ok/chart-icons/homebridge.png deprecated: false sources: - - https://homebridge.io/ - - https://github.com/oznu/docker-homebridge - - https://github.com/truecharts/charts/tree/master/charts/incubator/homebridge - - https://github.com/truecharts/containers/tree/master/mirrorhomebridge + - https://github.com/oznu/docker-homebridge + - https://github.com/truecharts/charts/tree/master/charts/incubator/homebridge + - https://hub.docker.com/r/homebridge/homebridge + - https://homebridge.io/ maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - homebridge - - homekit + - homebridge + - homekit dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/homebridge/values.yaml b/charts/stable/homebridge/values.yaml index 1eb66c8299b..01d8476db42 100644 --- a/charts/stable/homebridge/values.yaml +++ b/charts/stable/homebridge/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/homebridge + repository: homebridge/homebridge + tag: 2023-12-30@392a3913060b4d3a12fd19845074ac6dee032948763306f3bba1795ac6248bae pullPolicy: IfNotPresent - tag: v2023-01@sha256:fa0512d8b38d20d4078b0f403c23c17716a045fcb4dc723b896461a766e22ee9 securityContext: container: diff --git a/charts/stable/impostor-server/Chart.yaml b/charts/stable/impostor-server/Chart.yaml index 89082d05754..27e0a32c190 100644 --- a/charts/stable/impostor-server/Chart.yaml +++ b/charts/stable/impostor-server/Chart.yaml @@ -1,35 +1,35 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: impostor-server -version: 7.1.4 +version: 7.1.6 appVersion: 1.8.4 description: A private Among Us server home: https://truecharts.org/charts/stable/impostor-server icon: https://truecharts.org/img/hotlink-ok/chart-icons/impostor-server.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/stable/impostor-server - - https://hub.docker.com/r/aeonlucid/impostor + - https://github.com/truecharts/charts/tree/master/charts/stable/impostor-server + - https://hub.docker.com/r/aeonlucid/impostor maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - impostor-server + - impostor-server dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: games - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: games + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/impostor-server/ci/values.yaml b/charts/stable/impostor-server/ci/values.yaml index 7a20f439ec4..1bef0c8b349 100644 --- a/charts/stable/impostor-server/ci/values.yaml +++ b/charts/stable/impostor-server/ci/values.yaml @@ -1,4 +1,4 @@ image: - repository: tccr.io/truecharts/impostor-server-nightly + repository: aeonlucid/impostor + tag: nightly@d50e3969809d5bad471f64e22a3b4d1ed1ad8273b168bd931f7e342874034979 pullPolicy: IfNotPresent - tag: vnightly@sha256:0144b558371c3b619bfaa947120108b96ad7100c96588df0d93b2b9b1c533b4f diff --git a/charts/stable/impostor-server/values.yaml b/charts/stable/impostor-server/values.yaml index 13a2fddabad..f61adb5b3ee 100644 --- a/charts/stable/impostor-server/values.yaml +++ b/charts/stable/impostor-server/values.yaml @@ -4,8 +4,8 @@ image: tag: v1.8.4@sha256:b01df7535ba5f39d01eb3c6620199d8bc6e3182d9c685307eb21001d7ad23273 nightlyImage: repository: aeonlucid/impostor + tag: nightly@d50e3969809d5bad471f64e22a3b4d1ed1ad8273b168bd931f7e342874034979 pullPolicy: IfNotPresent - tag: nightly@sha256:727310ae81860f9f9d933e6d0b4cc0fffac97920dce3bc4bf27aa293a297081a service: main: ports: diff --git a/charts/stable/kopia/Chart.yaml b/charts/stable/kopia/Chart.yaml index 62479b3a5c5..fcd542e7b61 100644 --- a/charts/stable/kopia/Chart.yaml +++ b/charts/stable/kopia/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: kopia -version: 10.1.4 +version: 10.1.6 appVersion: 0.15.0 description: Kopia is a simple, cross-platform tool for managing encrypted backups in the cloud. It provides fast, incremental backups, secure, client-side end-to-end encryption, compression and data deduplication. home: https://truecharts.org/charts/stable/kopia icon: https://truecharts.org/img/hotlink-ok/chart-icons/kopia.png deprecated: false sources: - - https://github.com/kopia/kopia - - https://github.com/truecharts/charts/tree/master/charts/stable/kopia - - https://github.com/truecharts/containers/tree/master/mirrorkopia - - https://kopia.io/docs/installation/#docker-images + - https://github.com/kopia/kopia + - https://kopia.io/docs/installation/#docker-images + - https://github.com/truecharts/charts/tree/master/charts/stable/kopia + - https://hub.docker.com/r/kopia/kopia maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - backup + - backup dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: utility - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: utility + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/kopia/values.yaml b/charts/stable/kopia/values.yaml index 329a41682bd..d9505470c67 100644 --- a/charts/stable/kopia/values.yaml +++ b/charts/stable/kopia/values.yaml @@ -1,6 +1,6 @@ image: - repository: tccr.io/truecharts/kopia - tag: v0.15.0@sha256:915804f85364d2bba51248ea6b639d0988933870dc475da71d028aa819ec8649 + repository: kopia/kopia + tag: 0.15.0@fea96cef392971a0dce271ac4edd289476e23f3d4e1b90958785ee579ff14c07 pullPolicy: IfNotPresent service: diff --git a/charts/stable/megasync/Chart.yaml b/charts/stable/megasync/Chart.yaml index b44240e6f9e..043bb459c4a 100644 --- a/charts/stable/megasync/Chart.yaml +++ b/charts/stable/megasync/Chart.yaml @@ -1,40 +1,40 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: megasync -version: 5.1.4 +version: 5.1.6 appVersion: latest description: MEGAsync can synchronize all of your devices with your MEGA account. home: https://truecharts.org/charts/incubator/megasync icon: https://truecharts.org/img/hotlink-ok/chart-icons/megasync.png deprecated: false sources: - - https://github.com/ich777/docker-megasync - - https://github.com/truecharts/charts/tree/master/charts/incubator/megasync - - https://github.com/truecharts/containers/tree/master/mirrormegasync + - https://github.com/ich777/docker-megasync + - https://github.com/truecharts/charts/tree/master/charts/incubator/megasync + - https://hub.docker.com/r/ich777/megasync maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - megasync - - Network-Other - - Productivity - - Tools-Utilities - - Backup + - megasync + - Network-Other + - Productivity + - Tools-Utilities + - Backup dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: Network-Other - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: Network-Other + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/megasync/values.yaml b/charts/stable/megasync/values.yaml index 3f82c22b9a6..98af70263a4 100644 --- a/charts/stable/megasync/values.yaml +++ b/charts/stable/megasync/values.yaml @@ -1,7 +1,7 @@ image: + repository: ich777/megasync + tag: latest@6c65468d9ed5b55ed6a08fec8e47421c81988b38cf48112308a03ca5a856eaec pullPolicy: IfNotPresent - repository: tccr.io/truecharts/megasync - tag: vlatest@sha256:04d8c00afb09019389c7142a8cd67a724a6abc388d55c691a56b130f91a928d2 securityContext: container: diff --git a/charts/stable/multi-scrobbler/Chart.yaml b/charts/stable/multi-scrobbler/Chart.yaml index 8dfc5b47e9c..cf8b24ee2ab 100644 --- a/charts/stable/multi-scrobbler/Chart.yaml +++ b/charts/stable/multi-scrobbler/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: multi-scrobbler -version: 5.1.4 -appVersion: 0.6.1 +version: 5.1.6 +appVersion: latest description: Track your music listening history from many sources and record to many scrobble clients. home: https://truecharts.org/charts/stable/multi-scrobbler icon: https://truecharts.org/img/hotlink-ok/chart-icons/multi-scrobbler.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/stable/multi-scrobbler - - https://github.com/truecharts/containers/tree/master/mirrormulti-scrobbler + - https://github.com/truecharts/charts/tree/master/charts/stable/multi-scrobbler + - https://hub.docker.com/r/foxxmd/multi-scrobbler maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - multi-scrobbler - - Network-Web - - MediaServer-Music + - multi-scrobbler + - Network-Web + - MediaServer-Music dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: Network-Web - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: Network-Web + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/multi-scrobbler/values.yaml b/charts/stable/multi-scrobbler/values.yaml index 6d43357e0bc..00396d5ce77 100644 --- a/charts/stable/multi-scrobbler/values.yaml +++ b/charts/stable/multi-scrobbler/values.yaml @@ -1,7 +1,7 @@ image: + repository: foxxmd/multi-scrobbler + tag: latest@05b72788b63ad0bd02286adccd641a721d65a0d886078f1c69a04602aeb15902 pullPolicy: IfNotPresent - repository: tccr.io/truecharts/multi-scrobbler - tag: v0.6.1@sha256:a08454006d704a1ca96a6dcb89f28556b636c5f131f58eca37014d54bfd74474 securityContext: container: diff --git a/charts/stable/nextcloud/Chart.yaml b/charts/stable/nextcloud/Chart.yaml index c7ebd2122b2..309ce62feb0 100644 --- a/charts/stable/nextcloud/Chart.yaml +++ b/charts/stable/nextcloud/Chart.yaml @@ -1,48 +1,47 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: nextcloud -version: 28.1.6 +version: 28.1.7 appVersion: 28.0.1 description: A private cloud server that puts the control and security of your own data back into your hands. home: https://truecharts.org/charts/stable/nextcloud icon: https://truecharts.org/img/hotlink-ok/chart-icons/nextcloud.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/stable/nextcloud - - https://hub.docker.com/r/nginxinc/nginx-unprivileged - - https://github.com/nextcloud/helm - - https://github.com/nextcloud/docker + - https://github.com/nextcloud/docker + - https://github.com/truecharts/charts/tree/master/charts/stable/nextcloud + - https://github.com/nextcloud/helm maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - nextcloud - - storage - - http - - web - - php + - nextcloud + - storage + - http + - web + - php dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: redis - version: 11.1.3 - repository: https://deps.truecharts.org - condition: redis.enabled - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: redis + version: 11.1.3 + repository: https://deps.truecharts.org + condition: redis.enabled + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: cloud - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: cloud + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/nextcloud/values.yaml b/charts/stable/nextcloud/values.yaml index da2ce574b76..d69e303dfea 100644 --- a/charts/stable/nextcloud/values.yaml +++ b/charts/stable/nextcloud/values.yaml @@ -1,5 +1,5 @@ image: - repository: tccr.io/truecharts/nextcloud-fpm + repository: tccr.io/tccr/nextcloud-fpm pullPolicy: IfNotPresent tag: v28.0.1@sha256:41f597b1bf8a1d924d4246f2d4af52704fcab4464ca50dee6b5db930ebc50a18 nginxImage: @@ -7,11 +7,11 @@ nginxImage: pullPolicy: IfNotPresent tag: 1.25.3@sha256:f67dc757811b9140d83408152cf9dc9296ad4f6b7d1ffb87874ad4759842e2be imaginaryImage: - repository: tccr.io/truecharts/nextcloud-imaginary + repository: tccr.io/tccr/nextcloud-imaginary pullPolicy: IfNotPresent tag: v20230401@sha256:6a227d1b0200d29f25028e07b8852f60e3d91a5814048933e70eccee749dc04c hpbImage: - repository: tccr.io/truecharts/nextcloud-push-notify + repository: tccr.io/tccr/nextcloud-push-notify pullPolicy: IfNotPresent tag: v0.6.3@sha256:b9c35ab123354eeac3996e361f8c30b8e4de6d2ccd69e5179a7c2a101a67b46f clamavImage: diff --git a/charts/stable/ombi/Chart.yaml b/charts/stable/ombi/Chart.yaml index baf3630067b..c179cb16768 100644 --- a/charts/stable/ombi/Chart.yaml +++ b/charts/stable/ombi/Chart.yaml @@ -1,41 +1,40 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: ombi -version: 17.1.4 +version: 17.1.5 appVersion: 4.43.10 description: Want a Movie or TV Show on Plex or Emby? Use Ombi! home: https://truecharts.org/charts/stable/ombi icon: https://truecharts.org/img/hotlink-ok/chart-icons/ombi.png deprecated: false sources: - - https://github.com/tidusjar/Ombi - - https://github.com/truecharts/charts/tree/master/charts/stable/ombi - - https://github.com/truecharts/containers/tree/master/mirrorombi + - https://github.com/tidusjar/Ombi + - https://github.com/truecharts/charts/tree/master/charts/stable/ombi maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - ombi - - plex - - emby - - sonarr - - radarr - - couchpotato + - ombi + - plex + - emby + - sonarr + - radarr + - couchpotato dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/ombi/values.yaml b/charts/stable/ombi/values.yaml index 603a60d50e6..80e655922ae 100644 --- a/charts/stable/ombi/values.yaml +++ b/charts/stable/ombi/values.yaml @@ -1,5 +1,5 @@ image: - repository: tccr.io/truecharts/ombi + repository: tccr.io/tccr/ombi pullPolicy: IfNotPresent tag: v4.43.10@sha256:bd0f1b0af7ddda20a369999901aa0016dc85ea94fc9fbe29be6481936a80264a service: diff --git a/charts/stable/openbooks/Chart.yaml b/charts/stable/openbooks/Chart.yaml index 29295bd0240..15da0118aa5 100644 --- a/charts/stable/openbooks/Chart.yaml +++ b/charts/stable/openbooks/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: openbooks -version: 3.1.4 +version: 3.1.6 appVersion: 4.5.0 description: IRC Highway eBook Downloads. home: https://truecharts.org/charts/incubator/openbooks icon: https://truecharts.org/img/hotlink-ok/chart-icons/openbooks.png deprecated: false sources: - - https://github.com/evan-buss/openbooks - - https://github.com/truecharts/charts/tree/master/charts/incubator/openbooks - - https://github.com/truecharts/containers/tree/master/mirroropenbooks + - https://github.com/truecharts/charts/tree/master/charts/incubator/openbooks + - https://hub.docker.com/r/evanbuss/openbooks + - https://github.com/evan-buss/openbooks maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - openbooks - - media + - openbooks + - media dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/openbooks/values.yaml b/charts/stable/openbooks/values.yaml index 4662b312302..91158d7d2ce 100644 --- a/charts/stable/openbooks/values.yaml +++ b/charts/stable/openbooks/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/openbooks + repository: evanbuss/openbooks + tag: 4.5.0@3f2e59a75b68950d57cfec5dc2b1b31d6c6b02706097c70b5438499b59fbdea2 pullPolicy: IfNotPresent - tag: 4.5.0@sha256:fe1b693d63397e01a5673b8b16180539c1cb952abfe4ebfb58d0950ab9886adc securityContext: container: diff --git a/charts/stable/pastey/Chart.yaml b/charts/stable/pastey/Chart.yaml index 0a85a5d1bf2..118aea1610c 100644 --- a/charts/stable/pastey/Chart.yaml +++ b/charts/stable/pastey/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: pastey -version: 5.1.4 +version: 5.1.6 appVersion: 0.5.1 description: A lightweight, self-hosted paste platform. home: https://truecharts.org/charts/stable/pastey icon: https://truecharts.org/img/hotlink-ok/chart-icons/pastey.png deprecated: false sources: - - https://github.com/Cesura/pastey - - https://github.com/truecharts/charts/tree/master/charts/stable/pastey - - https://github.com/truecharts/containers/tree/master/mirrorpastey-slim + - https://github.com/Cesura/pastey + - https://github.com/truecharts/charts/tree/master/charts/stable/pastey + - https://hub.docker.com/r/cesura/pastey maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - pastey - - Productivity - - Tools-Utilities + - pastey + - Productivity + - Tools-Utilities dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: Productivity - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: Productivity + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/pastey/values.yaml b/charts/stable/pastey/values.yaml index 65c60b3a64c..c5fab606e09 100644 --- a/charts/stable/pastey/values.yaml +++ b/charts/stable/pastey/values.yaml @@ -1,11 +1,11 @@ image: + repository: cesura/pastey + tag: 0.5.1@4c4f6e7a31f574a2034e0807bf874e03e350c8931d4477521fae2b3f3e2aecfe pullPolicy: IfNotPresent - repository: tccr.io/truecharts/pastey - tag: v0.5.1@sha256:cc7d7e848fb023bcc1bf82a568421d2fcb5bd29eb23a5694c925e71662e725ab slimImage: + repository: cesura/pastey + tag: 0.5.1-slim@dc994c07aa45ce94e7f67958c4d03a6dac95f56427e7113500f0e88a258d3b13 pullPolicy: IfNotPresent - repository: tccr.io/truecharts/pastey-slim - tag: v0.5.1@sha256:acde8ecaf0216a57e1ee4e449884a09b9d8493bcb69185ed74436489dabbece5 securityContext: container: diff --git a/charts/stable/photostructure/Chart.yaml b/charts/stable/photostructure/Chart.yaml index 91d0c9bbbc7..1e686ff7997 100644 --- a/charts/stable/photostructure/Chart.yaml +++ b/charts/stable/photostructure/Chart.yaml @@ -1,39 +1,39 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: photostructure -version: 5.1.4 -appVersion: 2.1.0 +version: 5.1.6 +appVersion: 2.1.0-alpha.7 description: PhotoStructure is your new home for all your photos and videos. home: https://truecharts.org/charts/incubator/photostructure icon: https://truecharts.org/img/hotlink-ok/chart-icons/photostructure.png deprecated: false sources: - - https://github.com/photostructure/photostructure-for-servers - - https://github.com/truecharts/charts/tree/master/charts/incubator/photostructure - - https://github.com/truecharts/containers/tree/master/mirrorphotostructure + - https://github.com/photostructure/photostructure-for-servers + - https://github.com/truecharts/charts/tree/master/charts/incubator/photostructure + - https://hub.docker.com/r/photostructure/server maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - photostructure - - MediaApp-Photos - - MediaServer-Video - - MediaServer-Photos + - photostructure + - MediaApp-Photos + - MediaServer-Video + - MediaServer-Photos dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: MediaApp-Photos - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: MediaApp-Photos + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/photostructure/values.yaml b/charts/stable/photostructure/values.yaml index c3cca6587f0..73c5bd73ac4 100644 --- a/charts/stable/photostructure/values.yaml +++ b/charts/stable/photostructure/values.yaml @@ -1,7 +1,7 @@ image: + repository: photostructure/server + tag: v2.1.0-alpha.7@ccd309179a5aa61d7601752bc79bf6304cc4257c907a614812ddaef8f422cb54 pullPolicy: IfNotPresent - repository: tccr.io/truecharts/photostructure - tag: v2.1.0@sha256:0c75885bdbb8bd64826af1ad36c12b3533aa6317cfbad2be4c5205368014ad80 securityContext: container: diff --git a/charts/stable/plex-meta-manager/Chart.yaml b/charts/stable/plex-meta-manager/Chart.yaml index 179946d40b5..1c85d9cb628 100644 --- a/charts/stable/plex-meta-manager/Chart.yaml +++ b/charts/stable/plex-meta-manager/Chart.yaml @@ -1,36 +1,36 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: plex-meta-manager -version: 5.1.4 +version: 5.1.6 appVersion: 1.19.1 description: Python script to update metadata and automatically build collections. home: https://truecharts.org/charts/incubator/plex-meta-manager icon: https://truecharts.org/img/hotlink-ok/chart-icons/plex-meta-manager.png deprecated: false sources: - - https://github.com/meisnate12/Plex-Meta-Manager - - https://github.com/truecharts/charts/tree/master/charts/incubator/plex-meta-manager - - https://github.com/truecharts/containers/tree/master/mirrorplex-meta-manager + - https://github.com/truecharts/charts/tree/master/charts/incubator/plex-meta-manager + - https://hub.docker.com/r/meisnate12/plex-meta-manager + - https://github.com/meisnate12/Plex-Meta-Manager maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - plex-meta-manager + - plex-meta-manager dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/plex-meta-manager/values.yaml b/charts/stable/plex-meta-manager/values.yaml index c953ab48da7..d565402ef93 100644 --- a/charts/stable/plex-meta-manager/values.yaml +++ b/charts/stable/plex-meta-manager/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/plex-meta-manager + repository: meisnate12/plex-meta-manager + tag: v1.19.1@25dd08a1940e7c26617d50fe24197d2986fe6857c50f6d12f6991d01e4dc425c pullPolicy: IfNotPresent - tag: v1.19.1@sha256:f9f0f35b772201e98be32370f93b2557fad3a5b381406165896186ab99ea1382 securityContext: container: diff --git a/charts/stable/plex-playlist-sync/Chart.yaml b/charts/stable/plex-playlist-sync/Chart.yaml index d7a3ab32c8d..b63ee1bd85e 100644 --- a/charts/stable/plex-playlist-sync/Chart.yaml +++ b/charts/stable/plex-playlist-sync/Chart.yaml @@ -1,42 +1,42 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: plex-playlist-sync -version: 2.1.4 +version: 2.1.6 appVersion: latest description: Sync your Spotify and Deezer playlists to your Plex server. home: https://truecharts.org/charts/incubator/plex-playlist-sync icon: https://truecharts.org/img/hotlink-ok/chart-icons/plex-playlist-sync.png deprecated: false sources: - - https://github.com/truecharts/containers/tree/master/mirrorplex-playlist-sync - - https://github.com/rnagabhyrava/plex-playlist-sync - - https://github.com/truecharts/charts/tree/master/charts/incubator/plex-playlist-sync + - https://hub.docker.com/r/rnagabhyrava/plexplaylistsync + - https://github.com/rnagabhyrava/plex-playlist-sync + - https://github.com/truecharts/charts/tree/master/charts/incubator/plex-playlist-sync maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - plex-playlist-sync - - Spotify - - Deezer - - Tools-Utilities - - MediaApp-Other - - MediaApp-Video - - MediaServer-Video + - plex-playlist-sync + - Spotify + - Deezer + - Tools-Utilities + - MediaApp-Other + - MediaApp-Video + - MediaServer-Video dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: Tools-Utilities - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: Tools-Utilities + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/plex-playlist-sync/values.yaml b/charts/stable/plex-playlist-sync/values.yaml index cbf2579e944..71ffb60a9f2 100644 --- a/charts/stable/plex-playlist-sync/values.yaml +++ b/charts/stable/plex-playlist-sync/values.yaml @@ -1,7 +1,7 @@ image: + repository: rnagabhyrava/plexplaylistsync + tag: latest@68b580ff05514eab0735a83adb1b8873427435714c8b303c08cf335ce4e892dc pullPolicy: IfNotPresent - repository: tccr.io/truecharts/plex-playlist-sync - tag: latest@sha256:82e3431659be3ac051715e1e63e79780cb0b8ff105bd6cc427f4e21cd4b2b58d securityContext: container: diff --git a/charts/stable/plextraktsync/Chart.yaml b/charts/stable/plextraktsync/Chart.yaml index d308811dde8..f68080f6f9b 100644 --- a/charts/stable/plextraktsync/Chart.yaml +++ b/charts/stable/plextraktsync/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: plextraktsync -version: 6.1.4 +version: 6.1.6 appVersion: 0.27.11 description: Two-way-sync between trakt.tv and Plex Media Server. home: https://truecharts.org/charts/incubator/plextraktsync icon: https://truecharts.org/img/hotlink-ok/chart-icons/plextraktsync.png deprecated: false sources: - - https://github.com/Taxel/PlexTraktSync - - https://github.com/truecharts/charts/tree/master/charts/incubator/plextraktsync - - https://github.com/truecharts/containers/tree/master/mirrorplextraktsync + - https://github.com/truecharts/charts/tree/master/charts/incubator/plextraktsync + - https://ghcr.io/taxel/plextraktsync + - https://github.com/Taxel/PlexTraktSync maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - plextraktsync - - Tools-Utilities - - MediaApp-Other + - plextraktsync + - Tools-Utilities + - MediaApp-Other dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: Tools-Utilities - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: Tools-Utilities + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/plextraktsync/values.yaml b/charts/stable/plextraktsync/values.yaml index 7cf20d06faf..872cfc00493 100644 --- a/charts/stable/plextraktsync/values.yaml +++ b/charts/stable/plextraktsync/values.yaml @@ -1,7 +1,7 @@ image: + repository: ghcr.io/taxel/plextraktsync + tag: 0.27.11@ccc9d992339e3bf2754f1b4f5c6419e2b05a39a191c265669adefd9bf7b1607c pullPolicy: IfNotPresent - repository: tccr.io/truecharts/plextraktsync - tag: v0.27.11@sha256:74efbebce5bf060c4e7b6c9936e6c551944957a25f388c70e0d1254e516a0994 securityContext: container: diff --git a/charts/stable/pocketmine-mp/Chart.yaml b/charts/stable/pocketmine-mp/Chart.yaml index 715b0ff8ee4..9d7180b0193 100644 --- a/charts/stable/pocketmine-mp/Chart.yaml +++ b/charts/stable/pocketmine-mp/Chart.yaml @@ -1,37 +1,36 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: pocketmine-mp -version: 2.1.4 +version: 2.1.5 appVersion: 5.8.2 description: A server software for Minecraft Bedrock Edition in PHP. home: https://truecharts.org/charts/incubator/pocketmine-mp icon: https://truecharts.org/img/hotlink-ok/chart-icons/pocketmine-mp.png deprecated: false sources: - - https://github.com/pmmp/PocketMine-MP - - https://github.com/truecharts/charts/tree/master/charts/incubator/pocketmine-mp - - https://github.com/truecharts/containers/tree/master/mirrorpocketmine-mp + - https://github.com/pmmp/PocketMine-MP + - https://github.com/truecharts/charts/tree/master/charts/incubator/pocketmine-mp maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - pocketmine-mp - - minecraft + - pocketmine-mp + - minecraft dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: games - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: games + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/pocketmine-mp/values.yaml b/charts/stable/pocketmine-mp/values.yaml index ddbd9a59f17..878392410de 100644 --- a/charts/stable/pocketmine-mp/values.yaml +++ b/charts/stable/pocketmine-mp/values.yaml @@ -1,5 +1,5 @@ image: - repository: tccr.io/truecharts/pocketmine-mp + repository: tccr.io/tccr/pocketmine-mp pullPolicy: IfNotPresent tag: v5.8.2@sha256:85b5b10f86044282ec1f1707659419347e1e48e899b351196b81e376e7fd38c0 diff --git a/charts/stable/promcord/Chart.yaml b/charts/stable/promcord/Chart.yaml index 53648602ed5..86c2d10b46e 100644 --- a/charts/stable/promcord/Chart.yaml +++ b/charts/stable/promcord/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: promcord -version: 10.1.4 +version: 10.1.5 appVersion: latest description: Discord bot that provides metrics from a Discord server home: https://truecharts.org/charts/stable/promcord icon: https://truecharts.org/img/hotlink-ok/chart-icons/promcord.png deprecated: false sources: - - https://github.com/nimarion/promcord - - https://github.com/truecharts/charts/tree/master/charts/stable/promcord - - https://hub.docker.com/r/biospheere/promcord + - https://github.com/nimarion/promcord + - https://github.com/truecharts/charts/tree/master/charts/stable/promcord + - https://hub.docker.com/r/biospheere/promcord maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - promcord - - discord - - metrics + - promcord + - discord + - metrics dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: metrics - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: metrics + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/promcord/ci/no-values.yaml b/charts/stable/promcord/ci/no-values.yaml index cb5d7262334..5a275ca257e 100644 --- a/charts/stable/promcord/ci/no-values.yaml +++ b/charts/stable/promcord/ci/no-values.yaml @@ -1,5 +1,5 @@ image: - repository: tccr.io/truecharts/whoami + repository: tccr.io/tccr/whoami pullPolicy: IfNotPresent tag: v1.10.1@sha256:36d22e4b8a154919b819bd7283531783eca9076972e8fc631649bb7eade770d9 diff --git a/charts/stable/proxmox-backup-server/Chart.yaml b/charts/stable/proxmox-backup-server/Chart.yaml index 645de7574fd..badfd07c526 100644 --- a/charts/stable/proxmox-backup-server/Chart.yaml +++ b/charts/stable/proxmox-backup-server/Chart.yaml @@ -1,36 +1,36 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: proxmox-backup-server -version: 2.1.4 +version: 2.1.6 appVersion: 3.0.2 description: Container for proxmox backup server home: https://truecharts.org/charts/incubator/proxmox-backup-server icon: https://truecharts.org/img/hotlink-ok/chart-icons/proxmox-backup-server.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/proxmox-backup-server - - https://github.com/truecharts/containers/tree/master/mirrorproxmox-backup-server + - https://github.com/truecharts/charts/tree/master/charts/incubator/proxmox-backup-server + - https://hub.docker.com/r/ayufan/proxmox-backup-server maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - proxmox-backup-server - - pbs + - proxmox-backup-server + - pbs dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: test - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: test + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/proxmox-backup-server/values.yaml b/charts/stable/proxmox-backup-server/values.yaml index cef7be0f87d..3890c1ac89f 100644 --- a/charts/stable/proxmox-backup-server/values.yaml +++ b/charts/stable/proxmox-backup-server/values.yaml @@ -1,6 +1,6 @@ image: - repository: tccr.io/truecharts/proxmox-backup-server - tag: v3.0.2@sha256:31e31c6bc27ca6e682eb2819ba69bec7d20bfa928e5642123e620f9be3277d3c + repository: ayufan/proxmox-backup-server + tag: v3.0.2@7466aa309840f73dbccb6c0f237748384f95273ee1e61f07674c86e3238c006a pullPolicy: IfNotPresent securityContext: diff --git a/charts/stable/rimgo/Chart.yaml b/charts/stable/rimgo/Chart.yaml index 598bf535bd6..bdf25da2267 100644 --- a/charts/stable/rimgo/Chart.yaml +++ b/charts/stable/rimgo/Chart.yaml @@ -1,36 +1,36 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: rimgo -version: 5.1.4 +version: 5.1.6 appVersion: latest description: Alternative Imgur front-end home: https://truecharts.org/charts/incubator/rimgo icon: https://truecharts.org/img/hotlink-ok/chart-icons/rimgo.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/rimgo - - https://github.com/truecharts/containers/tree/master/mirrorrimgo + - https://github.com/truecharts/charts/tree/master/charts/incubator/rimgo + - https://quay.io/pussthecatorg/rimgo maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - rimgo - - Network-Web + - rimgo + - Network-Web dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: Network-Web - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: Network-Web + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/rimgo/values.yaml b/charts/stable/rimgo/values.yaml index 0049c25f98f..9360d455b46 100644 --- a/charts/stable/rimgo/values.yaml +++ b/charts/stable/rimgo/values.yaml @@ -1,7 +1,7 @@ image: + repository: quay.io/pussthecatorg/rimgo + tag: latest@c6cd14760d42670acb57e8bccdc5c34a2e9209a39276b7f568352c3e503e0d97 pullPolicy: IfNotPresent - repository: tccr.io/truecharts/rimgo - tag: latest@sha256:fce81544a27a9e727bfb807cb2b4d8b9e578715c69fbbde4de93627dc19fe470 persistence: {} env: diff --git a/charts/stable/smtp-relay/Chart.yaml b/charts/stable/smtp-relay/Chart.yaml index cfbd9e75b3a..de9329396ba 100644 --- a/charts/stable/smtp-relay/Chart.yaml +++ b/charts/stable/smtp-relay/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: smtp-relay -version: 2.1.4 +version: 2.1.6 appVersion: 0.5.2 description: A SMTP service for relaying emails. home: https://truecharts.org/charts/incubator/smtp-relay icon: https://truecharts.org/img/hotlink-ok/chart-icons/smtp-relay.png deprecated: false sources: - - https://github.com/ix-ai/smtp - - https://github.com/truecharts/charts/tree/master/charts/incubator/smtp-relay - - https://github.com/truecharts/containers/tree/master/mirrorsmtp-relay + - https://github.com/ix-ai/smtp + - https://github.com/truecharts/charts/tree/master/charts/incubator/smtp-relay + - https://ghcr.io/ix-ai/smtp maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - smtp-relay - - smtp + - smtp-relay + - smtp dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: smtp - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: smtp + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/smtp-relay/values.yaml b/charts/stable/smtp-relay/values.yaml index fd6cbd34587..7072b2ce323 100644 --- a/charts/stable/smtp-relay/values.yaml +++ b/charts/stable/smtp-relay/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/smtp-relay + repository: ghcr.io/ix-ai/smtp pullPolicy: IfNotPresent - tag: v0.5.2@sha256:ad5044ebdec5d2e75d08021f333b742328c2554e9807894031e328321433f049 + tag: v0.5.2@sha256:73629c8a2e0896d4591b6b3e884eb17bac14007a2352d9e977cf5706a5c33a9a securityContext: container: diff --git a/charts/stable/sonsoftheforest/Chart.yaml b/charts/stable/sonsoftheforest/Chart.yaml index 9c9d2a0aa57..a17b1c16ae3 100644 --- a/charts/stable/sonsoftheforest/Chart.yaml +++ b/charts/stable/sonsoftheforest/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: sonsoftheforest -version: 2.1.4 -appVersion: latest +version: 2.1.6 +appVersion: sonsoftheforest description: A custom SteamCMD chart that runs Sons Of The Forest Server. home: https://truecharts.org/charts/incubator/sonsoftheforest icon: https://truecharts.org/img/hotlink-ok/chart-icons/sonsoftheforest.png deprecated: false sources: - - https://github.com/ich777/docker-steamcmd-server/tree/sonsoftheforest - - https://github.com/truecharts/charts/tree/master/charts/incubator/sonsoftheforest - - https://github.com/truecharts/containers/tree/master/mirrorsonsoftheforest + - https://hub.docker.com/r/ich777/steamcmd + - https://github.com/ich777/docker-steamcmd-server/tree/sonsoftheforest + - https://github.com/truecharts/charts/tree/master/charts/incubator/sonsoftheforest maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - sonsoftheforest - - GameServers + - sonsoftheforest + - GameServers dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: GameServers - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: GameServers + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/sonsoftheforest/values.yaml b/charts/stable/sonsoftheforest/values.yaml index 57607eeaf29..b4f33efd050 100644 --- a/charts/stable/sonsoftheforest/values.yaml +++ b/charts/stable/sonsoftheforest/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/sonsoftheforest + repository: ich777/steamcmd + tag: sonsoftheforest@8b7590087f32f15265c35a32227c123d695b1cff14132c5fb27b62da93aa51f5 pullPolicy: IfNotPresent - tag: latest@sha256:df2acf5c7112f5e53b4be5eaa550e6396ae284994d92384ec4a5305d8cf8abca securityContext: container: diff --git a/charts/stable/steam-headless/Chart.yaml b/charts/stable/steam-headless/Chart.yaml index b4a56bfe51b..89baf814f1c 100644 --- a/charts/stable/steam-headless/Chart.yaml +++ b/charts/stable/steam-headless/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: steam-headless -version: 2.1.4 +version: 2.1.6 appVersion: latest description: A Headless Steam chart. home: https://truecharts.org/charts/incubator/steam-headless icon: https://truecharts.org/img/hotlink-ok/chart-icons/steam-headless.png deprecated: false sources: - - https://github.com/Steam-Headless/docker-steam-headless - - https://github.com/truecharts/charts/tree/master/charts/incubator/steam-headless - - https://github.com/truecharts/containers/tree/master/mirrorsteam-headless + - https://hub.docker.com/r/josh5/steam-headless + - https://github.com/Steam-Headless/docker-steam-headless + - https://github.com/truecharts/charts/tree/master/charts/incubator/steam-headless maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - steam-headless - - games + - steam-headless + - games dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: games - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: games + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/steam-headless/values.yaml b/charts/stable/steam-headless/values.yaml index 9f791e88882..88ab29466fc 100644 --- a/charts/stable/steam-headless/values.yaml +++ b/charts/stable/steam-headless/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/steam-headless + repository: josh5/steam-headless + tag: latest@129e798a62a48116f8bd3fc53c5e2324f0177f27afd7cff234e0897349523129 pullPolicy: IfNotPresent - tag: vlatest@sha256:e78bb73f080ad1608a54fe45185e923b908e4889eac40809aaa5bb1294767580 securityContext: container: diff --git a/charts/stable/stun-turn-server/Chart.yaml b/charts/stable/stun-turn-server/Chart.yaml index ed6508376a0..0bdeb64ff63 100644 --- a/charts/stable/stun-turn-server/Chart.yaml +++ b/charts/stable/stun-turn-server/Chart.yaml @@ -1,36 +1,36 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: stun-turn-server -version: 5.1.4 +version: 5.1.6 appVersion: latest description: This is a Basic STUN & TURN server that was mainly created for Nextcloud Talk. home: https://truecharts.org/charts/stable/stun-turn-server icon: https://truecharts.org/img/hotlink-ok/chart-icons/stun-turn-server.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/stable/stun-turn-server - - https://github.com/truecharts/containers/tree/master/mirrorstun-turn-server + - https://github.com/truecharts/charts/tree/master/charts/stable/stun-turn-server + - https://hub.docker.com/r/ich777/stun-turn-server maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - stun-turn-server - - Network + - stun-turn-server + - Network dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: Network - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: Network + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/stun-turn-server/values.yaml b/charts/stable/stun-turn-server/values.yaml index d6588e238b5..96c9ba62413 100644 --- a/charts/stable/stun-turn-server/values.yaml +++ b/charts/stable/stun-turn-server/values.yaml @@ -1,7 +1,7 @@ image: + repository: ich777/stun-turn-server + tag: latest@fe6e439818ec95920998c134f631545f74575b92b3c4d8a2f15ab9800845fc2d pullPolicy: IfNotPresent - repository: tccr.io/truecharts/stun-turn-server - tag: latest@sha256:459d8f624ae06708f245e51a25afd904a3b83242630913976356ee754925391f service: main: diff --git a/charts/stable/tasmoadmin/Chart.yaml b/charts/stable/tasmoadmin/Chart.yaml index 66375e8cfc7..676680745f5 100644 --- a/charts/stable/tasmoadmin/Chart.yaml +++ b/charts/stable/tasmoadmin/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: tasmoadmin -version: 6.1.4 -appVersion: 3.2.0 +version: 6.1.6 +appVersion: 3.1.2 description: A administrative platform for devices flashed with Tasmota. home: https://truecharts.org/charts/incubator/tasmoadmin icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmoadmin.png deprecated: false sources: - - https://github.com/truecharts/containers/tree/master/mirrortasmoadmin - - https://github.com/TasmoAdmin/TasmoAdmin - - https://github.com/truecharts/charts/tree/master/charts/incubator/tasmoadmin + - https://github.com/TasmoAdmin/TasmoAdmin + - https://github.com/truecharts/charts/tree/master/charts/incubator/tasmoadmin + - https://ghcr.io/tasmoadmin/tasmoadmin maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - tasmoadmin - - HomeAutomation - - Network-Management + - tasmoadmin + - HomeAutomation + - Network-Management dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: HomeAutomation - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: HomeAutomation + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/tasmoadmin/values.yaml b/charts/stable/tasmoadmin/values.yaml index a5044a55b1d..5653b006765 100644 --- a/charts/stable/tasmoadmin/values.yaml +++ b/charts/stable/tasmoadmin/values.yaml @@ -1,7 +1,7 @@ image: + repository: ghcr.io/tasmoadmin/tasmoadmin + tag: v3.1.2@0c50bda69ced49e8c1e6f765094434f4355a062fb61a5c3477e71d8ccc4b9bc9 pullPolicy: IfNotPresent - repository: tccr.io/truecharts/tasmoadmin - tag: v3.2.0@sha256:9ba3cbe28414dd61e03b9d36c29c4792f6fde11dbe0e130f9186760d5afe6c29 securityContext: container: diff --git a/charts/stable/tasmobackup/Chart.yaml b/charts/stable/tasmobackup/Chart.yaml index fc02ac65fed..ef65595c923 100644 --- a/charts/stable/tasmobackup/Chart.yaml +++ b/charts/stable/tasmobackup/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: tasmobackup -version: 5.1.4 -appVersion: latest +version: 5.1.6 +appVersion: 1.05.00 description: backup all your tasmota devices in one place. home: https://truecharts.org/charts/incubator/tasmobackup icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmobackup.png deprecated: false sources: - - https://github.com/truecharts/containers/tree/master/mirrortasmobackup - - https://github.com/danmed/TasmoBackupV1 - - https://github.com/truecharts/charts/tree/master/charts/incubator/tasmobackup + - https://hub.docker.com/r/danmed/tasmobackupv1 + - https://github.com/danmed/TasmoBackupV1 + - https://github.com/truecharts/charts/tree/master/charts/incubator/tasmobackup maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - tasmobackup - - HomeAutomation - - Network-Management + - tasmobackup + - HomeAutomation + - Network-Management dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: HomeAutomation - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: HomeAutomation + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/tasmobackup/values.yaml b/charts/stable/tasmobackup/values.yaml index ddf771c2372..f33d5929580 100644 --- a/charts/stable/tasmobackup/values.yaml +++ b/charts/stable/tasmobackup/values.yaml @@ -1,10 +1,11 @@ +image: + repository: danmed/tasmobackupv1 + tag: 1.05.00@65cd95d00b1476c4e6c38530ea8eaa0d59b9983e24b3f95639b7c79a0ff194b8 + pullPolicy: IfNotPresent + env: DBNAME: data/tasmobackup DBTYPE: sqlite -image: - pullPolicy: IfNotPresent - repository: tccr.io/truecharts/tasmobackup - tag: latest@sha256:197cbf9ce71dd849473ea47c09cb60a667d7f80dd456f13123eaca61517d5ff3 securityContext: container: diff --git a/charts/stable/tasmocompiler/Chart.yaml b/charts/stable/tasmocompiler/Chart.yaml index 214ef419798..b8dc922cb18 100644 --- a/charts/stable/tasmocompiler/Chart.yaml +++ b/charts/stable/tasmocompiler/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: tasmocompiler -version: 5.1.4 +version: 5.1.6 appVersion: latest description: TasmoCompiler is a simple web GUI which allows you to compile fantastic Tasmota firmware with your own settings home: https://truecharts.org/charts/incubator/tasmocompiler icon: https://truecharts.org/img/hotlink-ok/chart-icons/tasmocompiler.png deprecated: false sources: - - https://github.com/benzino77/tasmocompiler - - https://github.com/truecharts/charts/tree/master/charts/incubator/tasmocompiler - - https://github.com/truecharts/containers/tree/master/mirrortasmocompiler + - https://github.com/truecharts/charts/tree/master/charts/incubator/tasmocompiler + - https://hub.docker.com/r/benzino77/tasmocompiler + - https://github.com/benzino77/tasmocompiler maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - tasmocompiler - - HomeAutomation - - Tools-Utilities + - tasmocompiler + - HomeAutomation + - Tools-Utilities dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: HomeAutomation - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: HomeAutomation + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/tasmocompiler/values.yaml b/charts/stable/tasmocompiler/values.yaml index 4e5e6290711..be675e80404 100644 --- a/charts/stable/tasmocompiler/values.yaml +++ b/charts/stable/tasmocompiler/values.yaml @@ -1,7 +1,7 @@ image: + repository: benzino77/tasmocompiler + tag: latest@d2df0ef394c2b387e8a9a9dc0282fc448148c07f2341ec21a9100a4967e0aee1 pullPolicy: IfNotPresent - repository: tccr.io/truecharts/tasmocompiler - tag: latest@sha256:506e9f54b21eaeca6eb7a5cfdef32640592ad2b05289a2c8b7a32338d8d9ee38 securityContext: container: diff --git a/charts/stable/traefik-forward-auth/Chart.yaml b/charts/stable/traefik-forward-auth/Chart.yaml index ae74f3f3e66..36a9088b0f1 100644 --- a/charts/stable/traefik-forward-auth/Chart.yaml +++ b/charts/stable/traefik-forward-auth/Chart.yaml @@ -1,41 +1,41 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: traefik-forward-auth -version: 2.1.4 +version: 2.1.6 appVersion: latest description: A minimal forward authentication service that provides OAuth/SSO login and authentication for the traefik reverse proxy/load balancer. An example for a typical setup is included in the source (docs/how-to.md). home: https://truecharts.org/charts/incubator/traefik-forward-auth icon: https://truecharts.org/img/hotlink-ok/chart-icons/traefik-forward-auth.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/traefik-forward-auth - - https://github.com/truecharts/containers/tree/master/mirrortraefik-forward-auth - - https://github.com/thomseddon/traefik-forward-auth + - https://github.com/truecharts/charts/tree/master/charts/incubator/traefik-forward-auth + - https://hub.docker.com/r/thomseddon/traefik-forward-auth + - https://github.com/thomseddon/traefik-forward-auth maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - traefik-forward-auth - - traefik - - forward-auth - - auth - - ingress - - middleware + - traefik-forward-auth + - traefik + - forward-auth + - auth + - ingress + - middleware dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: network - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: network + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/traefik-forward-auth/values.yaml b/charts/stable/traefik-forward-auth/values.yaml index d8ced1a75bd..5f31aa6f16d 100644 --- a/charts/stable/traefik-forward-auth/values.yaml +++ b/charts/stable/traefik-forward-auth/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/traefik-forward-auth - pullPolicy: IfNotPresent - tag: latest@sha256:edd7eb812cb38e59d32b5a00398b57a78506db2390cbe295f5df590a38a5d44e + repository: thomseddon/traefik-forward-auth + tag: latest@b364aa6a4117569163eff793999901f9f5a0c4f7f2da18b4ecbcd140d7b6107b + pullPolicy: IfNotPresente workload: main: diff --git a/charts/stable/unturned/Chart.yaml b/charts/stable/unturned/Chart.yaml index 1f022998bf4..fd5499a1127 100644 --- a/charts/stable/unturned/Chart.yaml +++ b/charts/stable/unturned/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: unturned -version: 5.1.4 -appVersion: latest +version: 5.1.6 +appVersion: unturned description: Unturned SteamCMD home: https://truecharts.org/charts/incubator/unturned icon: https://truecharts.org/img/hotlink-ok/chart-icons/unturned.png deprecated: false sources: - - https://github.com/truecharts/charts/tree/master/charts/incubator/unturned - - https://github.com/truecharts/containers/tree/master/mirrorunturned - - https://github.com/ich777/docker-steamcmd-server/tree/unturned + - https://hub.docker.com/r/ich777/steamcmd + - https://github.com/ich777/docker-steamcmd-server/tree/unturned + - https://github.com/truecharts/charts/tree/master/charts/incubator/unturned maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - unturned - - GameServers + - unturned + - GameServers dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: GameServers - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: GameServers + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/unturned/values.yaml b/charts/stable/unturned/values.yaml index 9574b3cd66a..254044e6114 100644 --- a/charts/stable/unturned/values.yaml +++ b/charts/stable/unturned/values.yaml @@ -1,7 +1,7 @@ image: + repository: ich777/steamcmd + tag: unturned@e63219b8f66766faad0ba71ebfcfb53961c07932951d67e1eebbd570b1e726dd pullPolicy: IfNotPresent - repository: tccr.io/truecharts/unturned - tag: latest@sha256:177219ed57cb12c4c9c88b34f5e25791b4f0b448f330b386639d4f3310eb9714 securityContext: container: diff --git a/charts/stable/van-dam/Chart.yaml b/charts/stable/van-dam/Chart.yaml index ce9b8f92df0..ee1b838a654 100644 --- a/charts/stable/van-dam/Chart.yaml +++ b/charts/stable/van-dam/Chart.yaml @@ -1,44 +1,44 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: van-dam -version: 3.1.5 +version: 3.1.7 appVersion: 0.54.0 description: A Digital Asset Manager (DAM), specifically designed for 3D print files. home: https://truecharts.org/charts/incubator/van-dam icon: https://truecharts.org/img/hotlink-ok/chart-icons/van-dam.png deprecated: false sources: - - https://github.com/Floppy/van_dam - - https://github.com/truecharts/charts/tree/master/charts/incubator/van-dam - - https://github.com/truecharts/containers/tree/master/mirrorvan-dam + - https://github.com/Floppy/van_dam + - https://github.com/truecharts/charts/tree/master/charts/incubator/van-dam + - https://ghcr.io/floppy/van_dam maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - vanDAM - - media + - vanDAM + - media dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: redis - version: 11.1.3 - repository: https://deps.truecharts.org - condition: redis.enabled - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: redis + version: 11.1.3 + repository: https://deps.truecharts.org + condition: redis.enabled + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/stable/van-dam/values.yaml b/charts/stable/van-dam/values.yaml index 95efed24f72..548ade9c6cc 100644 --- a/charts/stable/van-dam/values.yaml +++ b/charts/stable/van-dam/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/van-dam + repository: ghcr.io/floppy/van_dam + tag: 0.54.0@e1300f42a01398417c45996bc8b0257e320d7021778d42ce571b2374d935fb55 pullPolicy: IfNotPresent - tag: v0.54.0@sha256:75dc5bcc5ef367b86d6983f6942d7b4c0e23cf6154d367a8d6a01a81310505aa securityContext: container: diff --git a/charts/stable/watcharr/Chart.yaml b/charts/stable/watcharr/Chart.yaml index 5925afaa0d7..9df85ef48de 100644 --- a/charts/stable/watcharr/Chart.yaml +++ b/charts/stable/watcharr/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: watcharr -version: 3.1.4 -appVersion: 1.21.1 +version: 3.1.6 +appVersion: 1.20.0 description: Open source, self-hostable watched list home: https://truecharts.org/charts/stable/watcharr icon: https://truecharts.org/img/hotlink-ok/chart-icons/watcharr.png deprecated: false sources: - - https://github.com/sbondCo/Watcharr - - https://github.com/truecharts/charts/tree/master/charts/stable/watcharr - - https://github.com/truecharts/containers/tree/master/mirrorwatcharr + - https://github.com/sbondCo/Watcharr + - https://github.com/truecharts/charts/tree/master/charts/stable/watcharr + - https://ghcr.io/sbondco/watcharr maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - watcharr - - media + - watcharr + - media dependencies: - - name: common - version: 17.2.21 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.21 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: stable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: stable type: application diff --git a/charts/stable/watcharr/values.yaml b/charts/stable/watcharr/values.yaml index 5194d1d7cf4..1668ddb623b 100644 --- a/charts/stable/watcharr/values.yaml +++ b/charts/stable/watcharr/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/watcharr + repository: ghcr.io/sbondco/watcharr + tag: v1.20.0@448a443bc9049f47a173ca2b190463c1aad23fe5e537aec7faa92a70932cb9f1 pullPolicy: IfNotPresent - tag: v1.21.1@sha256:0d6a588de5c7ddbabc5a84deda1c42f290a849c89e3979e85d3d7cfbb32eabdf securityContext: container: diff --git a/charts/unstable/docassemble/Chart.yaml b/charts/unstable/docassemble/Chart.yaml index a3dd77ceb51..da5b361ede9 100644 --- a/charts/unstable/docassemble/Chart.yaml +++ b/charts/unstable/docassemble/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: docassemble -version: 0.0.17 +version: 0.0.19 appVersion: latest description: A free, open-source expert system for guided interviews and document assembly. home: https://truecharts.org/charts/incubator/docassemble icon: https://truecharts.org/img/hotlink-ok/chart-icons/docassemble.png deprecated: false sources: - - https://github.com/jhpyle/docassemble - - https://github.com/truecharts/charts/tree/master/charts/incubator/docassemble - - https://github.com/truecharts/containers/tree/master/mirrordocassemble + - https://github.com/jhpyle/docassemble + - https://github.com/truecharts/charts/tree/master/charts/incubator/docassemble + - https://hub.docker.com/r/jhpyle/docassemble maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - docassemble - - documentation + - docassemble + - documentation dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - 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/category: documentation - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: documentation + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/docassemble/values.yaml b/charts/unstable/docassemble/values.yaml index 02ee44932f2..e605bdf5fe6 100644 --- a/charts/unstable/docassemble/values.yaml +++ b/charts/unstable/docassemble/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/docassemble + repository: jhpyle/docassemble + tag: latest@bb27dabaf7a81e4401a0baa7da5600fc868751527083be7d2b046021d7859450 pullPolicy: IfNotPresent - tag: latest@sha256:665fbaf35a7548e0418947a8d1e193416fffd0a8a738cb2603310137a6fd16d1 service: main: diff --git a/charts/unstable/eco/Chart.yaml b/charts/unstable/eco/Chart.yaml index 3aa06c21c76..715655e7f98 100644 --- a/charts/unstable/eco/Chart.yaml +++ b/charts/unstable/eco/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: eco -version: 3.1.16 -appVersion: latest +version: 3.1.18 +appVersion: eco description: A custom SteamCMD chart that runs ECO. home: https://truecharts.org/charts/incubator/eco icon: https://truecharts.org/img/hotlink-ok/chart-icons/eco.png deprecated: false sources: - - https://github.com/ich777/docker-steamcmd-server/tree/eco - - https://github.com/truecharts/charts/tree/master/charts/incubator/eco - - https://github.com/truecharts/containers/tree/master/mirroreco + - https://github.com/ich777/docker-steamcmd-server/tree/eco + - https://github.com/truecharts/charts/tree/master/charts/incubator/eco + - https://hub.docker.com/r/ich777/steamcmd maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - eco - - GameServers + - eco + - GameServers dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - 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/category: games - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: games + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/eco/values.yaml b/charts/unstable/eco/values.yaml index 6217c0a6f26..cff19b83043 100644 --- a/charts/unstable/eco/values.yaml +++ b/charts/unstable/eco/values.yaml @@ -1,7 +1,7 @@ image: + repository: ich777/steamcmd + tag: eco@7b58e4cff85e87dda0e3638b2d449aef088c25db7ae6f672bfd85f9da02e7f2a pullPolicy: IfNotPresent - repository: tccr.io/truecharts/eco - tag: latest@sha256:b68c9690ea433e1d94363ebf5384342652ab2d9316a2d71c740202669c76aca5 securityContext: container: diff --git a/charts/unstable/funkwhale/Chart.yaml b/charts/unstable/funkwhale/Chart.yaml index 1d47ce9b434..f4cdfc2b8f5 100644 --- a/charts/unstable/funkwhale/Chart.yaml +++ b/charts/unstable/funkwhale/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: funkwhale -version: 3.0.11 +version: 3.0.13 appVersion: 1.2.10 description: Funkwhale is designed to make it easy to listen to music you like, and to discover new artists. home: https://truecharts.org/charts/incubator/funkwhale icon: https://truecharts.org/img/hotlink-ok/chart-icons/funkwhale.png deprecated: false sources: - - https://funkwhale.audio/ - - https://github.com/truecharts/charts/tree/master/charts/incubator/funkwhale - - https://github.com/truecharts/containers/tree/master/mirrorfunkwhale + - https://funkwhale.audio/ + - https://github.com/truecharts/charts/tree/master/charts/incubator/funkwhale + - https://hub.docker.com/r/funkwhale/funkwhale maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - funkwhale - - MediaApp-Music - - MediaServer-Music + - funkwhale + - MediaApp-Music + - MediaServer-Music dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - 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/category: MediaApp-Music - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: MediaApp-Music + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/funkwhale/values.yaml b/charts/unstable/funkwhale/values.yaml index 4f820c9a43a..4eb69aba098 100644 --- a/charts/unstable/funkwhale/values.yaml +++ b/charts/unstable/funkwhale/values.yaml @@ -1,7 +1,7 @@ image: + repository: funkwhale/funkwhale + tag: 1.2.10@ad70a066b5cfa3ac7db0698fb56b1816fd793d9ed41bfcc42d21447f3d4ca2ac pullPolicy: IfNotPresent - repository: tccr.io/truecharts/funkwhale - tag: 1.2.10@sha256:835a4970cd330024e617e6b320f609b700ee79f042b57118ad761605fbd985d1 # TODO: multi pod setup # Some examples: diff --git a/charts/unstable/kaizoku/Chart.yaml b/charts/unstable/kaizoku/Chart.yaml index 44bc88e24c1..2849fe9651d 100644 --- a/charts/unstable/kaizoku/Chart.yaml +++ b/charts/unstable/kaizoku/Chart.yaml @@ -1,43 +1,43 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: kaizoku -version: 0.1.15 +version: 0.1.17 appVersion: 1.6.1 description: A self-hosted manga downloader. home: https://truecharts.org/charts/incubator/kaizoku icon: https://truecharts.org/img/hotlink-ok/chart-icons/kaizoku.png deprecated: false sources: - - https://github.com/oae/kaizoku - - https://github.com/truecharts/charts/tree/master/charts/incubator/kaizoku - - https://github.com/truecharts/containers/tree/master/mirrorkaizoku + - https://github.com/oae/kaizoku + - https://github.com/truecharts/charts/tree/master/charts/incubator/kaizoku + - https://ghcr.io/oae/kaizoku maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - kaizoku + - kaizoku dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: redis - version: 10.0.1 - repository: https://deps.truecharts.org - condition: redis.enabled - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.18 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: redis + version: 10.0.1 + repository: https://deps.truecharts.org + condition: redis.enabled + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/kaizoku/values.yaml b/charts/unstable/kaizoku/values.yaml index 3d79af581b7..146693f98fe 100644 --- a/charts/unstable/kaizoku/values.yaml +++ b/charts/unstable/kaizoku/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/kaizoku + repository: ghcr.io/oae/kaizoku + tag: v1.6.1@690f805322b11656ca62fb23c7b08439725a9ce9bc59e0e00f6b3c002bd7de44 pullPolicy: IfNotPresent - tag: v1.6.1@sha256:b3a80cf6ad2d080845a0e4851872f91657198381c587b5393ade77d5bee92b7d securityContext: container: diff --git a/charts/unstable/kimai/Chart.yaml b/charts/unstable/kimai/Chart.yaml index d57db70361d..d2319bc7f15 100644 --- a/charts/unstable/kimai/Chart.yaml +++ b/charts/unstable/kimai/Chart.yaml @@ -1,46 +1,46 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: kimai -version: 8.0.18 -appVersion: 2.0.35 +version: 8.0.20 +appVersion: 2.1.0 description: Kimai is a free, open source and online time-tracking software designed for small businesses and freelancers. home: https://truecharts.org/charts/incubator/kimai icon: https://truecharts.org/img/hotlink-ok/chart-icons/kimai.png deprecated: false sources: - - https://github.com/truecharts/containers/tree/master/mirrorkimai - - https://github.com/tobybatch/kimai2 - - https://github.com/kevinpapst/kimai2 - - https://github.com/truecharts/charts/tree/master/charts/incubator/kimai + - https://github.com/tobybatch/kimai2 + - https://github.com/kevinpapst/kimai2 + - https://github.com/truecharts/charts/tree/master/charts/incubator/kimai + - https://hub.docker.com/r/kimai/kimai2 maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - kimai - - time - - tracking + - kimai + - time + - tracking dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] - - name: mariadb - version: 11.0.2 - repository: https://deps.truecharts.org/ - condition: mariadb.enabled - alias: "" - tags: [] - import-values: [] + - name: common + version: 17.2.18 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: mariadb + version: 11.0.2 + repository: https://deps.truecharts.org/ + condition: mariadb.enabled + alias: "" + tags: [] + import-values: [] annotations: - max_scale_version: 23.10.2 - min_scale_version: 23.10.0 - truecharts.org/SCALE-support: "true" - truecharts.org/category: productivity - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: productivity + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/kimai/values.yaml b/charts/unstable/kimai/values.yaml index fcef8676756..3936646d735 100644 --- a/charts/unstable/kimai/values.yaml +++ b/charts/unstable/kimai/values.yaml @@ -1,6 +1,6 @@ image: - repository: tccr.io/truecharts/kimai - tag: v2.0.35@sha256:064005e7296208101c07aa22c911bd3b886ae1d33ecc144e8cc158f47de0fe8e + repository: kimai/kimai2 + tag: apache-2.1.0-prod@27b7e83d471f5adf7127d05c6dfab5c961bedf51dab405bfa585a12d62dbf517 pullPolicy: IfNotPresent kimai: diff --git a/charts/unstable/midarr/Chart.yaml b/charts/unstable/midarr/Chart.yaml index 93602ffc93e..e192fc8d5f6 100644 --- a/charts/unstable/midarr/Chart.yaml +++ b/charts/unstable/midarr/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: midarr -version: 4.0.12 -appVersion: 3.1.0 +version: 4.0.14 +appVersion: 4.1.2 description: Midarr is a minimal lightweight media server for enjoying your media home: https://truecharts.org/charts/incubator/midarr icon: https://truecharts.org/img/hotlink-ok/chart-icons/midarr.png deprecated: false sources: - - https://github.com/truecharts/containers/tree/master/mirrormidarr-server - - https://github.com/midarrlabs/midarr-server - - https://github.com/truecharts/charts/tree/master/charts/incubator/midarr + - https://github.com/midarrlabs/midarr-server + - https://github.com/truecharts/charts/tree/master/charts/incubator/midarr + - https://ghcr.io/midarrlabs/midarr-server maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - midarr - - media + - midarr + - media dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - 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/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/midarr/values.yaml b/charts/unstable/midarr/values.yaml index 188a501f798..1c43ea7e5a9 100644 --- a/charts/unstable/midarr/values.yaml +++ b/charts/unstable/midarr/values.yaml @@ -1,6 +1,6 @@ image: - repository: tccr.io/truecharts/midarr-server - tag: v3.1.0@sha256:5d85789b1a43cd6f7b133ae129d9f1dae4b97773e6c9f54b48094b1c86b47422 + repository: ghcr.io/midarrlabs/midarr-server + tag: v4.1.2@d84c027ea3a7f0f523708a4aead9911afd61e0f10e3e86a2413ca6adcf3896b3 pullPolicy: IfNotPresent securityContext: diff --git a/charts/unstable/owncloud-ocis/Chart.yaml b/charts/unstable/owncloud-ocis/Chart.yaml index 297f143c9d9..3505eb005b6 100644 --- a/charts/unstable/owncloud-ocis/Chart.yaml +++ b/charts/unstable/owncloud-ocis/Chart.yaml @@ -1,43 +1,43 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: owncloud-ocis -version: 11.0.28 -appVersion: 3.0.0 +version: 11.0.30 +appVersion: 4.0.2 description: ownCloud Infinite Scale is a self-hosted file sync and share server. home: https://truecharts.org/charts/incubator/owncloud-ocis icon: https://truecharts.org/img/hotlink-ok/chart-icons/owncloud-ocis.png deprecated: false sources: - - https://owncloud.dev/ocis/ - - https://github.com/truecharts/charts/tree/master/charts/incubator/owncloud-ocis - - https://github.com/truecharts/containers/tree/master/mirrorocis + - https://owncloud.dev/ocis/ + - https://github.com/truecharts/charts/tree/master/charts/incubator/owncloud-ocis + - https://hub.docker.com/r/owncloud/ocis maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - owncloud - - ocis - - infinite - - scale - - self-hosted - - sync - - share - - server + - owncloud + - ocis + - infinite + - scale + - self-hosted + - sync + - share + - server dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - 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/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/owncloud-ocis/values.yaml b/charts/unstable/owncloud-ocis/values.yaml index de0b8edb17a..a20f602bb34 100644 --- a/charts/unstable/owncloud-ocis/values.yaml +++ b/charts/unstable/owncloud-ocis/values.yaml @@ -1,6 +1,6 @@ image: - repository: tccr.io/truecharts/ocis - tag: v3.0.0@sha256:55264618b01bec8d712ec829caee909466634702d092c9e1f8e84adc47085a47 + repository: owncloud/ocis + tag: 4.0.2@0e750e960f631fe5ac59187b49c30edfa8a476211236c7e924de4a426db980ac pullPolicy: IfNotPresent service: main: diff --git a/charts/unstable/owntracks/Chart.yaml b/charts/unstable/owntracks/Chart.yaml index 81e5a0d70f1..506e7843e42 100644 --- a/charts/unstable/owntracks/Chart.yaml +++ b/charts/unstable/owntracks/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: owntracks -version: 1.0.10 -appVersion: 0.9.3 +version: 1.0.12 +appVersion: 0.9.6 description: The OwnTracks Recorder is a lightweight program for storing and accessing location data published via MQTT (or HTTP) by the OwnTracks apps. home: https://truecharts.org/charts/incubator/owntracks icon: https://truecharts.org/img/hotlink-ok/chart-icons/owntracks.png deprecated: false sources: - - https://github.com/owntracks/docker-recorder - - https://github.com/owntracks/recorder - - https://github.com/truecharts/charts/tree/master/charts/incubator/owntracks - - https://github.com/truecharts/containers/tree/master/mirrorowntracks + - https://github.com/owntracks/docker-recorder + - https://github.com/owntracks/recorder + - https://github.com/truecharts/charts/tree/master/charts/incubator/owntracks + - https://hub.docker.com/r/owntracks/recorder maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - owncharts - - location + - owncharts + - location dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - 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/category: media - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: media + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/owntracks/values.yaml b/charts/unstable/owntracks/values.yaml index 28ca8b58ff3..0e9f5654ea9 100644 --- a/charts/unstable/owntracks/values.yaml +++ b/charts/unstable/owntracks/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/owntracks + repository: owntracks/recorder + tag: 0.9.6@eaa3afb70f74167d93056a1277309d256e2349a3df3628a885f2658b9672a703 pullPolicy: IfNotPresent - tag: 0.9.3@sha256:797eb8958677b80bbb438251f75a51984b578c4919f0fe2c3a9bbf0e866a8b43 owntracks: otr_host: "" diff --git a/charts/unstable/reactive-resume/Chart.yaml b/charts/unstable/reactive-resume/Chart.yaml index 39ea179cdf3..765a30a1f8c 100644 --- a/charts/unstable/reactive-resume/Chart.yaml +++ b/charts/unstable/reactive-resume/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: reactive-resume -version: 3.0.14 +version: 3.0.16 appVersion: latest description: A one-of-a-kind resume builder that keeps your privacy in mind. home: https://truecharts.org/charts/unstable/reactive-resume icon: https://truecharts.org/img/hotlink-ok/chart-icons/reactive-resume.png deprecated: false sources: - - https://github.com/reactive-resume/reactive-resume - - https://github.com/truecharts/charts/tree/master/charts/unstable/reactive-resume - - https://github.com/truecharts/containers/tree/master/mirrorreactive-resume-client + - https://github.com/reactive-resume/reactive-resume + - https://github.com/truecharts/charts/tree/master/charts/unstable/reactive-resume + - https://hub.docker.com/r/amruthpillai/reactive-resume maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - reactive-resume - - Productivity + - reactive-resume + - Productivity dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - 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/category: Productivity - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: unstable + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: Productivity + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: unstable type: application diff --git a/charts/unstable/reactive-resume/values.yaml b/charts/unstable/reactive-resume/values.yaml index 425ac687d31..f7a7897763a 100644 --- a/charts/unstable/reactive-resume/values.yaml +++ b/charts/unstable/reactive-resume/values.yaml @@ -1,11 +1,11 @@ image: - repository: tccr.io/truecharts/reactive-resume-client + repository: amruthpillai/reactive-resume + tag: client-3.8.4@853f07b486a66b5549b6784c2aa034fa888409ffebfe53393aeb8f00ed0da590 pullPolicy: IfNotPresent - tag: latest@sha256:f9d11934cb0a01f72b4aed13efdf454296e477172e14d2793d42aab9b5d46e20 serverImage: - repository: tccr.io/truecharts/reactive-resume-server + repository: amruthpillai/reactive-resume + tag: server-3.8.4@5be7e61a2ff5ef50fbf9a3aa8bfc8b7aa7d6f26ea2c760b9e789596c6eb31e26 pullPolicy: IfNotPresent - tag: latest@sha256:1d1b4862f77ea7cebf2df843fc61a47a0dcaf5acbd10bb65187a75d4db504774 securityContext: container: diff --git a/charts/unstable/speedtest-tracker/Chart.yaml b/charts/unstable/speedtest-tracker/Chart.yaml index d4ac1f99e6b..5656629a631 100644 --- a/charts/unstable/speedtest-tracker/Chart.yaml +++ b/charts/unstable/speedtest-tracker/Chart.yaml @@ -1,36 +1,36 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: speedtest-tracker -version: 4.0.27 -appVersion: latest +version: 4.0.29 +appVersion: 0.13.1 description: A self-hosted internet performance tracking application that runs speedtest checks against Ookla's Speedtest service. home: https://truecharts.org/charts/incubator/speedtest-tracker icon: https://truecharts.org/img/hotlink-ok/chart-icons/speedtest-tracker.png deprecated: false sources: - - https://github.com/alexjustesen/speedtest-tracker - - https://github.com/truecharts/charts/tree/master/charts/incubator/speedtest-tracker - - https://github.com/truecharts/containers/tree/master/mirrorspeedtest-tracker + - https://github.com/truecharts/charts/tree/master/charts/incubator/speedtest-tracker + - https://ghcr.io/alexjustesen/speedtest-tracker + - https://github.com/alexjustesen/speedtest-tracker maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - speedtest + - speedtest dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - 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/category: speedtest - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: speedtest + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/speedtest-tracker/values.yaml b/charts/unstable/speedtest-tracker/values.yaml index a6573f5ee10..1794e2583ea 100644 --- a/charts/unstable/speedtest-tracker/values.yaml +++ b/charts/unstable/speedtest-tracker/values.yaml @@ -1,6 +1,6 @@ image: - repository: tccr.io/truecharts/speedtest-tracker - tag: latest@sha256:77fbe15f6bad2371442f1a76cc9e084f45b202ad171ec5acfd449444e60f7a41 + repository: ghcr.io/alexjustesen/speedtest-tracker + tag: v0.13.1@3015c7ce66a5d6ae7a07cf54311f426967d5e23c1a6ec1f092ed17ed4d6e3133 pullPolicy: IfNotPresent securityContext: diff --git a/charts/unstable/telepush/Chart.yaml b/charts/unstable/telepush/Chart.yaml index 1a88b7e8951..b8d01041064 100644 --- a/charts/unstable/telepush/Chart.yaml +++ b/charts/unstable/telepush/Chart.yaml @@ -1,38 +1,38 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: telepush -version: 0.0.16 +version: 0.0.18 appVersion: 4.1.1 description: A simple bot to translate JSON HTTP requests into Telegram push messages. home: https://truecharts.org/charts/incubator/telepush icon: https://truecharts.org/img/hotlink-ok/chart-icons/telepush.png deprecated: false sources: - - https://github.com/muety/telepush - - https://github.com/truecharts/charts/tree/master/charts/incubator/telepush - - https://github.com/truecharts/containers/tree/master/mirrortelepush + - https://github.com/muety/telepush + - https://github.com/truecharts/charts/tree/master/charts/incubator/telepush + - https://ghcr.io/muety/telepush maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - telepush - - telegram - - notifications + - telepush + - telegram + - notifications dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - 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/category: notifications - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: notifications + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/telepush/values.yaml b/charts/unstable/telepush/values.yaml index 8a5b17ed6b1..0f9948562f5 100644 --- a/charts/unstable/telepush/values.yaml +++ b/charts/unstable/telepush/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/telepush + repository: ghcr.io/muety/telepush + tag: 4.1.1@3238c403f93d4004a406f6bc19f5e83957efb6287bfc1498136d747b8f44908a pullPolicy: IfNotPresent - tag: v4.1.1@sha256:43d1b195c96a73254aaae38efc862b55cfc6ec50d8f098366086076b14890cb2 service: main: diff --git a/charts/unstable/twingate-connector/Chart.yaml b/charts/unstable/twingate-connector/Chart.yaml index 892fb94e022..02b522ae2bf 100644 --- a/charts/unstable/twingate-connector/Chart.yaml +++ b/charts/unstable/twingate-connector/Chart.yaml @@ -1,37 +1,37 @@ -kubeVersion: ">=1.24.0-0" +kubeVersion: '>=1.24.0-0' apiVersion: v2 name: twingate-connector -version: 0.0.13 -appVersion: 1.56.0 +version: 0.0.15 +appVersion: 1.60.0 description: Twingate is remote access for the modern world. home: https://truecharts.org/charts/incubator/twingate-connector icon: https://truecharts.org/img/hotlink-ok/chart-icons/twingate-connector.png deprecated: false sources: - - https://www.twingate.com/docs/connector-deployment - - https://github.com/truecharts/charts/tree/master/charts/incubator/twingate-connector - - https://github.com/truecharts/containers/tree/master/mirrortwingate-connector + - https://www.twingate.com/docs/connector-deployment + - https://github.com/truecharts/charts/tree/master/charts/incubator/twingate-connector + - https://hub.docker.com/r/twingate/connector maintainers: - - name: TrueCharts - email: info@truecharts.org - url: https://truecharts.org + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org keywords: - - twingate-connector - - networking + - twingate-connector + - networking dependencies: - - name: common - version: 17.2.18 - repository: oci://tccr.io/truecharts - condition: "" - alias: "" - tags: [] - import-values: [] + - 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/category: network - truecharts.org/max_helm_version: "3.13" - truecharts.org/min_helm_version: "3.12" - truecharts.org/train: incubator + max_scale_version: 23.10.2 + min_scale_version: 23.10.0 + truecharts.org/SCALE-support: "true" + truecharts.org/category: network + truecharts.org/max_helm_version: "3.13" + truecharts.org/min_helm_version: "3.12" + truecharts.org/train: incubator type: application diff --git a/charts/unstable/twingate-connector/values.yaml b/charts/unstable/twingate-connector/values.yaml index cf62d674bf4..c140f985441 100644 --- a/charts/unstable/twingate-connector/values.yaml +++ b/charts/unstable/twingate-connector/values.yaml @@ -1,7 +1,7 @@ image: - repository: tccr.io/truecharts/twingate-connector + repository: twingate/connector + tag: 1.60.0@dcb7c6578f23bd03a3e25e93db0cb6b3ba23d89e826b8adfdfb0c08af4d6bf7f pullPolicy: IfNotPresent - tag: v1.56.0@sha256:d329ef493caf335c7ff78d8f12323dd1c13fac965995caee39718fae2eb2829b workload: main: diff --git a/tools/build-release.sh b/tools/build-release.sh index ffd6a56e818..17091dbad96 100755 --- a/tools/build-release.sh +++ b/tools/build-release.sh @@ -198,7 +198,8 @@ copy_docs() { prep_helm() { if [[ -z "$standalone" ]]; then - # helm repo update + echo "helm repo update..." + # helm repo update fi } export -f prep_helm