diff --git a/charts/incubator/backrest/.helmignore b/charts/incubator/backrest/.helmignore new file mode 100644 index 00000000000..feb7464da6f --- /dev/null +++ b/charts/incubator/backrest/.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/backrest/CHANGELOG.md b/charts/incubator/backrest/CHANGELOG.md new file mode 100644 index 00000000000..f3e8318aa10 --- /dev/null +++ b/charts/incubator/backrest/CHANGELOG.md @@ -0,0 +1,4 @@ +--- +title: Changelog +pagefind: false +--- diff --git a/charts/incubator/backrest/Chart.yaml b/charts/incubator/backrest/Chart.yaml new file mode 100644 index 00000000000..3e32a2b6a9a --- /dev/null +++ b/charts/incubator/backrest/Chart.yaml @@ -0,0 +1,41 @@ +annotations: + artifacthub.io/links: |- + - name: support + url: https://discord.com/invite/tVsPTHWTtr + max_scale_version: 24.04.1 + min_scale_version: 24.04.0 + truecharts.org/category: backup + truecharts.org/max_helm_version: "3.17" + truecharts.org/max_kubernetes_version: 1.32.0 + truecharts.org/min_helm_version: "3.14" + truecharts.org/min_kubernetes_version: 1.24.0 + truecharts.org/train: incubator +apiVersion: v2 +appVersion: 1.10.1 +dependencies: + - name: common + version: 28.29.17 + repository: oci://oci.trueforge.org/truecharts + condition: "" + alias: "" + tags: [] + import-values: [] +deprecated: false +description: Web-accessible backup solution built on top of restic. +home: https://truecharts.org/charts/incubator/backrest +icon: https://truecharts.org/img/hotlink-ok/chart-icons/backrest.webp +keywords: + - backrest + - backup + - restic +kubeVersion: '>=1.24.0-0' +maintainers: + - name: TrueCharts + email: info@truecharts.org + url: https://truecharts.org +name: backrest +sources: + - https://github.com/garethgeorge/backrest + - https://hub.docker.com/r/garethgeorge/backrest +type: application +version: 0.1.1 diff --git a/charts/incubator/backrest/README.md b/charts/incubator/backrest/README.md new file mode 100644 index 00000000000..2b8cc49d247 --- /dev/null +++ b/charts/incubator/backrest/README.md @@ -0,0 +1,3 @@ +--- +title: README +--- diff --git a/charts/incubator/backrest/icon-small.webp b/charts/incubator/backrest/icon-small.webp new file mode 100644 index 00000000000..6498d35cdf4 Binary files /dev/null and b/charts/incubator/backrest/icon-small.webp differ diff --git a/charts/incubator/backrest/icon.webp b/charts/incubator/backrest/icon.webp new file mode 100644 index 00000000000..bbe675f58b7 Binary files /dev/null and b/charts/incubator/backrest/icon.webp differ diff --git a/charts/incubator/backrest/templates/common.yaml b/charts/incubator/backrest/templates/common.yaml new file mode 100644 index 00000000000..b51394e00a4 --- /dev/null +++ b/charts/incubator/backrest/templates/common.yaml @@ -0,0 +1 @@ +{{ include "tc.v1.common.loader.all" . }} diff --git a/charts/incubator/backrest/values.yaml b/charts/incubator/backrest/values.yaml new file mode 100644 index 00000000000..4185ef72e96 --- /dev/null +++ b/charts/incubator/backrest/values.yaml @@ -0,0 +1,41 @@ +image: + repository: docker.io/garethgeorge/backrest + tag: v1.10.1 + pullPolicy: IfNotPresent + +service: + main: + ports: + main: + port: 9898 + +workload: + main: + podSpec: + containers: + main: + env: + BACKREST_PORT: "0.0.0.0:{{ .Values.service.main.ports.main.port }}" + BACKREST_DATA: /data + BACKREST_CONFIG: /config/config.json + XDG_CACHE_HOME: /cache + TMPDIR: /tmp + +persistence: + data: + enabled: true + mountPath: /data + config: + enabled: true + mountPath: /config + cache: + enabled: true + mountPath: /cache + tmp: + enabled: true + type: emptyDir + mountPath: /tmp + userdata: + enabled: false + mountPath: /userdata + readOnly: true