diff --git a/charts/incubator/borg-server/.helmignore b/charts/incubator/borg-server/.helmignore new file mode 100644 index 00000000000..77ca5567b26 --- /dev/null +++ b/charts/incubator/borg-server/.helmignore @@ -0,0 +1,30 @@ +# 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 diff --git a/charts/incubator/borg-server/CHANGELOG.md b/charts/incubator/borg-server/CHANGELOG.md new file mode 100644 index 00000000000..825c32f0d03 --- /dev/null +++ b/charts/incubator/borg-server/CHANGELOG.md @@ -0,0 +1 @@ +# Changelog diff --git a/charts/incubator/borg-server/Chart.yaml b/charts/incubator/borg-server/Chart.yaml new file mode 100644 index 00000000000..29af72066ea --- /dev/null +++ b/charts/incubator/borg-server/Chart.yaml @@ -0,0 +1,27 @@ +apiVersion: v2 +appVersion: "2.1.1" +dependencies: + - name: common + repository: https://library-charts.truecharts.org + version: 14.3.5 +deprecated: false +description: A borg Backup server +home: https://truecharts.org/charts/incubator/borg-server +icon: https://truecharts.org/img/hotlink-ok/chart-icons/borg-server.png +keywords: + - borg-server + - backup +kubeVersion: ">=1.16.0-0" +maintainers: + - email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: borg-server +sources: + - https://github.com/truecharts/charts/tree/master/charts/incubator/borg-server + - https://github.com/AnotherStranger/docker-borg-backup +type: application +version: 0.0.1 +annotations: + truecharts.org/category: backup + truecharts.org/SCALE-support: "true" diff --git a/charts/incubator/borg-server/README.md b/charts/incubator/borg-server/README.md new file mode 100644 index 00000000000..7e59600739c --- /dev/null +++ b/charts/incubator/borg-server/README.md @@ -0,0 +1 @@ +# README diff --git a/charts/incubator/borg-server/icon.png b/charts/incubator/borg-server/icon.png new file mode 100644 index 00000000000..71171820cdd Binary files /dev/null and b/charts/incubator/borg-server/icon.png differ diff --git a/charts/incubator/borg-server/questions.yaml b/charts/incubator/borg-server/questions.yaml new file mode 100644 index 00000000000..465b578dba6 --- /dev/null +++ b/charts/incubator/borg-server/questions.yaml @@ -0,0 +1,94 @@ +# Include{groups} +portals: {} +questions: +# Include{global} +# Include{workload} +# Include{workloadDeployment} + +# Include{replicas1} +# Include{podSpec} +# Include{containerMain} + + +# Include{containerBasic} +# Include{containerAdvanced} + +# Include{containerConfig} +# Include{podOptions} +# Include{serviceRoot} +# Include{serviceMain} +# Include{serviceSelectorLoadBalancer} +# Include{serviceSelectorExtras} + - variable: main + label: "Main Service Port Configuration" + schema: + additional_attrs: true + type: dict + attrs: + - variable: port + label: "Port" + description: "This port exposes the container port on the service" + schema: + type: int + default: 8022 + required: true +# Include{serviceExpertRoot} +# Include{serviceExpert} +# Include{serviceList} +# Include{persistenceRoot} + - variable: borg + label: "App Borg Storage" + description: "Stores the Application Borg." + schema: + additional_attrs: true + type: dict + attrs: +# Include{persistenceBasic} + - variable: backups + label: "App Backups Storage" + description: "Stores the Application Backups." + schema: + additional_attrs: true + type: dict + attrs: +# Include{persistenceBasic} + - variable: ssh + label: "App SSH Storage" + description: "Stores the Application SSH." + schema: + additional_attrs: true + type: dict + attrs: +# Include{persistenceBasic} +# Include{persistenceList} +# Include{securityContextRoot} + + - variable: runAsUser + label: "runAsUser" + description: "The UserID of the user running the application" + schema: + type: int + default: 0 + - variable: runAsGroup + label: "runAsGroup" + description: "The groupID of the user running the application" + schema: + type: int + default: 0 +# Include{securityContextContainer} +# Include{securityContextAdvanced} +# Include{securityContextPod} + - variable: fsGroup + label: "fsGroup" + description: "The group that should own ALL storage." + schema: + type: int + default: 568 + +# Include{resources} +# Include{advanced} +# Include{addons} +# Include{codeserver} +# Include{netshoot} +# Include{vpn} +# Include{documentation} diff --git a/charts/incubator/borg-server/templates/NOTES.txt b/charts/incubator/borg-server/templates/NOTES.txt new file mode 100644 index 00000000000..efcb74cb772 --- /dev/null +++ b/charts/incubator/borg-server/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "tc.v1.common.lib.chart.notes" $ -}} diff --git a/charts/incubator/borg-server/templates/common.yaml b/charts/incubator/borg-server/templates/common.yaml new file mode 100644 index 00000000000..b51394e00a4 --- /dev/null +++ b/charts/incubator/borg-server/templates/common.yaml @@ -0,0 +1 @@ +{{ include "tc.v1.common.loader.all" . }} diff --git a/charts/incubator/borg-server/values.yaml b/charts/incubator/borg-server/values.yaml new file mode 100644 index 00000000000..a958423de9c --- /dev/null +++ b/charts/incubator/borg-server/values.yaml @@ -0,0 +1,43 @@ +image: + repository: ghcr.io/anotherstranger/borg-server + pullPolicy: IfNotPresent + tag: 2.1.1@sha256:768c3522f846d8e8476a1f6527b5c0ff8c021dc31b7988876d34228ebdc7976e + +securityContext: + container: + readOnlyRootFilesystem: false + runAsUser: 0 + runAsGroup: 0 + +service: + main: + ports: + main: + protocol: tcp + targetPort: 22 + port: 8022 + +workload: + main: + podSpec: + containers: + main: + env: + BORG_UID: "{{ .Values.securityContext.container.PUID }}" + BORG_GID: "{{ .Values.securityContext.pod.fsGroup }}" + + +persistence: + borg: + enabled: true + mountPath: "/var/lib/docker-borg" + backups: + enabled: true + mountPath: "/home/borg/backups" + ssh: + enabled: true + mountPath: "/home/borg/.ssh" + +portal: + open: + enabled: false