diff --git a/charts/incubator/glances/.helmignore b/charts/incubator/glances/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/incubator/glances/.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/incubator/glances/Chart.yaml b/charts/incubator/glances/Chart.yaml new file mode 100644 index 00000000000..32bbb930bad --- /dev/null +++ b/charts/incubator/glances/Chart.yaml @@ -0,0 +1,34 @@ +annotations: + truecharts.org/category: metrics + truecharts.org/max_helm_version: "3.15" + truecharts.org/min_helm_version: "3.11" + truecharts.org/train: incubator +apiVersion: v2 +appVersion: 4.3.0 +dependencies: + - name: common + version: 25.4.10 + repository: oci://tccr.io/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] +deprecated: false +description: Glances is a monitoring software +home: https://truecharts.org/charts/incubator/glances +icon: https://truecharts.org/img/hotlink-ok/chart-icons/glances.webp +keywords: + - metrics + - glances +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: glances +sources: + - https://github.com/nicolargo/glances + - https://github.com/truecharts/charts/tree/master/charts/incubator/glances + - https://hub.docker.com/r/nicolargo/glances +type: application +version: 0.0.1 diff --git a/charts/incubator/glances/README.md b/charts/incubator/glances/README.md new file mode 100644 index 00000000000..2b8cc49d247 --- /dev/null +++ b/charts/incubator/glances/README.md @@ -0,0 +1,3 @@ +--- +title: README +--- diff --git a/charts/incubator/glances/icon.png b/charts/incubator/glances/icon.png new file mode 100644 index 00000000000..f1e5982718c Binary files /dev/null and b/charts/incubator/glances/icon.png differ diff --git a/charts/incubator/glances/templates/NOTES.txt b/charts/incubator/glances/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/incubator/glances/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/incubator/glances/templates/common.yaml b/charts/incubator/glances/templates/common.yaml new file mode 100644 index 00000000000..b51394e00a4 --- /dev/null +++ b/charts/incubator/glances/templates/common.yaml @@ -0,0 +1 @@ +{{ include "tc.v1.common.loader.all" . }} diff --git a/charts/incubator/glances/values.yaml b/charts/incubator/glances/values.yaml new file mode 100644 index 00000000000..f7f5c9ed24a --- /dev/null +++ b/charts/incubator/glances/values.yaml @@ -0,0 +1,25 @@ +image: + repository: nicolargo/glances + pullPolicy: IfNotPresent + tag: ubuntu-4.3.0.8-full +workload: + main: + podSpec: + # Needed for Running Tasks + # hostPID: true + # Needed for Host Network Stats + # hostNetwork: true + containers: + main: + env: + GLANCES_OPT: "-w -p {{ .Values.service.main.ports.main.port }}" +service: + main: + ports: + main: + port: 61208 +securityContext: + container: + PUID: 1000 + runAsGroup: 1000 + runAsUser: 1000