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 00000000000..6380d00e9d6 Binary files /dev/null and b/charts/premium/kubernetes-dashboard/icon-small.webp differ diff --git a/charts/premium/kubernetes-dashboard/icon.webp b/charts/premium/kubernetes-dashboard/icon.webp new file mode 100644 index 00000000000..c876cb18cc1 Binary files /dev/null and b/charts/premium/kubernetes-dashboard/icon.webp differ 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 00000000000..6380d00e9d6 Binary files /dev/null and b/charts/system/intel-device-plugins-operator/icon-small.webp differ 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 00000000000..c876cb18cc1 Binary files /dev/null and b/charts/system/intel-device-plugins-operator/icon.webp differ 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 00000000000..6380d00e9d6 Binary files /dev/null and b/charts/system/kubelet-csr-approver/icon-small.webp differ diff --git a/charts/system/kubelet-csr-approver/icon.webp b/charts/system/kubelet-csr-approver/icon.webp new file mode 100644 index 00000000000..c876cb18cc1 Binary files /dev/null and b/charts/system/kubelet-csr-approver/icon.webp differ 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 00000000000..6380d00e9d6 Binary files /dev/null and b/charts/system/metrics-server/icon-small.webp differ diff --git a/charts/system/metrics-server/icon.webp b/charts/system/metrics-server/icon.webp new file mode 100644 index 00000000000..c876cb18cc1 Binary files /dev/null and b/charts/system/metrics-server/icon.webp differ 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 00000000000..6380d00e9d6 Binary files /dev/null and b/charts/system/nvidia-gpu-operator/icon-small.webp differ diff --git a/charts/system/nvidia-gpu-operator/icon.webp b/charts/system/nvidia-gpu-operator/icon.webp new file mode 100644 index 00000000000..c876cb18cc1 Binary files /dev/null and b/charts/system/nvidia-gpu-operator/icon.webp differ 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 00000000000..6380d00e9d6 Binary files /dev/null and b/charts/system/spegel/icon-small.webp differ diff --git a/charts/system/spegel/icon.webp b/charts/system/spegel/icon.webp new file mode 100644 index 00000000000..c876cb18cc1 Binary files /dev/null and b/charts/system/spegel/icon.webp differ 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