-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add syncthing * Add chart description
- Loading branch information
Showing
5 changed files
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 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 | ||
|
||
# Manually added entries | ||
ci/ | ||
examples/ | ||
Makefile | ||
README.md.gotmpl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
dependencies: | ||
- name: librepod | ||
repository: https://librepod.github.io/charts | ||
version: 1.2.0 | ||
digest: sha256:1dcc99dc6525e660fe55ac3e87b1b36a4ca644b7728156d92f73371335e49290 | ||
generated: "2023-03-14T21:25:34.196299846+03:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apiVersion: v2 | ||
name: syncthing | ||
description: | | ||
Syncthing is a continuous file synchronization program. | ||
It synchronizes files between two or more computers in real time, safely protected from prying eyes. | ||
version: 0.1.0 | ||
appVersion: "1.23" | ||
kubeVersion: ">=1.16.0-0" | ||
type: application | ||
keywords: | ||
- sync | ||
- filesync | ||
- syncthing | ||
home: https://github.com/librepod/charts/tree/master/charts/syncthing | ||
sources: | ||
- https://github.com/librepod/charts/tree/master/charts/syncthing | ||
- https://github.com/syncthing/syncthing | ||
- https://github.com/syncthing/syncthing/blob/main/README-Docker.md | ||
icon: https://cdn.jsdelivr.net/gh/walkxcode/dashboard-icons/png/syncthing.png | ||
dependencies: | ||
- name: librepod | ||
version: 1.2.0 | ||
repository: https://librepod.github.io/charts | ||
annotations: | ||
category: My Apps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{{- include "librepod.all" . -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
image: | ||
repository: syncthing/syncthing | ||
pullPolicy: IfNotPresent | ||
tag: "" | ||
|
||
service: | ||
main: | ||
enabled: true | ||
ports: | ||
http: | ||
port: 8384 | ||
listen: | ||
enabled: true | ||
ports: | ||
listen: | ||
enabled: true | ||
port: 22000 | ||
protocol: TCP | ||
listen-udp: | ||
enabled: true | ||
ports: | ||
listen-udp: | ||
enabled: true | ||
port: 22000 | ||
protocol: UDP | ||
discovery: | ||
enabled: true | ||
ports: | ||
discovery: | ||
enabled: true | ||
port: 21027 | ||
protocol: UDP | ||
|
||
ingress: | ||
main: | ||
enabled: true | ||
hosts: | ||
- host: "{{ .Chart.Name }}.libre.pod" | ||
|
||
dashboard: | ||
expose: true | ||
url: "https://{{ .Chart.Name }}.libre.pod" | ||
|
||
persistence: | ||
data: | ||
enabled: true | ||
type: pvc | ||
mountPath: /var/syncthing | ||
readOnly: false | ||
accessMode: ReadWriteOnce | ||
size: 20Gi | ||
retain: true |