From 42540e72438bd91caf2637bf211e4e1c3af45aff Mon Sep 17 00:00:00 2001 From: sagit <36596628+Sagit-chu@users.noreply.github.com> Date: Mon, 21 Mar 2022 00:08:53 +0800 Subject: [PATCH] feat(verysync): Add verysync (#2228) * add verysync * Update charts/incubator/verysync/questions.yaml Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * Update charts/incubator/verysync/questions.yaml Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * Update docs/manual/default-ports.md Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> * Update charts/incubator/verysync/values.yaml Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com> --- charts/incubator/verysync/.helmignore | 26 + charts/incubator/verysync/Chart.yaml | 28 + charts/incubator/verysync/questions.yaml | 477 ++++++++++++++++++ .../incubator/verysync/templates/common.yaml | 1 + charts/incubator/verysync/values.yaml | 41 ++ docs/_static/img/appicons/verysync.png | Bin 0 -> 1648 bytes docs/manual/default-ports.md | 4 + 7 files changed, 577 insertions(+) create mode 100644 charts/incubator/verysync/.helmignore create mode 100644 charts/incubator/verysync/Chart.yaml create mode 100644 charts/incubator/verysync/questions.yaml create mode 100644 charts/incubator/verysync/templates/common.yaml create mode 100644 charts/incubator/verysync/values.yaml create mode 100644 docs/_static/img/appicons/verysync.png diff --git a/charts/incubator/verysync/.helmignore b/charts/incubator/verysync/.helmignore new file mode 100644 index 00000000000..4379e2b3014 --- /dev/null +++ b/charts/incubator/verysync/.helmignore @@ -0,0 +1,26 @@ +# 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 diff --git a/charts/incubator/verysync/Chart.yaml b/charts/incubator/verysync/Chart.yaml new file mode 100644 index 00000000000..230a5b9c77d --- /dev/null +++ b/charts/incubator/verysync/Chart.yaml @@ -0,0 +1,28 @@ +apiVersion: v2 +appVersion: "2.7.2.1375" +dependencies: +- name: common + repository: https://truecharts.org + version: 9.1.6 +description: very sync is an easy-to-use multi-platform file synchronization software +home: https://github.com/truecharts/apps/tree/master/charts/stable/verysync +icon: https://truecharts.org/_static/img/appicons/verysync.png +keywords: +- verysync +- sync +- btsync +- bittorrent +kubeVersion: '>=1.16.0-0' +maintainers: +- email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: verysync +sources: +- https://hub.docker.com/r/jonnyan404/verysync +version: 0.0.1 +annotations: + truecharts.org/catagories: | + - media + truecharts.org/SCALE-support: "true" + truecharts.org/grade: U diff --git a/charts/incubator/verysync/questions.yaml b/charts/incubator/verysync/questions.yaml new file mode 100644 index 00000000000..4ee1d0145a0 --- /dev/null +++ b/charts/incubator/verysync/questions.yaml @@ -0,0 +1,477 @@ +# Include{groups} +portals: + open: + protocols: + - "$kubernetes-resource_configmap_portal_protocol" + host: + - "$kubernetes-resource_configmap_portal_host" + ports: + - "$kubernetes-resource_configmap_portal_port" +questions: + - variable: portal + group: "Container Image" + label: "Configure Portal Button" + schema: + type: dict + hidden: true + attrs: + - variable: enabled + label: "Enable" + description: "enable the portal button" + schema: + hidden: true + editable: false + type: boolean + default: true +# Include{global} + - variable: controller + group: "Controller" + label: "" + schema: + additional_attrs: true + type: dict + attrs: + - variable: advanced + label: "Show Advanced Controller Settings" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: type + description: "Please specify type of workload to deploy" + label: "(Advanced) Controller Type" + schema: + type: string + default: "deployment" + required: true + enum: + - value: "deployment" + description: "Deployment" + - value: "statefulset" + description: "Statefulset" + - value: "daemonset" + description: "Daemonset" + - variable: replicas + description: "Number of desired pod replicas" + label: "Desired Replicas" + schema: + type: int + default: 1 + required: true + - variable: strategy + description: "Please specify type of workload to deploy" + label: "(Advanced) Update Strategy" + schema: + type: string + default: "Recreate" + required: true + enum: + - value: "Recreate" + description: "Recreate: Kill existing pods before creating new ones" + - value: "RollingUpdate" + description: "RollingUpdate: Create new pods and then kill old ones" + - value: "OnDelete" + description: "(Legacy) OnDelete: ignore .spec.template changes" +# Include{controllerExpert} +# Include{containerConfig} + + - variable: service + group: "Networking and Services" + label: "Configure Service(s)" + schema: + additional_attrs: true + type: dict + attrs: + - variable: main + label: "Main Service" + description: "The Primary service on which the healthcheck runs, often the webUI" + schema: + additional_attrs: true + type: dict + attrs: +# Include{serviceSelector} + - 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: 10193 + required: true + - variable: advanced + label: "Show Advanced settings" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: protocol + label: "Port Type" + schema: + type: string + default: "HTTP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer" + schema: + type: int + min: 9000 + max: 65535 + - variable: targetPort + label: "Target Port" + description: "The internal(!) port on the container the Application runs on" + schema: + type: int + default: 10193 + + + - variable: bt-udp1 + label: "bt-udp1 Service" + description: "The bt-udp service" + schema: + additional_attrs: true + type: dict + attrs: +# Include{serviceSelector} + - variable: bt-udp1 + label: "bt-udp1 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: 22037 + required: true + - variable: advanced + label: "Show Advanced settings" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: protocol + label: "Port Type" + schema: + type: string + default: "UDP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer" + schema: + type: int + min: 9000 + max: 65535 + - variable: targetPort + label: "Target Port" + description: "The internal(!) port on the container the Application runs on" + schema: + type: int + default: 22037 + + + - variable: bt-udp2 + label: "bt-udp2 Service" + description: "The bt-udp service" + schema: + additional_attrs: true + type: dict + attrs: +# Include{serviceSelector} + - variable: bt-udp2 + label: "bt-udp2 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: 22027 + required: true + - variable: advanced + label: "Show Advanced settings" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: protocol + label: "Port Type" + schema: + type: string + default: "UDP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer" + schema: + type: int + min: 9000 + max: 65535 + - variable: targetPort + label: "Target Port" + description: "The internal(!) port on the container the Application runs on" + schema: + type: int + default: 22027 + + + - variable: data + label: "data Service" + description: "The data service" + schema: + additional_attrs: true + type: dict + attrs: +# Include{serviceSelector} + - variable: data + label: "data 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: 22330 + required: true + - variable: advanced + label: "Show Advanced settings" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: protocol + label: "Port Type" + schema: + type: string + default: "TCP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort, Simple or LoadBalancer" + schema: + type: int + min: 9000 + max: 65535 + - variable: targetPort + label: "Target Port" + description: "The internal(!) port on the container the Application runs on" + schema: + type: int + default: 22330 + + - variable: serviceexpert + group: "Networking and Services" + label: "Show Expert Config" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: hostNetwork + group: "Networking and Services" + label: "Host-Networking (Complicated)" + schema: + type: boolean + default: false + +# Include{serviceExpert} + +# Include{serviceList} + + - variable: persistence + label: "Integrated Persistent Storage" + description: "Integrated Persistent Storage" + group: "Storage and Persistence" + schema: + additional_attrs: true + type: dict + attrs: + - variable: data + label: "App Data Storage" + description: "Stores the Application Data." + schema: + additional_attrs: true + type: dict + attrs: + - variable: type + label: "Type of Storage" + description: "Sets the persistence type, Anything other than PVC could break rollback!" + schema: + type: string + default: "simplePVC" + enum: + - value: "simplePVC" + description: "PVC (simple)" + - value: "simpleHP" + description: "HostPath (simple)" + - value: "emptyDir" + description: "emptyDir" + - value: "pvc" + description: "pvc" + - value: "hostPath" + description: "hostPath" +# Include{persistenceBasic} + - variable: hostPath + label: "hostPath" + description: "Path inside the container the storage is mounted" + schema: + show_if: [["type", "=", "hostPath"]] + type: hostpath + - variable: medium + label: "EmptyDir Medium" + schema: + show_if: [["type", "=", "emptyDir"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "Memory" + description: "Memory" +# Include{persistenceAdvanced} +# Include{persistenceList} + + - variable: ingress + label: "" + group: "Ingress" + schema: + additional_attrs: true + type: dict + attrs: + - variable: main + label: "Main Ingress" + schema: + additional_attrs: true + type: dict + attrs: +# Include{ingressDefault} + +# Include{ingressTLS} + +# Include{ingressTraefik} + +# Include{ingressExpert} + +# Include{ingressList} + +# Include{security} + + - variable: advancedSecurity + label: "Show Advanced Security Settings" + group: "Security and Permissions" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: securityContext + label: "Security Context" + schema: + additional_attrs: true + type: dict + attrs: + - variable: privileged + label: "Privileged mode" + schema: + type: boolean + default: false + - variable: readOnlyRootFilesystem + label: "ReadOnly Root Filesystem" + schema: + type: boolean + default: true + - variable: allowPrivilegeEscalation + label: "Allow Privilege Escalation" + schema: + type: boolean + default: false + - variable: runAsNonRoot + label: "runAsNonRoot" + schema: + type: boolean + default: false +# Include{securityContextAdvanced} + + - variable: podSecurityContext + group: "Security and Permissions" + label: "Pod Security Context" + schema: + additional_attrs: true + type: dict + attrs: + - 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 this App of the user running the application" + schema: + type: int + default: 0 + - variable: fsGroup + label: "fsGroup" + description: "The group that should own ALL storage." + schema: + type: int + default: 568 +# Include{podSecurityContextAdvanced} + +# Include{resources} + +# Include{advanced} + +# Include{addons} diff --git a/charts/incubator/verysync/templates/common.yaml b/charts/incubator/verysync/templates/common.yaml new file mode 100644 index 00000000000..a6613c2ce21 --- /dev/null +++ b/charts/incubator/verysync/templates/common.yaml @@ -0,0 +1 @@ +{{ include "common.all" . }} diff --git a/charts/incubator/verysync/values.yaml b/charts/incubator/verysync/values.yaml new file mode 100644 index 00000000000..3db6461d2c2 --- /dev/null +++ b/charts/incubator/verysync/values.yaml @@ -0,0 +1,41 @@ +image: + repository: jonnyan404/verysync + tag: 2.13.0@sha256:a6f4fe60d6e95f8b925701cd1c3ec702ccfb39d8da58441ec6e7e9c749a0692c + pullPolicy: IfNotPresent + +service: + main: + ports: + main: + port: 10193 + bt-udp1: + enabled: true + ports: + bt-udp1: + enabled: true + port: 22037 + targetPort: 22037 + protocol: UDP + bt-udp2: + enabled: true + ports: + bt-udp2: + enabled: true + port: 22027 + targetPort: 22027 + protocol: UDP + data: + enabled: true + ports: + data: + enabled: true + port: 22330 + targetPort: 22330 + +env: + PORT: "{{ .Values.service.main.ports.main.port }}" + +persistence: + data: + enabled: true + mountPath: "/data" diff --git a/docs/_static/img/appicons/verysync.png b/docs/_static/img/appicons/verysync.png new file mode 100644 index 0000000000000000000000000000000000000000..3575aae4812c7080e5c08b93d611889aea9ab26b GIT binary patch literal 1648 zcmV-$29NoPP)4gQ0_;5@tukH8uShTW)vN#Iqu46>)oZ~_tz47-s6^Av1= zT+%u`$$??JJurLW3`m1b_!%z1Ik*H{APwGveb&JE*PlTO0;pX5jK%qZ6>4Di!uueJ zE%*!`gWEt52jOw}#1NVfU@r(|$(k#WFa|-$1w)V|%t3faplJyY8RP>=J!+89gc68Y z19Ju>aSpc^GzHW!Hq{YIAYu&6 z6CjEA-~fo8Zh{LS4UR1t81)G+TN%_KA=d*#8lu+z-9Sy0+Z>ou8|`ur1;|$3<9Ia( zX4t?aunto5F6;r}U<9(m1{_)@FnY5s9(x34t~G7tFjX3pCbdaT4XlFd$3HMVWgHk1 z7&rk^^R?Pfad0dA0n*|mEHk<^AYtSf7}YcrOVi2~PnYPibEub;4H%fR3y&~B0<#7i z$hMmpeF>qH-290M~Y0Wk$;1Z9V*s=@Mm70A}OBQTjqU{aovZ7;fu z{}0I4ryxA+gXdrl(x7mtv(R4$Q>b7{no_p(*UUh+DxYZ)Z9a=y9V7H9Stx;sDKHDi zU;}1wH;4hO!SnDFNaD0Zof(u+z=(W$O9!fHCL9{ZRU`61ZD0IASOj0_kkno5;$m_%k0#mLqFbT{_ zFs*^nM(7a-MhgtALk;%^8kiYK8W_ulV?vHsfh1EK;Xu8vjxaElHtkCs0y760%3e%J zf%#Iq3i&MD31S6~!W(eU5`k%8Oar4mN6if*gi^as#~jXI^pKBsI4}i0_pt>=jo!S| zPjp;x*}yAgr{C9uumuvX!0k)ao72FMUHsfKb&{IObve0}xGwqbU|@1+^#89zU?!og zj)fQ))nwEUa0J8vJ_M>RkPlGi0Xo=f0O+XUQfEXw+>iwsNMrxoS)1H)sC$WU3 zfvn?e#)8t`zX{;`Fh*($My8$9&_?`W72l#s%R zj5KtrRT);6Y+<42comc|BgY#mFcX-<*zp^e3LSw;73|hLq!av@0<#8F!%Z+ghQe?Y zj9cJv`#YPqn_&0{#(r)=!(uv_H>?)UNLZ*!3kTJx;|&;?dB?GYK}Kq%8kmM2l+XjS zun*n=X>bj`hcDoB_!h2$G&rTg;u)9}O6?PN)MJIK?l@N&lg7=Vh6yAdcYzTd3R07c zOx3Jdj+ej$YVw)_(oll18v>&o_q>tc6*#_I?u*4ZFnt_?*Wild(&y`Na5vpZj&WdI z?1v+88qUKyY{9?qTl-uEhhhJ2yz?UC!0@d~Su{8>f&3v@9D*oh*^MKBhNAc|lt7XJg9DNz>+QNc9;0000