From 4bcc702b658062847883c94fa38fb5129a20331c Mon Sep 17 00:00:00 2001 From: Stavros Kois <47820033+stavros-k@users.noreply.github.com> Date: Thu, 10 Mar 2022 01:02:51 +0200 Subject: [PATCH] feat(storj-node): Add storj-node (#2119) * feat(storj-node): Add storj-node * rename folder * true string * setup only * update questions * add skipinstall * add desc * enable secondary ports * default to pvc --- charts/incubator/storj-node/Chart.yaml | 28 + charts/incubator/storj-node/SKIPINSTALL | 0 charts/incubator/storj-node/questions.yaml | 509 ++++++++++++++++++ .../storj-node/templates/common.yaml | 1 + charts/incubator/storj-node/values.yaml | 44 ++ docs/_static/img/appicons/storj-node.png | Bin 0 -> 8117 bytes docs/manual/default-ports.md | 3 + 7 files changed, 585 insertions(+) create mode 100644 charts/incubator/storj-node/Chart.yaml create mode 100644 charts/incubator/storj-node/SKIPINSTALL create mode 100644 charts/incubator/storj-node/questions.yaml create mode 100644 charts/incubator/storj-node/templates/common.yaml create mode 100644 charts/incubator/storj-node/values.yaml create mode 100644 docs/_static/img/appicons/storj-node.png diff --git a/charts/incubator/storj-node/Chart.yaml b/charts/incubator/storj-node/Chart.yaml new file mode 100644 index 00000000000..d624b2c99b2 --- /dev/null +++ b/charts/incubator/storj-node/Chart.yaml @@ -0,0 +1,28 @@ +apiVersion: v2 +appVersion: "1.49.5" +dependencies: +- name: common + repository: https://truecharts.org + version: 9.1.2 +description: Storj is an S3-compatible platform and suite of decentralized applications that allows you to store data in a secure and decentralized manner +home: https://github.com/truecharts/apps/tree/master/charts/stable/storj-node +icon: https://truecharts.org/_static/img/appicons/storj-node.png +keywords: +- storj +- storage +kubeVersion: '>=1.16.0-0' +maintainers: +- email: info@truecharts.org + name: TrueCharts + url: https://truecharts.org +name: storj-node +sources: +- https://github.com/storj/storj +- https://docs.storj.io/node/ +- https://hub.docker.com/r/storjlabs/storagenode +version: 0.0.1 +annotations: + truecharts.org/catagories: | + - media + truecharts.org/SCALE-support: "true" + truecharts.org/grade: U diff --git a/charts/incubator/storj-node/SKIPINSTALL b/charts/incubator/storj-node/SKIPINSTALL new file mode 100644 index 00000000000..e69de29bb2d diff --git a/charts/incubator/storj-node/questions.yaml b/charts/incubator/storj-node/questions.yaml new file mode 100644 index 00000000000..46484844a7b --- /dev/null +++ b/charts/incubator/storj-node/questions.yaml @@ -0,0 +1,509 @@ +# 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} + - variable: secret + group: "Container Configuration" + label: "Image Secrets" + schema: + additional_attrs: true + type: dict + attrs: + - variable: WALLET + label: "WALLET" + description: "A wallet address to receive STORJ token payouts for running the node." + schema: + type: string + default: "" + required: true + + - variable: env + group: "Container Configuration" + label: "Image Environment" + schema: + additional_attrs: true + type: dict + attrs: + - variable: SETUP + label: "SETUP (Change to false after first deploy)" + description: "After first deploy, come back to change it to false." + schema: + type: boolean + default: true + - variable: EMAIL + label: "EMAIL" + description: "Email address so that we can notify you when a new version has been released." + schema: + type: string + default: "" + - variable: ADDRESS + label: "ADDRESS" + description: "External IP address or the DDNS you configured and the port you opened on your router" + schema: + type: string + default: "" + required: true + - variable: STORAGE + label: "STORAGE" + description: "How much disk space you want to allocate to the Storj network. Be sure not to over-allocate space! Allow at least 10% extra for overhead" + schema: + type: string + default: "500GB" + required: true + +# 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: 14002 + 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: 14002 + - variable: coretcp + label: "Core TCP Service" + description: "Core TCP Service" + schema: + additional_attrs: true + type: dict + attrs: +# Include{serviceSelector} + - variable: coretcp + label: "Core TCP 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: 28967 + 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: 28967 + - variable: coreudp + label: "Core UDP Service" + description: "Core UDP Service" + schema: + additional_attrs: true + type: dict + attrs: +# Include{serviceSelector} + - variable: coreudp + label: "Core UDP 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: 28967 + 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: 28967 + + - 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: identity + label: "App Identity Storage" + description: "Stores the Identity." + 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} + - variable: storage + label: "File Storage" + description: "File Storage" + 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: "hostPath" + 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: true +# 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: 568 + - variable: runAsGroup + label: "runAsGroup" + description: The groupID this App of the user running the application" + schema: + type: int + default: 568 + - 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/storj-node/templates/common.yaml b/charts/incubator/storj-node/templates/common.yaml new file mode 100644 index 00000000000..a6613c2ce21 --- /dev/null +++ b/charts/incubator/storj-node/templates/common.yaml @@ -0,0 +1 @@ +{{ include "common.all" . }} diff --git a/charts/incubator/storj-node/values.yaml b/charts/incubator/storj-node/values.yaml new file mode 100644 index 00000000000..e69ea5674e0 --- /dev/null +++ b/charts/incubator/storj-node/values.yaml @@ -0,0 +1,44 @@ +image: + repository: storjlabs/storagenode + tag: 6e7a89161-v1.49.5-go1.17.5@sha256:62f5c05ffabb0fe5d2e0c556a91c08fe6b47ff20df95f350739fa8c07f628877 + pullPolicy: IfNotPresent + +secret: + WALLET: "walletaddress" + +env: + SETUP: true + EMAIL: "" + ADDRESS: "" + STORAGE: "500GB" + +service: + main: + ports: + main: + port: 14002 + targetPort: 14002 + coretcp: + enabled: true + ports: + coretcp: + enabled: true + protocol: TCP + port: 28967 + targetPort: 28967 + coreudp: + enabled: true + ports: + coreudp: + enabled: true + protocol: UDP + port: 28967 + targetPort: 28967 + +persistence: + identity: + enabled: true + mountPath: "/app/identity" + storage: + enabled: true + mountPath: "/app/config" diff --git a/docs/_static/img/appicons/storj-node.png b/docs/_static/img/appicons/storj-node.png new file mode 100644 index 0000000000000000000000000000000000000000..4539afb4a7e44fe4123ccee34c3578a6992b6dc6 GIT binary patch literal 8117 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 literal 0 HcmV?d00001 diff --git a/docs/manual/default-ports.md b/docs/manual/default-ports.md index 85f3cc35c67..b5fdae36dc4 100644 --- a/docs/manual/default-ports.md +++ b/docs/manual/default-ports.md @@ -331,6 +331,7 @@ These defaults can of course be changed, but as we guarantee "sane, working defa | redmine | main | main | 10171 | HTTP | | | matomo | main | main | 10172 | HTTP | | | matomo | https | https | 10173 | HTTPS | | +| storj-node | main | main | 14002 | TCP | | | satisfactory | beacon | beacon | 15000 | UDP | | | satisfactory | query | query | 15777 | UDP | | | minecraft-bedrock | main | main | 19132 | UDP | | @@ -346,6 +347,8 @@ These defaults can of course be changed, but as we guarantee "sane, working defa | impostor-server | main | main | 22023 | UDP | | | joplin-server | main | main | 22300 | TCP | | | minecraft-java | main | main | 25565 | TCP | | +| storj-node | coretcp | coretcp | 28967 | TCP | | +| storj-node | coreudp | coreudp | 28967 | UDP | | | omada-controller | omada-udp | omada-udp1 | 29810 | UDP | | | omada-controller | omada-tcp | omada-tcp2 | 29811 | TCP | | | omada-controller | omada-tcp | omada-tcp3 | 29812 | TCP | |