From e1bc5676c686f29322d66bd7e71f4c41c411ecf5 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Tue, 25 Jun 2024 13:05:45 +0200 Subject: [PATCH] chore: Add a bunch of direct-from-upstream system charts for clustertool-use (#23768) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Description** ⚒️ Fixes # **⚙️ Type of change** - [ ] ⚙️ Feature/App addition - [ ] 🪛 Bugfix - [ ] ⚠️ Breaking change (fix or feature that would cause existing functionality to not work as expected) - [ ] 🔃 Refactor of current code **🧪 How Has This Been Tested?** **📃 Notes:** **✔️ Checklist:** - [ ] ⚖️ My code follows the style guidelines of this project - [ ] 👀 I have performed a self-review of my own code - [ ] #️⃣ I have commented my code, particularly in hard-to-understand areas - [ ] 📄 I have made corresponding changes to the documentation - [ ] ⚠️ My changes generate no new warnings - [ ] 🧪 I have added tests to this description that prove my fix is effective or that my feature works - [ ] ⬆️ I increased versions for any altered app according to semantic versioning - [ ] I made sure the title starts with `feat(chart-name):`, `fix(chart-name):` or `chore(chart-name):` **➕ App addition** If this PR is an app addition please make sure you have done the following. - [ ] 🖼️ I have added an icon in the Chart's root directory called `icon.png` --- _Please don't blindly check all the boxes. Read them and only check those that apply. Those checkboxes are there for the reviewer to see what is this all about and the status of this PR with a quick glance._ --- .github/scripts/install_dependencies.sh | 10 +++ .../premium/kubernetes-dashboard/.helmignore | 32 +++++++++ .../premium/kubernetes-dashboard/Chart.yaml | 44 +++++++++++++ charts/premium/kubernetes-dashboard/README.md | 61 ++++++++++++++++++ .../kubernetes-dashboard/icon-small.webp | Bin 0 -> 556 bytes charts/premium/kubernetes-dashboard/icon.webp | Bin 0 -> 3732 bytes .../kubernetes-dashboard/templates/NOTES.txt | 1 + .../templates/common.yaml | 5 ++ .../premium/kubernetes-dashboard/values.yaml | 25 +++++++ .../intel-device-plugins-operator/.helmignore | 32 +++++++++ .../intel-device-plugins-operator/Chart.yaml | 44 +++++++++++++ .../intel-device-plugins-operator/README.md | 61 ++++++++++++++++++ .../icon-small.webp | Bin 0 -> 556 bytes .../intel-device-plugins-operator/icon.webp | Bin 0 -> 3732 bytes .../templates/NOTES.txt | 1 + .../templates/common.yaml | 5 ++ .../intel-device-plugins-operator/values.yaml | 25 +++++++ .../system/kubelet-csr-approver/.helmignore | 32 +++++++++ charts/system/kubelet-csr-approver/Chart.yaml | 44 +++++++++++++ charts/system/kubelet-csr-approver/README.md | 61 ++++++++++++++++++ .../kubelet-csr-approver/icon-small.webp | Bin 0 -> 556 bytes charts/system/kubelet-csr-approver/icon.webp | Bin 0 -> 3732 bytes .../kubelet-csr-approver/templates/NOTES.txt | 1 + .../templates/common.yaml | 5 ++ .../system/kubelet-csr-approver/values.yaml | 25 +++++++ charts/system/metrics-server/.helmignore | 32 +++++++++ charts/system/metrics-server/Chart.yaml | 44 +++++++++++++ charts/system/metrics-server/README.md | 61 ++++++++++++++++++ charts/system/metrics-server/icon-small.webp | Bin 0 -> 556 bytes charts/system/metrics-server/icon.webp | Bin 0 -> 3732 bytes .../system/metrics-server/templates/NOTES.txt | 1 + .../metrics-server/templates/common.yaml | 5 ++ charts/system/metrics-server/values.yaml | 25 +++++++ charts/system/nvidia-gpu-operator/.helmignore | 32 +++++++++ charts/system/nvidia-gpu-operator/Chart.yaml | 44 +++++++++++++ charts/system/nvidia-gpu-operator/README.md | 61 ++++++++++++++++++ .../nvidia-gpu-operator/icon-small.webp | Bin 0 -> 556 bytes charts/system/nvidia-gpu-operator/icon.webp | Bin 0 -> 3732 bytes .../nvidia-gpu-operator/templates/NOTES.txt | 1 + .../nvidia-gpu-operator/templates/common.yaml | 5 ++ charts/system/nvidia-gpu-operator/values.yaml | 25 +++++++ charts/system/spegel/.helmignore | 32 +++++++++ charts/system/spegel/Chart.yaml | 44 +++++++++++++ charts/system/spegel/README.md | 61 ++++++++++++++++++ charts/system/spegel/icon-small.webp | Bin 0 -> 556 bytes charts/system/spegel/icon.webp | Bin 0 -> 3732 bytes charts/system/spegel/templates/NOTES.txt | 1 + charts/system/spegel/templates/common.yaml | 5 ++ charts/system/spegel/values.yaml | 25 +++++++ 49 files changed, 1018 insertions(+) create mode 100644 charts/premium/kubernetes-dashboard/.helmignore create mode 100644 charts/premium/kubernetes-dashboard/Chart.yaml create mode 100644 charts/premium/kubernetes-dashboard/README.md create mode 100644 charts/premium/kubernetes-dashboard/icon-small.webp create mode 100644 charts/premium/kubernetes-dashboard/icon.webp create mode 100644 charts/premium/kubernetes-dashboard/templates/NOTES.txt create mode 100644 charts/premium/kubernetes-dashboard/templates/common.yaml create mode 100644 charts/premium/kubernetes-dashboard/values.yaml create mode 100644 charts/system/intel-device-plugins-operator/.helmignore create mode 100644 charts/system/intel-device-plugins-operator/Chart.yaml create mode 100644 charts/system/intel-device-plugins-operator/README.md create mode 100644 charts/system/intel-device-plugins-operator/icon-small.webp create mode 100644 charts/system/intel-device-plugins-operator/icon.webp create mode 100644 charts/system/intel-device-plugins-operator/templates/NOTES.txt create mode 100644 charts/system/intel-device-plugins-operator/templates/common.yaml create mode 100644 charts/system/intel-device-plugins-operator/values.yaml create mode 100644 charts/system/kubelet-csr-approver/.helmignore create mode 100644 charts/system/kubelet-csr-approver/Chart.yaml create mode 100644 charts/system/kubelet-csr-approver/README.md create mode 100644 charts/system/kubelet-csr-approver/icon-small.webp create mode 100644 charts/system/kubelet-csr-approver/icon.webp create mode 100644 charts/system/kubelet-csr-approver/templates/NOTES.txt create mode 100644 charts/system/kubelet-csr-approver/templates/common.yaml create mode 100644 charts/system/kubelet-csr-approver/values.yaml create mode 100644 charts/system/metrics-server/.helmignore create mode 100644 charts/system/metrics-server/Chart.yaml create mode 100644 charts/system/metrics-server/README.md create mode 100644 charts/system/metrics-server/icon-small.webp create mode 100644 charts/system/metrics-server/icon.webp create mode 100644 charts/system/metrics-server/templates/NOTES.txt create mode 100644 charts/system/metrics-server/templates/common.yaml create mode 100644 charts/system/metrics-server/values.yaml create mode 100644 charts/system/nvidia-gpu-operator/.helmignore create mode 100644 charts/system/nvidia-gpu-operator/Chart.yaml create mode 100644 charts/system/nvidia-gpu-operator/README.md create mode 100644 charts/system/nvidia-gpu-operator/icon-small.webp create mode 100644 charts/system/nvidia-gpu-operator/icon.webp create mode 100644 charts/system/nvidia-gpu-operator/templates/NOTES.txt create mode 100644 charts/system/nvidia-gpu-operator/templates/common.yaml create mode 100644 charts/system/nvidia-gpu-operator/values.yaml create mode 100644 charts/system/spegel/.helmignore create mode 100644 charts/system/spegel/Chart.yaml create mode 100644 charts/system/spegel/README.md create mode 100644 charts/system/spegel/icon-small.webp create mode 100644 charts/system/spegel/icon.webp create mode 100644 charts/system/spegel/templates/NOTES.txt create mode 100644 charts/system/spegel/templates/common.yaml create mode 100644 charts/system/spegel/values.yaml diff --git a/.github/scripts/install_dependencies.sh b/.github/scripts/install_dependencies.sh index ffc6e8ba22d..c094993f219 100755 --- a/.github/scripts/install_dependencies.sh +++ b/.github/scripts/install_dependencies.sh @@ -73,3 +73,13 @@ if [[ "$curr_chart" != "charts/premium/traefik" ]]; then fi echo "Done installing traefik chart" fi + +if [[ "$curr_chart" == "charts/system/intel-device-plugins-operator" ]]; then + echo "Installing cert-manager chart" + helm install traefik 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 diff --git a/charts/premium/kubernetes-dashboard/.helmignore b/charts/premium/kubernetes-dashboard/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/premium/kubernetes-dashboard/.helmignore @@ -0,0 +1,32 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png +icon.webp +icon-small.webp diff --git a/charts/premium/kubernetes-dashboard/Chart.yaml b/charts/premium/kubernetes-dashboard/Chart.yaml new file mode 100644 index 00000000000..b1d1800928e --- /dev/null +++ b/charts/premium/kubernetes-dashboard/Chart.yaml @@ -0,0 +1,44 @@ +annotations: + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.15" + truecharts.org/min_helm_version: "3.11" + truecharts.org/train: system +apiVersion: v2 +appVersion: latest +dependencies: + - name: common + version: 24.0.0 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: kubernetes-dashboard + version: 5.10.0 + repository: oci://ghcr.io/elfhosted/charts + condition: "" + alias: kubernetes-dashboard + tags: [] + import-values: [] +deprecated: false +description: The default Kubernetes Dashboard +home: https://truecharts.org/charts/system/kubernetes-dashboard +icon: https://truecharts.org/img/hotlink-ok/chart-icons/kubernetes-dashboard.webp +keywords: + - kubernetes-dashboard + - loadbalancer +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: kubernetes-dashboard +sources: + - https://github.com/kubernetes-dashboard/kubernetes-dashboard + - https://github.com/truecharts/charts/tree/master/charts/system/kubernetes-dashboard + - https://github.com/truecharts/containers/tree/master/apps/alpine + - https://kubernetes-dashboard.universe.tf +type: application +version: 16.1.0 diff --git a/charts/premium/kubernetes-dashboard/README.md b/charts/premium/kubernetes-dashboard/README.md new file mode 100644 index 00000000000..16b145f0a32 --- /dev/null +++ b/charts/premium/kubernetes-dashboard/README.md @@ -0,0 +1,61 @@ +--- +title: README +--- + +## General Info + +TrueCharts can be installed as both _normal_ Helm Charts or as TrueNAS SCALE Apps. +Both solutions are fully supported, but we heavily advice the use of normal Helm Charts where possible + +For more information about this Chart, please check the docs on the TrueCharts [website](https://truecharts.org/charts/system/metallb) + +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** + +## Installation + +### Helm-Chart installation + +To install TrueCharts Helm charts using Helm, you can use our OCI Repository. + +`helm install mychart oci://tccr.io/truecharts/CHARTNAME` + +For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides) + + +### TrueNAS SCALE Apps + +For more information on how to use TrueCharts as TrueNAS SCALE Apps, please checkout the [quick-start guides for TrueNAS SCALE](/deprecated/scale). + +## Chart Specific Guides and information + +All our charts have dedicated documentation pages. +The documentation for this chart can be found here: +https://truecharts.org/charts/system/metallb + +## Configuration Options + +Please note: For TrueNAS SCALE, only options available in the GUI are supported. +Hence most of these docs do not apply to TrueNAS SCALE + +To view the chart specific options, please view Values.yaml included in the chart. +The most recent version of which, is available here: https://github.com/truecharts/charts/charts/system/metallb/values.yaml + +All our Charts use a shared "common" library chart that contains most of the templating and options. +For the complete overview of all available options, please checkout the documentation for them on the [common docs on our website](/common) + +For information about the common chart and all defaults included with it, please review its values.yaml file available here: https://github.com/truecharts/library-charts/blob/main/library/common/values.yaml + +## Support + +- See the [Website](https://truecharts.org) +- Check our [Discord](https://discord.gg/tVsPTHWTtr) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) + +--- + +## Sponsor TrueCharts + +TrueCharts can only exist due to the incredible effort of our staff. +Please consider making a [donation](/general/sponsor) or contributing back to the project any way you can! + +_All Rights Reserved - The TrueCharts Project_ diff --git a/charts/premium/kubernetes-dashboard/icon-small.webp b/charts/premium/kubernetes-dashboard/icon-small.webp new file mode 100644 index 0000000000000000000000000000000000000000..6380d00e9d62fa760f6263e0e3135095caa3f00f GIT binary patch literal 556 zcmV+{0@M9cNk&E_0ssJ4MM6+kP&il$0000G0000V0018V06|PpNY?=X00EGzZQI&5 zZDKT6%2ho;8+ zH*pM-LsZ-ksm)DSLQ~RFQYkcO@)cfAIL(rM6fTuCJBe~s^OZTtGtFkKRCy^`Oi9&} zysYThlF`I@4Zdc>sJ=V@QSg00v!OZV1nJ+o>8WAMQ{wVQovxCTjn5U{H_IEzyzC&! z=m@Z~NRsPCUN*|SM#vAln*gA7>bUUhiitYx-*h=qs`#b&W$m~E09H^q uASM6+0MG&eodGH!03ZN9eJ+wmq@tmrH|PM64~c020ImZN0RH*{fB*oY@B|b9 literal 0 HcmV?d00001 diff --git a/charts/premium/kubernetes-dashboard/icon.webp b/charts/premium/kubernetes-dashboard/icon.webp new file mode 100644 index 0000000000000000000000000000000000000000..c876cb18cc1e1fee16a5b3bdc3384304d96955b6 GIT binary patch literal 3732 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 literal 0 HcmV?d00001 diff --git a/charts/premium/kubernetes-dashboard/templates/NOTES.txt b/charts/premium/kubernetes-dashboard/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/premium/kubernetes-dashboard/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/premium/kubernetes-dashboard/templates/common.yaml b/charts/premium/kubernetes-dashboard/templates/common.yaml new file mode 100644 index 00000000000..995efb03eb0 --- /dev/null +++ b/charts/premium/kubernetes-dashboard/templates/common.yaml @@ -0,0 +1,5 @@ +{{/* Make sure all variables are set properly */}} +{{- include "tc.v1.common.loader.init" . }} + +{{/* Render the templates */}} +{{ include "tc.v1.common.loader.apply" . }} diff --git a/charts/premium/kubernetes-dashboard/values.yaml b/charts/premium/kubernetes-dashboard/values.yaml new file mode 100644 index 00000000000..8ffafd21a48 --- /dev/null +++ b/charts/premium/kubernetes-dashboard/values.yaml @@ -0,0 +1,25 @@ +image: + repository: tccr.io/tccr/alpine + pullPolicy: IfNotPresent + tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558 + +service: + main: + enabled: false + ports: + main: + enabled: false + +workload: + main: + enabled: false + +portal: + open: + enabled: false + +operator: + register: true + +manifestManager: + enabled: false diff --git a/charts/system/intel-device-plugins-operator/.helmignore b/charts/system/intel-device-plugins-operator/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/system/intel-device-plugins-operator/.helmignore @@ -0,0 +1,32 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png +icon.webp +icon-small.webp diff --git a/charts/system/intel-device-plugins-operator/Chart.yaml b/charts/system/intel-device-plugins-operator/Chart.yaml new file mode 100644 index 00000000000..ad8102b513e --- /dev/null +++ b/charts/system/intel-device-plugins-operator/Chart.yaml @@ -0,0 +1,44 @@ +annotations: + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.15" + truecharts.org/min_helm_version: "3.11" + truecharts.org/train: system +apiVersion: v2 +appVersion: latest +dependencies: + - name: common + version: 24.0.0 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: intel-device-plugins-operator + version: 0.30.0 + repository: https://intel.github.io/helm-charts + condition: "" + alias: intel-device-operator + tags: [] + import-values: [] +deprecated: false +description: Add support for using Intel Devices in yoru cluster +home: https://truecharts.org/charts/system/intel-device-operator +icon: https://truecharts.org/img/hotlink-ok/chart-icons/intel-device-operator.webp +keywords: + - intel-device-operator + - loadbalancer +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: intel-device-operator +sources: + - https://github.com/intel-device-operator/intel-device-operator + - https://github.com/truecharts/charts/tree/master/charts/system/intel-device-operator + - https://github.com/truecharts/containers/tree/master/apps/alpine + - https://intel-device-operator.universe.tf +type: application +version: 16.1.0 diff --git a/charts/system/intel-device-plugins-operator/README.md b/charts/system/intel-device-plugins-operator/README.md new file mode 100644 index 00000000000..16b145f0a32 --- /dev/null +++ b/charts/system/intel-device-plugins-operator/README.md @@ -0,0 +1,61 @@ +--- +title: README +--- + +## General Info + +TrueCharts can be installed as both _normal_ Helm Charts or as TrueNAS SCALE Apps. +Both solutions are fully supported, but we heavily advice the use of normal Helm Charts where possible + +For more information about this Chart, please check the docs on the TrueCharts [website](https://truecharts.org/charts/system/metallb) + +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** + +## Installation + +### Helm-Chart installation + +To install TrueCharts Helm charts using Helm, you can use our OCI Repository. + +`helm install mychart oci://tccr.io/truecharts/CHARTNAME` + +For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides) + + +### TrueNAS SCALE Apps + +For more information on how to use TrueCharts as TrueNAS SCALE Apps, please checkout the [quick-start guides for TrueNAS SCALE](/deprecated/scale). + +## Chart Specific Guides and information + +All our charts have dedicated documentation pages. +The documentation for this chart can be found here: +https://truecharts.org/charts/system/metallb + +## Configuration Options + +Please note: For TrueNAS SCALE, only options available in the GUI are supported. +Hence most of these docs do not apply to TrueNAS SCALE + +To view the chart specific options, please view Values.yaml included in the chart. +The most recent version of which, is available here: https://github.com/truecharts/charts/charts/system/metallb/values.yaml + +All our Charts use a shared "common" library chart that contains most of the templating and options. +For the complete overview of all available options, please checkout the documentation for them on the [common docs on our website](/common) + +For information about the common chart and all defaults included with it, please review its values.yaml file available here: https://github.com/truecharts/library-charts/blob/main/library/common/values.yaml + +## Support + +- See the [Website](https://truecharts.org) +- Check our [Discord](https://discord.gg/tVsPTHWTtr) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) + +--- + +## Sponsor TrueCharts + +TrueCharts can only exist due to the incredible effort of our staff. +Please consider making a [donation](/general/sponsor) or contributing back to the project any way you can! + +_All Rights Reserved - The TrueCharts Project_ diff --git a/charts/system/intel-device-plugins-operator/icon-small.webp b/charts/system/intel-device-plugins-operator/icon-small.webp new file mode 100644 index 0000000000000000000000000000000000000000..6380d00e9d62fa760f6263e0e3135095caa3f00f GIT binary patch literal 556 zcmV+{0@M9cNk&E_0ssJ4MM6+kP&il$0000G0000V0018V06|PpNY?=X00EGzZQI&5 zZDKT6%2ho;8+ zH*pM-LsZ-ksm)DSLQ~RFQYkcO@)cfAIL(rM6fTuCJBe~s^OZTtGtFkKRCy^`Oi9&} zysYThlF`I@4Zdc>sJ=V@QSg00v!OZV1nJ+o>8WAMQ{wVQovxCTjn5U{H_IEzyzC&! z=m@Z~NRsPCUN*|SM#vAln*gA7>bUUhiitYx-*h=qs`#b&W$m~E09H^q uASM6+0MG&eodGH!03ZN9eJ+wmq@tmrH|PM64~c020ImZN0RH*{fB*oY@B|b9 literal 0 HcmV?d00001 diff --git a/charts/system/intel-device-plugins-operator/icon.webp b/charts/system/intel-device-plugins-operator/icon.webp new file mode 100644 index 0000000000000000000000000000000000000000..c876cb18cc1e1fee16a5b3bdc3384304d96955b6 GIT binary patch literal 3732 zcmV;F4r}pJNk&GD4gdgGMM6+kP&il$0000G0001$005N$06|PpNL~#900HoaZQJrR z+V&k+5(utEDrkWgs6dgrPi+}@sh9daT6cFhsNXjopQ()d)E%Zb^#WC>0fmGlZD>NS z9FLsmB}cCQ9}yD(o-FuBCg(i={<57voVawm%51Y)s&8LD@%^r4@4uLn66G(zvsjnktr8I$qM@QoX^wgd^6tR58S zqkSR$mmaD|;`IlY^bgXu;1R!7I?w|hl|K&)(X61%ITh%^l?$>1waD1Hpwxv5yPcMr zifflIT)bL-=aJ2+6uQbbcQR^Ds|}?hDq4GH@7hU&d*@`fNlQ&lZ=2Dv|KKSb_7<6y zKy;O^OV$+c*7I#BTdXTPx^`4XumFk*q1mI>pDe2rWgwz$ek(7{2z|fUiE`_X=MT<` z0F|S%hipAzl7r5o_d_+J{l0pX=_*^-FEJ2E1||02bloKlv3_qmEoi!?4y8XS-QC>} zNc;8ttlTaMv2Jy=ry06@gVOD%r(_v{yie|o;s!~GUw1Wl*4S%}(oT&^Hh@QZwH{X_ zt?}Au57NbNLCKcCN9e$V^?66E5)g4~yv|d4{Nj)zUYythJX?tS_^PC*KlkvEZZ}*g z(UPB~2aos4-DQ)2t{dGv!GC-;O0*rx1&!=_`Y{i&db~e5!;ET_SUEoiG&5o0eF<1I z%RtO)ss$zf(>(w*G@$Pl322$_O)7ky9r@-hk)W~BJ1ji3ZwM!3SZziAg9)Laxe*^! z^U%7^n~Y(a9r>lN8$g4--n+%ahG_;OezPpd|GgbhjTpcG+|lK^Q~YJ{i4-)w#ld}nigTF~(^3!fy&^4^GS_a>kn{+U~e+r5av4i0YcmeaY6b1{=x_FYucx!i|X z&NWVHM;QSHZkA=7j@UL-_F8*l`VVX@cYc7h4&}%`(hO)fsZpr$6Jii^oQ35bq%9OV z!+`i$RQj@>7>wnJ^CSg5M0T-`Sc|iY;j7dPB`kaxC}kwF8}fj*Fsx3w13|=Ktb>Ka zBn14*Ig>&xY>%j1MPF*I|Ka=;z#DLvWuKxa*4Ko}y9)w|8KyR{D*JPMmO5EwSwMU% zs#(^a8040-9E**txI@U^V5`YHRBg7JQT+oU}1?}fwnLk)xG0S40?zxOMli{ zWZy6nYjIK~e21FPEf%h32p2dTfVMEqq}GoC#2}w@fzbxpbv=kR{Q=c}_?kehx0&Tm z`+ws&#}kPStW{0i7EG+=NfwR;0R0}8yC8sAA*x^AmRQgZH>*$wkaCe#HyCIqI0@hy zVldRix{w6Wzmip!MQkBbyc-$plUJ&-nh zWTSDc2`$*f5;yuq?ML=-S}}hh&8pXljbh<}sN^C}2U>%yL|og0Y2|XxB;`C{J@O}| z{}riLb*B|%W2RWIjhRd zx|B*MtCSp0Ce-E{tJcc8(3*@e(MIohG@aCoEQ^J8o{sJlJ3aFl9l82?)}=Hukn}A* z+#f|I?Fy@=npN6{4zyTPMXshBnKq@Yd$(D)GpIEEVn=WP407+~x6x;8zfZ?9UQc5(vUe=ytfKMWQy#jC zCk6+<@CzCD{wNx2Ig8(Sv-XiN97E|PFNFztr|mTG@$)qHvBWVi+F54>3YktBXxiCV zmps3M27X0CC}!CP<~(541yERnvYmHkH}&nguYrUumO`M3bw4|$h=o}M+Fg~0h_|OS z)AcxFC4g)61hSBQs%6vx&PeqPlO8LAjo-f&5HsZ;0{=}RkjMEp!f&ISwL!gRKcT{6 z)#t5@DLYK6Stsh$+sG2v`w3$$tYhJ-y=YSk5$jgAH)eibs}lYdt6KPRR(+lT{VG{y z*{XemYKkSV=>10>ZcxYanrb=atcpGW$ro95gVl<(se;G5=)n*_#iR=ES8Yfg>wF@B z{!^BFYoI#1g{Y$a@Eg9sOw7Nd2BxVLxXsNf)B(U)79LMjC+3WDV%hvy;QK%Kn@xpv zdUX;{AUh8Lpbe+4r#kP}Dz~GPFGy~lSE}6k*6Q>!v&5ADCtP6R22~>WqQd4M2Y~$G zr8k`l*{2&+*@)~CV6Ns|H>%OSN*S?aOf)EI?6$?E3?7MB!}lglrProZ3}Ap4Y^`h01q3KGZrHI&lr}^ z5+|!HOSzG#;4edhK;`shHxzJYDwk8vax5~kU_d3yK1r`s;BWHo&TXLw)dRABbIHOD zf>Qb^c2>o6!1e!$g{PC1dZSu~>)w(WplN*mug7w(cT_5+2-)BH@?bdU=}3hFHoK%* zzkERlWSdXF?2^_n%Uhwmr<}ncG3Wsci*(AQUq;E--is7~u(87?Q4$`GS4Llq?0bPy zV6Mo*;mXWGiQOBhlp8v|hxZY7-ft$0!AO{kj zu+Z90j`u z>4e&!F#wl#AwKZGYV zj{ptM=pgVy@{wDW3UE8i_Xh zk?Y#uOf6ma8$9vfk=hpZACY%8TTlz2b2SIuzolzg`mb)}-p>Gv6KXgp{++B{$p=N` z-X9Jm{byM?h<~)xs&;=M-#p2W1{kI{@bLPZ1}!qYUWRnOOijGHYDDnPqUwQytuQ&1#Ed^Ny&(miYSWsePX(o7Pw;!KM zK=I;-u^uMGOuQtbMEf_n;Gw$sd?|?5gClgFq#t?6f|6G@6+8t1Mqh1|fQYB^QoKFG zD`oTJX{Dm~MpP89!q-V^Ude)AT#ljAH&jN^AT`LLEUS8PKpO$~m!qO)w zy=p-OXkgpDW=V+Xy0N8yVi1kM#Qtl`Tqx7@c^YVA=)@wYG(W9xsa8bx(EJl7 zl5rb_OG2f zv`=nk+qBfww6>YKeFjfiyRWzo6>Yqs|nivJdlY6s6)eNw-XoA;l6@K{trwBA4c?Z%OP6ZP;+ z_K!-=d49sO?cbfaaI>n`QeSiL=7qz1w=WqpAUi3-4?G%HP&gn60RRBd6#$(9DwY72 z06uvxkw>JWp`kd40FVy}X>Q=a0~8CuAD|z=Bs>$Fo&f#<_yPI>`TO7DuJ;GpuIB>8 z=&<=j?NtO83uvx*UvMA*)1o@X&+2h3*f7r^ht41jUwcZgLm+oqTh=$WZ>}G!xo7p9 z|CNa~rplr|dyc0VhEJT-&j0}axjt~Oyy)Nm{Z!c~7pGdZZ+U;OU;q7767TZ%fzQ2> ydquK&>B@i{JUUy%O>CYm5&!@HRSx6-|Nm2>Q&xrVhIzVjE3=Gv)Q9c>0000fuQx;h literal 0 HcmV?d00001 diff --git a/charts/system/intel-device-plugins-operator/templates/NOTES.txt b/charts/system/intel-device-plugins-operator/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/system/intel-device-plugins-operator/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/system/intel-device-plugins-operator/templates/common.yaml b/charts/system/intel-device-plugins-operator/templates/common.yaml new file mode 100644 index 00000000000..995efb03eb0 --- /dev/null +++ b/charts/system/intel-device-plugins-operator/templates/common.yaml @@ -0,0 +1,5 @@ +{{/* Make sure all variables are set properly */}} +{{- include "tc.v1.common.loader.init" . }} + +{{/* Render the templates */}} +{{ include "tc.v1.common.loader.apply" . }} diff --git a/charts/system/intel-device-plugins-operator/values.yaml b/charts/system/intel-device-plugins-operator/values.yaml new file mode 100644 index 00000000000..8ffafd21a48 --- /dev/null +++ b/charts/system/intel-device-plugins-operator/values.yaml @@ -0,0 +1,25 @@ +image: + repository: tccr.io/tccr/alpine + pullPolicy: IfNotPresent + tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558 + +service: + main: + enabled: false + ports: + main: + enabled: false + +workload: + main: + enabled: false + +portal: + open: + enabled: false + +operator: + register: true + +manifestManager: + enabled: false diff --git a/charts/system/kubelet-csr-approver/.helmignore b/charts/system/kubelet-csr-approver/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/system/kubelet-csr-approver/.helmignore @@ -0,0 +1,32 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png +icon.webp +icon-small.webp diff --git a/charts/system/kubelet-csr-approver/Chart.yaml b/charts/system/kubelet-csr-approver/Chart.yaml new file mode 100644 index 00000000000..ab0707fe26b --- /dev/null +++ b/charts/system/kubelet-csr-approver/Chart.yaml @@ -0,0 +1,44 @@ +annotations: + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.15" + truecharts.org/min_helm_version: "3.11" + truecharts.org/train: system +apiVersion: v2 +appVersion: latest +dependencies: + - name: common + version: 24.0.0 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: kubelet-csr-approver + version: 1.2.2 + repository: https://postfinance.github.io/kubelet-csr-approver + condition: "" + alias: kubelet-csr-approver + tags: [] + import-values: [] +deprecated: false +description: Automatically approve internal Kubelet Certificate Signing Requests +home: https://truecharts.org/charts/system/kubelet-csr-approver +icon: https://truecharts.org/img/hotlink-ok/chart-icons/kubelet-csr-approver.webp +keywords: + - kubelet-csr-approver + - loadbalancer +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: kubelet-csr-approver +sources: + - https://github.com/kubelet-csr-approver/kubelet-csr-approver + - https://github.com/truecharts/charts/tree/master/charts/system/kubelet-csr-approver + - https://github.com/truecharts/containers/tree/master/apps/alpine + - https://kubelet-csr-approver.universe.tf +type: application +version: 16.1.0 diff --git a/charts/system/kubelet-csr-approver/README.md b/charts/system/kubelet-csr-approver/README.md new file mode 100644 index 00000000000..16b145f0a32 --- /dev/null +++ b/charts/system/kubelet-csr-approver/README.md @@ -0,0 +1,61 @@ +--- +title: README +--- + +## General Info + +TrueCharts can be installed as both _normal_ Helm Charts or as TrueNAS SCALE Apps. +Both solutions are fully supported, but we heavily advice the use of normal Helm Charts where possible + +For more information about this Chart, please check the docs on the TrueCharts [website](https://truecharts.org/charts/system/metallb) + +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** + +## Installation + +### Helm-Chart installation + +To install TrueCharts Helm charts using Helm, you can use our OCI Repository. + +`helm install mychart oci://tccr.io/truecharts/CHARTNAME` + +For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides) + + +### TrueNAS SCALE Apps + +For more information on how to use TrueCharts as TrueNAS SCALE Apps, please checkout the [quick-start guides for TrueNAS SCALE](/deprecated/scale). + +## Chart Specific Guides and information + +All our charts have dedicated documentation pages. +The documentation for this chart can be found here: +https://truecharts.org/charts/system/metallb + +## Configuration Options + +Please note: For TrueNAS SCALE, only options available in the GUI are supported. +Hence most of these docs do not apply to TrueNAS SCALE + +To view the chart specific options, please view Values.yaml included in the chart. +The most recent version of which, is available here: https://github.com/truecharts/charts/charts/system/metallb/values.yaml + +All our Charts use a shared "common" library chart that contains most of the templating and options. +For the complete overview of all available options, please checkout the documentation for them on the [common docs on our website](/common) + +For information about the common chart and all defaults included with it, please review its values.yaml file available here: https://github.com/truecharts/library-charts/blob/main/library/common/values.yaml + +## Support + +- See the [Website](https://truecharts.org) +- Check our [Discord](https://discord.gg/tVsPTHWTtr) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) + +--- + +## Sponsor TrueCharts + +TrueCharts can only exist due to the incredible effort of our staff. +Please consider making a [donation](/general/sponsor) or contributing back to the project any way you can! + +_All Rights Reserved - The TrueCharts Project_ diff --git a/charts/system/kubelet-csr-approver/icon-small.webp b/charts/system/kubelet-csr-approver/icon-small.webp new file mode 100644 index 0000000000000000000000000000000000000000..6380d00e9d62fa760f6263e0e3135095caa3f00f GIT binary patch literal 556 zcmV+{0@M9cNk&E_0ssJ4MM6+kP&il$0000G0000V0018V06|PpNY?=X00EGzZQI&5 zZDKT6%2ho;8+ zH*pM-LsZ-ksm)DSLQ~RFQYkcO@)cfAIL(rM6fTuCJBe~s^OZTtGtFkKRCy^`Oi9&} zysYThlF`I@4Zdc>sJ=V@QSg00v!OZV1nJ+o>8WAMQ{wVQovxCTjn5U{H_IEzyzC&! z=m@Z~NRsPCUN*|SM#vAln*gA7>bUUhiitYx-*h=qs`#b&W$m~E09H^q uASM6+0MG&eodGH!03ZN9eJ+wmq@tmrH|PM64~c020ImZN0RH*{fB*oY@B|b9 literal 0 HcmV?d00001 diff --git a/charts/system/kubelet-csr-approver/icon.webp b/charts/system/kubelet-csr-approver/icon.webp new file mode 100644 index 0000000000000000000000000000000000000000..c876cb18cc1e1fee16a5b3bdc3384304d96955b6 GIT binary patch literal 3732 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 literal 0 HcmV?d00001 diff --git a/charts/system/kubelet-csr-approver/templates/NOTES.txt b/charts/system/kubelet-csr-approver/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/system/kubelet-csr-approver/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/system/kubelet-csr-approver/templates/common.yaml b/charts/system/kubelet-csr-approver/templates/common.yaml new file mode 100644 index 00000000000..995efb03eb0 --- /dev/null +++ b/charts/system/kubelet-csr-approver/templates/common.yaml @@ -0,0 +1,5 @@ +{{/* Make sure all variables are set properly */}} +{{- include "tc.v1.common.loader.init" . }} + +{{/* Render the templates */}} +{{ include "tc.v1.common.loader.apply" . }} diff --git a/charts/system/kubelet-csr-approver/values.yaml b/charts/system/kubelet-csr-approver/values.yaml new file mode 100644 index 00000000000..8ffafd21a48 --- /dev/null +++ b/charts/system/kubelet-csr-approver/values.yaml @@ -0,0 +1,25 @@ +image: + repository: tccr.io/tccr/alpine + pullPolicy: IfNotPresent + tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558 + +service: + main: + enabled: false + ports: + main: + enabled: false + +workload: + main: + enabled: false + +portal: + open: + enabled: false + +operator: + register: true + +manifestManager: + enabled: false diff --git a/charts/system/metrics-server/.helmignore b/charts/system/metrics-server/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/system/metrics-server/.helmignore @@ -0,0 +1,32 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png +icon.webp +icon-small.webp diff --git a/charts/system/metrics-server/Chart.yaml b/charts/system/metrics-server/Chart.yaml new file mode 100644 index 00000000000..d02bf5e5c31 --- /dev/null +++ b/charts/system/metrics-server/Chart.yaml @@ -0,0 +1,44 @@ +annotations: + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.15" + truecharts.org/min_helm_version: "3.11" + truecharts.org/train: system +apiVersion: v2 +appVersion: latest +dependencies: + - name: common + version: 24.0.0 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: metrics-server + version: 3.12.1 + repository: https://kubernetes-sigs.github.io/metrics-server + condition: "" + alias: metrics-server + tags: [] + import-values: [] +deprecated: false +description: Enable Internal kubernetes metrics +home: https://truecharts.org/charts/system/metrics-server +icon: https://truecharts.org/img/hotlink-ok/chart-icons/metrics-server.webp +keywords: + - metrics-server + - loadbalancer +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: metrics-server +sources: + - https://github.com/metrics-server/metrics-server + - https://github.com/truecharts/charts/tree/master/charts/system/metrics-server + - https://github.com/truecharts/containers/tree/master/apps/alpine + - https://metrics-server.universe.tf +type: application +version: 16.1.0 diff --git a/charts/system/metrics-server/README.md b/charts/system/metrics-server/README.md new file mode 100644 index 00000000000..16b145f0a32 --- /dev/null +++ b/charts/system/metrics-server/README.md @@ -0,0 +1,61 @@ +--- +title: README +--- + +## General Info + +TrueCharts can be installed as both _normal_ Helm Charts or as TrueNAS SCALE Apps. +Both solutions are fully supported, but we heavily advice the use of normal Helm Charts where possible + +For more information about this Chart, please check the docs on the TrueCharts [website](https://truecharts.org/charts/system/metallb) + +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** + +## Installation + +### Helm-Chart installation + +To install TrueCharts Helm charts using Helm, you can use our OCI Repository. + +`helm install mychart oci://tccr.io/truecharts/CHARTNAME` + +For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides) + + +### TrueNAS SCALE Apps + +For more information on how to use TrueCharts as TrueNAS SCALE Apps, please checkout the [quick-start guides for TrueNAS SCALE](/deprecated/scale). + +## Chart Specific Guides and information + +All our charts have dedicated documentation pages. +The documentation for this chart can be found here: +https://truecharts.org/charts/system/metallb + +## Configuration Options + +Please note: For TrueNAS SCALE, only options available in the GUI are supported. +Hence most of these docs do not apply to TrueNAS SCALE + +To view the chart specific options, please view Values.yaml included in the chart. +The most recent version of which, is available here: https://github.com/truecharts/charts/charts/system/metallb/values.yaml + +All our Charts use a shared "common" library chart that contains most of the templating and options. +For the complete overview of all available options, please checkout the documentation for them on the [common docs on our website](/common) + +For information about the common chart and all defaults included with it, please review its values.yaml file available here: https://github.com/truecharts/library-charts/blob/main/library/common/values.yaml + +## Support + +- See the [Website](https://truecharts.org) +- Check our [Discord](https://discord.gg/tVsPTHWTtr) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) + +--- + +## Sponsor TrueCharts + +TrueCharts can only exist due to the incredible effort of our staff. +Please consider making a [donation](/general/sponsor) or contributing back to the project any way you can! + +_All Rights Reserved - The TrueCharts Project_ diff --git a/charts/system/metrics-server/icon-small.webp b/charts/system/metrics-server/icon-small.webp new file mode 100644 index 0000000000000000000000000000000000000000..6380d00e9d62fa760f6263e0e3135095caa3f00f GIT binary patch literal 556 zcmV+{0@M9cNk&E_0ssJ4MM6+kP&il$0000G0000V0018V06|PpNY?=X00EGzZQI&5 zZDKT6%2ho;8+ zH*pM-LsZ-ksm)DSLQ~RFQYkcO@)cfAIL(rM6fTuCJBe~s^OZTtGtFkKRCy^`Oi9&} zysYThlF`I@4Zdc>sJ=V@QSg00v!OZV1nJ+o>8WAMQ{wVQovxCTjn5U{H_IEzyzC&! z=m@Z~NRsPCUN*|SM#vAln*gA7>bUUhiitYx-*h=qs`#b&W$m~E09H^q uASM6+0MG&eodGH!03ZN9eJ+wmq@tmrH|PM64~c020ImZN0RH*{fB*oY@B|b9 literal 0 HcmV?d00001 diff --git a/charts/system/metrics-server/icon.webp b/charts/system/metrics-server/icon.webp new file mode 100644 index 0000000000000000000000000000000000000000..c876cb18cc1e1fee16a5b3bdc3384304d96955b6 GIT binary patch literal 3732 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 literal 0 HcmV?d00001 diff --git a/charts/system/metrics-server/templates/NOTES.txt b/charts/system/metrics-server/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/system/metrics-server/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/system/metrics-server/templates/common.yaml b/charts/system/metrics-server/templates/common.yaml new file mode 100644 index 00000000000..995efb03eb0 --- /dev/null +++ b/charts/system/metrics-server/templates/common.yaml @@ -0,0 +1,5 @@ +{{/* Make sure all variables are set properly */}} +{{- include "tc.v1.common.loader.init" . }} + +{{/* Render the templates */}} +{{ include "tc.v1.common.loader.apply" . }} diff --git a/charts/system/metrics-server/values.yaml b/charts/system/metrics-server/values.yaml new file mode 100644 index 00000000000..8ffafd21a48 --- /dev/null +++ b/charts/system/metrics-server/values.yaml @@ -0,0 +1,25 @@ +image: + repository: tccr.io/tccr/alpine + pullPolicy: IfNotPresent + tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558 + +service: + main: + enabled: false + ports: + main: + enabled: false + +workload: + main: + enabled: false + +portal: + open: + enabled: false + +operator: + register: true + +manifestManager: + enabled: false diff --git a/charts/system/nvidia-gpu-operator/.helmignore b/charts/system/nvidia-gpu-operator/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/system/nvidia-gpu-operator/.helmignore @@ -0,0 +1,32 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png +icon.webp +icon-small.webp diff --git a/charts/system/nvidia-gpu-operator/Chart.yaml b/charts/system/nvidia-gpu-operator/Chart.yaml new file mode 100644 index 00000000000..2ba4b090b8c --- /dev/null +++ b/charts/system/nvidia-gpu-operator/Chart.yaml @@ -0,0 +1,44 @@ +annotations: + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.15" + truecharts.org/min_helm_version: "3.11" + truecharts.org/train: system +apiVersion: v2 +appVersion: latest +dependencies: + - name: common + version: 24.0.0 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: gpu-operator + version: v24.3.0 + repository: https://helm.ngc.nvidia.com/nvidia + condition: "" + alias: gpu-operator + tags: [] + import-values: [] +deprecated: false +description: Nvidia GPU usage operator +home: https://truecharts.org/charts/system/nvidia-gpu-operator +icon: https://truecharts.org/img/hotlink-ok/chart-icons/nvidia-gpu-operator.webp +keywords: + - nvidia-gpu-operator + - loadbalancer +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: nvidia-gpu-operator +sources: + - https://github.com/nvidia-gpu-operator/nvidia-gpu-operator + - https://github.com/truecharts/charts/tree/master/charts/system/nvidia-gpu-operator + - https://github.com/truecharts/containers/tree/master/apps/alpine + - https://nvidia-gpu-operator.universe.tf +type: application +version: 16.1.0 diff --git a/charts/system/nvidia-gpu-operator/README.md b/charts/system/nvidia-gpu-operator/README.md new file mode 100644 index 00000000000..16b145f0a32 --- /dev/null +++ b/charts/system/nvidia-gpu-operator/README.md @@ -0,0 +1,61 @@ +--- +title: README +--- + +## General Info + +TrueCharts can be installed as both _normal_ Helm Charts or as TrueNAS SCALE Apps. +Both solutions are fully supported, but we heavily advice the use of normal Helm Charts where possible + +For more information about this Chart, please check the docs on the TrueCharts [website](https://truecharts.org/charts/system/metallb) + +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** + +## Installation + +### Helm-Chart installation + +To install TrueCharts Helm charts using Helm, you can use our OCI Repository. + +`helm install mychart oci://tccr.io/truecharts/CHARTNAME` + +For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides) + + +### TrueNAS SCALE Apps + +For more information on how to use TrueCharts as TrueNAS SCALE Apps, please checkout the [quick-start guides for TrueNAS SCALE](/deprecated/scale). + +## Chart Specific Guides and information + +All our charts have dedicated documentation pages. +The documentation for this chart can be found here: +https://truecharts.org/charts/system/metallb + +## Configuration Options + +Please note: For TrueNAS SCALE, only options available in the GUI are supported. +Hence most of these docs do not apply to TrueNAS SCALE + +To view the chart specific options, please view Values.yaml included in the chart. +The most recent version of which, is available here: https://github.com/truecharts/charts/charts/system/metallb/values.yaml + +All our Charts use a shared "common" library chart that contains most of the templating and options. +For the complete overview of all available options, please checkout the documentation for them on the [common docs on our website](/common) + +For information about the common chart and all defaults included with it, please review its values.yaml file available here: https://github.com/truecharts/library-charts/blob/main/library/common/values.yaml + +## Support + +- See the [Website](https://truecharts.org) +- Check our [Discord](https://discord.gg/tVsPTHWTtr) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) + +--- + +## Sponsor TrueCharts + +TrueCharts can only exist due to the incredible effort of our staff. +Please consider making a [donation](/general/sponsor) or contributing back to the project any way you can! + +_All Rights Reserved - The TrueCharts Project_ diff --git a/charts/system/nvidia-gpu-operator/icon-small.webp b/charts/system/nvidia-gpu-operator/icon-small.webp new file mode 100644 index 0000000000000000000000000000000000000000..6380d00e9d62fa760f6263e0e3135095caa3f00f GIT binary patch literal 556 zcmV+{0@M9cNk&E_0ssJ4MM6+kP&il$0000G0000V0018V06|PpNY?=X00EGzZQI&5 zZDKT6%2ho;8+ zH*pM-LsZ-ksm)DSLQ~RFQYkcO@)cfAIL(rM6fTuCJBe~s^OZTtGtFkKRCy^`Oi9&} zysYThlF`I@4Zdc>sJ=V@QSg00v!OZV1nJ+o>8WAMQ{wVQovxCTjn5U{H_IEzyzC&! z=m@Z~NRsPCUN*|SM#vAln*gA7>bUUhiitYx-*h=qs`#b&W$m~E09H^q uASM6+0MG&eodGH!03ZN9eJ+wmq@tmrH|PM64~c020ImZN0RH*{fB*oY@B|b9 literal 0 HcmV?d00001 diff --git a/charts/system/nvidia-gpu-operator/icon.webp b/charts/system/nvidia-gpu-operator/icon.webp new file mode 100644 index 0000000000000000000000000000000000000000..c876cb18cc1e1fee16a5b3bdc3384304d96955b6 GIT binary patch literal 3732 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 literal 0 HcmV?d00001 diff --git a/charts/system/nvidia-gpu-operator/templates/NOTES.txt b/charts/system/nvidia-gpu-operator/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/system/nvidia-gpu-operator/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/system/nvidia-gpu-operator/templates/common.yaml b/charts/system/nvidia-gpu-operator/templates/common.yaml new file mode 100644 index 00000000000..995efb03eb0 --- /dev/null +++ b/charts/system/nvidia-gpu-operator/templates/common.yaml @@ -0,0 +1,5 @@ +{{/* Make sure all variables are set properly */}} +{{- include "tc.v1.common.loader.init" . }} + +{{/* Render the templates */}} +{{ include "tc.v1.common.loader.apply" . }} diff --git a/charts/system/nvidia-gpu-operator/values.yaml b/charts/system/nvidia-gpu-operator/values.yaml new file mode 100644 index 00000000000..8ffafd21a48 --- /dev/null +++ b/charts/system/nvidia-gpu-operator/values.yaml @@ -0,0 +1,25 @@ +image: + repository: tccr.io/tccr/alpine + pullPolicy: IfNotPresent + tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558 + +service: + main: + enabled: false + ports: + main: + enabled: false + +workload: + main: + enabled: false + +portal: + open: + enabled: false + +operator: + register: true + +manifestManager: + enabled: false diff --git a/charts/system/spegel/.helmignore b/charts/system/spegel/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/system/spegel/.helmignore @@ -0,0 +1,32 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl +# docs folder +/docs +# icon +icon.png +icon.webp +icon-small.webp diff --git a/charts/system/spegel/Chart.yaml b/charts/system/spegel/Chart.yaml new file mode 100644 index 00000000000..447baff04f5 --- /dev/null +++ b/charts/system/spegel/Chart.yaml @@ -0,0 +1,44 @@ +annotations: + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: operators + truecharts.org/max_helm_version: "3.15" + truecharts.org/min_helm_version: "3.11" + truecharts.org/train: system +apiVersion: v2 +appVersion: latest +dependencies: + - name: common + version: 24.0.0 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] + - name: spegel + version: v0.0.23 + repository: oci://ghcr.io/spegel-org/helm-charts + condition: "" + alias: spegel + tags: [] + import-values: [] +deprecated: false +description: A distributed image store +home: https://truecharts.org/charts/system/spegel +icon: https://truecharts.org/img/hotlink-ok/chart-icons/spegel.webp +keywords: + - spegel + - loadbalancer +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: spegel +sources: + - https://github.com/spegel/spegel + - https://github.com/truecharts/charts/tree/master/charts/system/spegel + - https://github.com/truecharts/containers/tree/master/apps/alpine + - https://spegel.universe.tf +type: application +version: 16.1.0 diff --git a/charts/system/spegel/README.md b/charts/system/spegel/README.md new file mode 100644 index 00000000000..16b145f0a32 --- /dev/null +++ b/charts/system/spegel/README.md @@ -0,0 +1,61 @@ +--- +title: README +--- + +## General Info + +TrueCharts can be installed as both _normal_ Helm Charts or as TrueNAS SCALE Apps. +Both solutions are fully supported, but we heavily advice the use of normal Helm Charts where possible + +For more information about this Chart, please check the docs on the TrueCharts [website](https://truecharts.org/charts/system/metallb) + +**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)** + +## Installation + +### Helm-Chart installation + +To install TrueCharts Helm charts using Helm, you can use our OCI Repository. + +`helm install mychart oci://tccr.io/truecharts/CHARTNAME` + +For more information on how to install TrueCharts Helm charts, checkout the [instructions on the website](/guides) + + +### TrueNAS SCALE Apps + +For more information on how to use TrueCharts as TrueNAS SCALE Apps, please checkout the [quick-start guides for TrueNAS SCALE](/deprecated/scale). + +## Chart Specific Guides and information + +All our charts have dedicated documentation pages. +The documentation for this chart can be found here: +https://truecharts.org/charts/system/metallb + +## Configuration Options + +Please note: For TrueNAS SCALE, only options available in the GUI are supported. +Hence most of these docs do not apply to TrueNAS SCALE + +To view the chart specific options, please view Values.yaml included in the chart. +The most recent version of which, is available here: https://github.com/truecharts/charts/charts/system/metallb/values.yaml + +All our Charts use a shared "common" library chart that contains most of the templating and options. +For the complete overview of all available options, please checkout the documentation for them on the [common docs on our website](/common) + +For information about the common chart and all defaults included with it, please review its values.yaml file available here: https://github.com/truecharts/library-charts/blob/main/library/common/values.yaml + +## Support + +- See the [Website](https://truecharts.org) +- Check our [Discord](https://discord.gg/tVsPTHWTtr) +- Open a [issue](https://github.com/truecharts/charts/issues/new/choose) + +--- + +## Sponsor TrueCharts + +TrueCharts can only exist due to the incredible effort of our staff. +Please consider making a [donation](/general/sponsor) or contributing back to the project any way you can! + +_All Rights Reserved - The TrueCharts Project_ diff --git a/charts/system/spegel/icon-small.webp b/charts/system/spegel/icon-small.webp new file mode 100644 index 0000000000000000000000000000000000000000..6380d00e9d62fa760f6263e0e3135095caa3f00f GIT binary patch literal 556 zcmV+{0@M9cNk&E_0ssJ4MM6+kP&il$0000G0000V0018V06|PpNY?=X00EGzZQI&5 zZDKT6%2ho;8+ zH*pM-LsZ-ksm)DSLQ~RFQYkcO@)cfAIL(rM6fTuCJBe~s^OZTtGtFkKRCy^`Oi9&} zysYThlF`I@4Zdc>sJ=V@QSg00v!OZV1nJ+o>8WAMQ{wVQovxCTjn5U{H_IEzyzC&! z=m@Z~NRsPCUN*|SM#vAln*gA7>bUUhiitYx-*h=qs`#b&W$m~E09H^q uASM6+0MG&eodGH!03ZN9eJ+wmq@tmrH|PM64~c020ImZN0RH*{fB*oY@B|b9 literal 0 HcmV?d00001 diff --git a/charts/system/spegel/icon.webp b/charts/system/spegel/icon.webp new file mode 100644 index 0000000000000000000000000000000000000000..c876cb18cc1e1fee16a5b3bdc3384304d96955b6 GIT binary patch literal 3732 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 literal 0 HcmV?d00001 diff --git a/charts/system/spegel/templates/NOTES.txt b/charts/system/spegel/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/system/spegel/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/system/spegel/templates/common.yaml b/charts/system/spegel/templates/common.yaml new file mode 100644 index 00000000000..995efb03eb0 --- /dev/null +++ b/charts/system/spegel/templates/common.yaml @@ -0,0 +1,5 @@ +{{/* Make sure all variables are set properly */}} +{{- include "tc.v1.common.loader.init" . }} + +{{/* Render the templates */}} +{{ include "tc.v1.common.loader.apply" . }} diff --git a/charts/system/spegel/values.yaml b/charts/system/spegel/values.yaml new file mode 100644 index 00000000000..8ffafd21a48 --- /dev/null +++ b/charts/system/spegel/values.yaml @@ -0,0 +1,25 @@ +image: + repository: tccr.io/tccr/alpine + pullPolicy: IfNotPresent + tag: latest@sha256:ade0065e19edaa4f6903d464ee70605111a48394536deb94f31b661264704558 + +service: + main: + enabled: false + ports: + main: + enabled: false + +workload: + main: + enabled: false + +portal: + open: + enabled: false + +operator: + register: true + +manifestManager: + enabled: false