From 55152d7dec0941afc40b11616f1443b0abd04606 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten-Lebbing Date: Thu, 7 Apr 2022 21:09:09 +0200 Subject: [PATCH] fix(ci): ensure ghcr is used when running tests (#2449) * no message * update helm for install tests (to match SCALE nightly) and ensure ghcr is used for tests * bump something --- .github/workflows/charts-test.yaml | 38 ++++++++++++++++++----- charts/dev/backuppc/README.md | 38 ----------------------- charts/dev/backuppc/readme.md | 0 charts/dev/baikal/README.md | 38 ----------------------- charts/dev/baikal/readme.md | 0 charts/dev/barcodebuddy/README.md | 38 ----------------------- charts/dev/barcodebuddy/readme.md | 0 charts/dev/barotrauma/README.md | 38 ----------------------- charts/dev/barotrauma/readme.md | 0 charts/dev/bitcoin-node/README.md | 38 ----------------------- charts/dev/bitcoin-node/readme.md | 0 charts/dev/bitcoind/README.md | 38 ----------------------- charts/dev/bitcoind/readme.md | 0 charts/dev/bitcoinunlimited/README.md | 37 ---------------------- charts/dev/bitcoinunlimited/readme.md | 0 charts/dev/bitcoinwalletgui/README.md | 37 ---------------------- charts/dev/bitcoinwalletgui/readme.md | 0 charts/dev/blender-desktop-g3/README.md | 38 ----------------------- charts/dev/blender-desktop-g3/readme.md | 0 charts/dev/blender/README.md | 39 ------------------------ charts/dev/blender/readme.md | 0 charts/dev/breitbandmessung-de/README.md | 38 ----------------------- charts/dev/breitbandmessung-de/readme.md | 0 charts/dev/btdex/README.md | 38 ----------------------- charts/dev/btdex/readme.md | 0 charts/dev/bwapp/README.md | 38 ----------------------- charts/dev/bwapp/readme.md | 0 charts/dev/server-7daystodie/Chart.yaml | 2 +- charts/dev/server-7daystodie/README.md | 38 ----------------------- charts/dev/server-7daystodie/readme.md | 0 30 files changed, 32 insertions(+), 539 deletions(-) delete mode 100644 charts/dev/backuppc/README.md delete mode 100644 charts/dev/backuppc/readme.md delete mode 100644 charts/dev/baikal/README.md delete mode 100644 charts/dev/baikal/readme.md delete mode 100644 charts/dev/barcodebuddy/README.md delete mode 100644 charts/dev/barcodebuddy/readme.md delete mode 100644 charts/dev/barotrauma/README.md delete mode 100644 charts/dev/barotrauma/readme.md delete mode 100644 charts/dev/bitcoin-node/README.md delete mode 100644 charts/dev/bitcoin-node/readme.md delete mode 100644 charts/dev/bitcoind/README.md delete mode 100644 charts/dev/bitcoind/readme.md delete mode 100644 charts/dev/bitcoinunlimited/README.md delete mode 100644 charts/dev/bitcoinunlimited/readme.md delete mode 100644 charts/dev/bitcoinwalletgui/README.md delete mode 100644 charts/dev/bitcoinwalletgui/readme.md delete mode 100644 charts/dev/blender-desktop-g3/README.md delete mode 100644 charts/dev/blender-desktop-g3/readme.md delete mode 100644 charts/dev/blender/README.md delete mode 100644 charts/dev/blender/readme.md delete mode 100644 charts/dev/breitbandmessung-de/README.md delete mode 100644 charts/dev/breitbandmessung-de/readme.md delete mode 100644 charts/dev/btdex/README.md delete mode 100644 charts/dev/btdex/readme.md delete mode 100644 charts/dev/bwapp/README.md delete mode 100644 charts/dev/bwapp/readme.md delete mode 100644 charts/dev/server-7daystodie/README.md delete mode 100644 charts/dev/server-7daystodie/readme.md diff --git a/.github/workflows/charts-test.yaml b/.github/workflows/charts-test.yaml index 46b0ba5f48a..5c09dcfeeb1 100644 --- a/.github/workflows/charts-test.yaml +++ b/.github/workflows/charts-test.yaml @@ -162,12 +162,16 @@ jobs: - name: Create k3d cluster uses: nolar/setup-k3d-k3s@v1 with: - version: v1.20 + version: v1.23 - name: Remove node taints run: | kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true + - name: Remove node taints + run: | + sed -i 's/tccr.io/ghcr.io/g' ${{ matrix.chart }}/values.yaml + - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" --upgrade @@ -205,12 +209,16 @@ jobs: - name: Create k3d cluster uses: nolar/setup-k3d-k3s@v1 with: - version: v1.20 + version: v1.23 - name: Remove node taints run: | kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true + - name: Remove node taints + run: | + sed -i 's/tccr.io/ghcr.io/g' ${{ matrix.chart }}/values.yaml + - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" --upgrade @@ -249,12 +257,16 @@ jobs: - name: Create k3d cluster uses: nolar/setup-k3d-k3s@v1 with: - version: v1.20 + version: v1.23 - name: Remove node taints run: | kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true + - name: Remove node taints + run: | + sed -i 's/tccr.io/ghcr.io/g' ${{ matrix.chart }}/values.yaml + - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" --upgrade @@ -292,12 +304,16 @@ jobs: - name: Create k3d cluster uses: nolar/setup-k3d-k3s@v1 with: - version: v1.20 + version: v1.23 - name: Remove node taints run: | kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true + - name: Remove node taints + run: | + sed -i 's/tccr.io/ghcr.io/g' ${{ matrix.chart }}/values.yaml + - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" --upgrade @@ -325,7 +341,7 @@ jobs: helmv3 helm: "3.8.0" - - uses: actions/setup-python@21c0493ecfd34b1217f0a90ec19a327f3cc0a048 # tag=v3 + - uses: actions/setup-python@9c644ca2ab8e57ea0a487b5ec2f8290740378bfd # tag=v3 with: python-version: "3.10" @@ -335,12 +351,16 @@ jobs: - name: Create k3d cluster uses: nolar/setup-k3d-k3s@v1 with: - version: v1.20 + version: v1.23 - name: Remove node taints run: | kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true + - name: Remove node taints + run: | + sed -i 's/tccr.io/ghcr.io/g' ${{ matrix.chart }}/values.yaml + - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" --upgrade @@ -378,12 +398,16 @@ jobs: - name: Create k3d cluster uses: nolar/setup-k3d-k3s@v1 with: - version: v1.20 + version: v1.23 - name: Remove node taints run: | kubectl taint --all=true nodes node.cloudprovider.kubernetes.io/uninitialized- || true + - name: Remove node taints + run: | + sed -i 's/tccr.io/ghcr.io/g' ${{ matrix.chart }}/values.yaml + - name: Run chart-testing (install) run: ct install --config ".github/ct-install.yaml" --charts "${{ matrix.chart }}" --upgrade diff --git a/charts/dev/backuppc/README.md b/charts/dev/backuppc/README.md deleted file mode 100644 index 5c07c9a2176..00000000000 --- a/charts/dev/backuppc/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -BackupPC is a high-performance, enterprise-grade system for backing up Linux, Windows and macOS PCs and laptops to a server's disk. - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/backuppc/readme.md b/charts/dev/backuppc/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/baikal/README.md b/charts/dev/baikal/README.md deleted file mode 100644 index 1f5926d1dcc..00000000000 --- a/charts/dev/baikal/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -Baïkal is a lightweight CalDAV+CardDAV server - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/baikal/readme.md b/charts/dev/baikal/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/barcodebuddy/README.md b/charts/dev/barcodebuddy/README.md deleted file mode 100644 index 55605ed3a49..00000000000 --- a/charts/dev/barcodebuddy/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -<b>Barcode Buddy is a Grocy companion app/plugin, which allows you to install the Barcode Buddy app and scan products directly to your Grocy library.</b> - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/barcodebuddy/readme.md b/charts/dev/barcodebuddy/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/barotrauma/README.md b/charts/dev/barotrauma/README.md deleted file mode 100644 index ca42a12bbdb..00000000000 --- a/charts/dev/barotrauma/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -This Docker will download and install SteamCMD. It will also install Barotrauma and run it. - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/barotrauma/readme.md b/charts/dev/barotrauma/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/bitcoin-node/README.md b/charts/dev/bitcoin-node/README.md deleted file mode 100644 index 011996d83aa..00000000000 --- a/charts/dev/bitcoin-node/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -DESCRIPTION - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/bitcoin-node/readme.md b/charts/dev/bitcoin-node/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/bitcoind/README.md b/charts/dev/bitcoind/README.md deleted file mode 100644 index 2e93d0d9ff2..00000000000 --- a/charts/dev/bitcoind/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -Support the Bitcoin network by hosting your own node! This template provides a full Bitcoin Core node, built in a verifiably trustless way. - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/bitcoind/readme.md b/charts/dev/bitcoind/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/bitcoinunlimited/README.md b/charts/dev/bitcoinunlimited/README.md deleted file mode 100644 index 1d087359b5b..00000000000 --- a/charts/dev/bitcoinunlimited/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# Introduction - -The Bitcoin Unlimited project seeks to provide a voice to all stakeholders in the Bitcoin ecosystem. - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/bitcoinunlimited/readme.md b/charts/dev/bitcoinunlimited/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/bitcoinwalletgui/README.md b/charts/dev/bitcoinwalletgui/README.md deleted file mode 100644 index 57bcda38231..00000000000 --- a/charts/dev/bitcoinwalletgui/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# Introduction - -Bitcoin wallet with GUI over VNC and NoVNC. - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/bitcoinwalletgui/readme.md b/charts/dev/bitcoinwalletgui/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/blender-desktop-g3/README.md b/charts/dev/blender-desktop-g3/README.md deleted file mode 100644 index cf7f53e77d5..00000000000 --- a/charts/dev/blender-desktop-g3/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -DESCRIPTION - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/blender-desktop-g3/readme.md b/charts/dev/blender-desktop-g3/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/blender/README.md b/charts/dev/blender/README.md deleted file mode 100644 index e6d97ee3e59..00000000000 --- a/charts/dev/blender/README.md +++ /dev/null @@ -1,39 +0,0 @@ -# Introduction - -Blender(https://www.blender.org/) is a free and open-source 3D computer graphics software toolset used for creating animated films, visual effects, art, 3D printed models, motion graphics, interactive 3D applications, virtual reality, and computer games. **This image does not support GPU rendering out of the box only accelerated workspace experience** - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/blender/readme.md b/charts/dev/blender/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/breitbandmessung-de/README.md b/charts/dev/breitbandmessung-de/README.md deleted file mode 100644 index 3020b7588a8..00000000000 --- a/charts/dev/breitbandmessung-de/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -A script to enable customers of lazy ISPs to perform measurement campaigns of the connection speed as described here in an automated way. - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/breitbandmessung-de/readme.md b/charts/dev/breitbandmessung-de/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/btdex/README.md b/charts/dev/btdex/README.md deleted file mode 100644 index ca7030e9dad..00000000000 --- a/charts/dev/btdex/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -This is a Docker container for BTDEX based on jlesage/docker-baseimage-gui Docker image. - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/btdex/readme.md b/charts/dev/btdex/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/bwapp/README.md b/charts/dev/bwapp/README.md deleted file mode 100644 index 5e90c6eeafd..00000000000 --- a/charts/dev/bwapp/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -bWAPP, or a buggy web application, is a free and open source deliberately insecure web application. - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/bwapp/readme.md b/charts/dev/bwapp/readme.md deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/charts/dev/server-7daystodie/Chart.yaml b/charts/dev/server-7daystodie/Chart.yaml index 990ae02552b..3d27fe1f475 100644 --- a/charts/dev/server-7daystodie/Chart.yaml +++ b/charts/dev/server-7daystodie/Chart.yaml @@ -27,4 +27,4 @@ sources: - https://www.steampowered.com/ - https://hub.docker.com/r/ich777/steamcmd/ type: application -version: 0.0.1 +version: 0.0.2 diff --git a/charts/dev/server-7daystodie/README.md b/charts/dev/server-7daystodie/README.md deleted file mode 100644 index b2b980cfcfd..00000000000 --- a/charts/dev/server-7daystodie/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# Introduction - -This Docker will download and install SteamCMD. It will also install 7 Days to Die and run it. - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://library-charts.truecharts.org | common | 9.2.6 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/02-Installing-an-App/). - -## Upgrading, Rolling Back and Uninstalling the Chart - -To upgrade, rollback or delete this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/04-Upgrade-rollback-delete-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Adding-TrueCharts/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/dev/server-7daystodie/readme.md b/charts/dev/server-7daystodie/readme.md deleted file mode 100644 index e69de29bb2d..00000000000