From 456d3fb5825a7ebbdd5542b5ee6170d64a63e83f Mon Sep 17 00:00:00 2001 From: TrueCharts-Bot Date: Tue, 7 Sep 2021 18:53:03 +0000 Subject: [PATCH] Commit new App releases for TrueCharts Signed-off-by: TrueCharts-Bot --- incubator/custom-app/0.2.20/CONFIG.md | 53 + incubator/custom-app/0.2.20/Chart.lock | 6 + incubator/custom-app/0.2.20/Chart.yaml | 22 + incubator/custom-app/0.2.20/README.md | 53 + incubator/custom-app/0.2.20/app-readme.md | 53 + .../0.2.20/charts/common-6.13.8.tgz | Bin 0 -> 29106 bytes incubator/custom-app/0.2.20/helm-values.md | 53 + incubator/custom-app/0.2.20/ix_values.yaml | 10 + incubator/custom-app/0.2.20/questions.yaml | 1194 +++++++++++++++++ .../custom-app/0.2.20/templates/common.yaml | 1 + incubator/custom-app/0.2.20/test_values.yaml | 43 + incubator/custom-app/0.2.20/values.yaml | 0 12 files changed, 1488 insertions(+) create mode 100644 incubator/custom-app/0.2.20/CONFIG.md create mode 100644 incubator/custom-app/0.2.20/Chart.lock create mode 100644 incubator/custom-app/0.2.20/Chart.yaml create mode 100644 incubator/custom-app/0.2.20/README.md create mode 100644 incubator/custom-app/0.2.20/app-readme.md create mode 100644 incubator/custom-app/0.2.20/charts/common-6.13.8.tgz create mode 100644 incubator/custom-app/0.2.20/helm-values.md create mode 100644 incubator/custom-app/0.2.20/ix_values.yaml create mode 100644 incubator/custom-app/0.2.20/questions.yaml create mode 100644 incubator/custom-app/0.2.20/templates/common.yaml create mode 100644 incubator/custom-app/0.2.20/test_values.yaml create mode 100644 incubator/custom-app/0.2.20/values.yaml diff --git a/incubator/custom-app/0.2.20/CONFIG.md b/incubator/custom-app/0.2.20/CONFIG.md new file mode 100644 index 0000000000..30ba31c23b --- /dev/null +++ b/incubator/custom-app/0.2.20/CONFIG.md @@ -0,0 +1,53 @@ +# custom-app + +![Version: 0.2.20](https://img.shields.io/badge/Version-0.2.20-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) + +Advanced tool to create your own TrueCharts-based App + +**Homepage:** + +## Maintainers + +| Name | Email | Url | +| ---- | ------ | --- | +| TrueCharts | info@truecharts.org | truecharts.org | + +## Source Code + +* + +## Requirements + +Kubernetes: `>=1.16.0-0` + +| Repository | Name | Version | +|------------|------|---------| +| https://truecharts.org/ | common | 6.13.8 | + +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| env | object | `{}` | | +| image.pullPolicy | string | `"IfNotPresent"` | | +| image.repository | string | `"ghcr.io/k8s-at-home/jackett"` | | +| image.tag | string | `"v0.18.686"` | | +| persistence.config.accessMode | string | `"ReadWriteOnce"` | | +| persistence.config.enabled | bool | `true` | | +| persistence.config.mountPath | string | `"/config"` | | +| persistence.config.size | string | `"100Gi"` | | +| persistence.config.type | string | `"pvc"` | | +| service.main.enabled | bool | `true` | | +| service.main.ports.main.port | int | `9117` | | +| service.main.portsList[0].enabled | bool | `true` | | +| service.main.portsList[0].name | string | `"extraport"` | | +| service.main.portsList[0].port | int | `9118` | | +| serviceList[0].enabled | bool | `true` | | +| serviceList[0].name | string | `"extraservice"` | | +| serviceList[0].portsList[0].enabled | bool | `true` | | +| serviceList[0].portsList[0].name | string | `"extrasvcport"` | | +| serviceList[0].portsList[0].port | int | `9119` | | +| strategy.type | string | `"Recreate"` | | + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/incubator/custom-app/0.2.20/Chart.lock b/incubator/custom-app/0.2.20/Chart.lock new file mode 100644 index 0000000000..10d2c8e5d3 --- /dev/null +++ b/incubator/custom-app/0.2.20/Chart.lock @@ -0,0 +1,6 @@ +dependencies: +- name: common + repository: https://truecharts.org/ + version: 6.13.8 +digest: sha256:7c137b201e33de386c8012e58dd401f81aa3b8e8cade47c7de48db3e58342823 +generated: "2021-09-07T18:51:59.134686136Z" diff --git a/incubator/custom-app/0.2.20/Chart.yaml b/incubator/custom-app/0.2.20/Chart.yaml new file mode 100644 index 0000000000..7f0d1d0fa4 --- /dev/null +++ b/incubator/custom-app/0.2.20/Chart.yaml @@ -0,0 +1,22 @@ +apiVersion: v2 +appVersion: auto +dependencies: +- name: common + repository: https://truecharts.org/ + version: 6.13.8 +deprecated: false +description: Advanced tool to create your own TrueCharts-based App +home: https://github.com/truecharts/apps/tree/master/charts/stable/custom-app +icon: https://truecharts.org/_static/img/custom-app-icon.png +keywords: +- custom +kubeVersion: '>=1.16.0-0' +maintainers: +- email: info@truecharts.org + name: TrueCharts + url: truecharts.org +name: custom-app +sources: +- https://github.com/truecharts/apps/tree/master/charts/stable/custom-app +type: application +version: 0.2.20 diff --git a/incubator/custom-app/0.2.20/README.md b/incubator/custom-app/0.2.20/README.md new file mode 100644 index 0000000000..30ba31c23b --- /dev/null +++ b/incubator/custom-app/0.2.20/README.md @@ -0,0 +1,53 @@ +# custom-app + +![Version: 0.2.20](https://img.shields.io/badge/Version-0.2.20-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) + +Advanced tool to create your own TrueCharts-based App + +**Homepage:** + +## Maintainers + +| Name | Email | Url | +| ---- | ------ | --- | +| TrueCharts | info@truecharts.org | truecharts.org | + +## Source Code + +* + +## Requirements + +Kubernetes: `>=1.16.0-0` + +| Repository | Name | Version | +|------------|------|---------| +| https://truecharts.org/ | common | 6.13.8 | + +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| env | object | `{}` | | +| image.pullPolicy | string | `"IfNotPresent"` | | +| image.repository | string | `"ghcr.io/k8s-at-home/jackett"` | | +| image.tag | string | `"v0.18.686"` | | +| persistence.config.accessMode | string | `"ReadWriteOnce"` | | +| persistence.config.enabled | bool | `true` | | +| persistence.config.mountPath | string | `"/config"` | | +| persistence.config.size | string | `"100Gi"` | | +| persistence.config.type | string | `"pvc"` | | +| service.main.enabled | bool | `true` | | +| service.main.ports.main.port | int | `9117` | | +| service.main.portsList[0].enabled | bool | `true` | | +| service.main.portsList[0].name | string | `"extraport"` | | +| service.main.portsList[0].port | int | `9118` | | +| serviceList[0].enabled | bool | `true` | | +| serviceList[0].name | string | `"extraservice"` | | +| serviceList[0].portsList[0].enabled | bool | `true` | | +| serviceList[0].portsList[0].name | string | `"extrasvcport"` | | +| serviceList[0].portsList[0].port | int | `9119` | | +| strategy.type | string | `"Recreate"` | | + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/incubator/custom-app/0.2.20/app-readme.md b/incubator/custom-app/0.2.20/app-readme.md new file mode 100644 index 0000000000..30ba31c23b --- /dev/null +++ b/incubator/custom-app/0.2.20/app-readme.md @@ -0,0 +1,53 @@ +# custom-app + +![Version: 0.2.20](https://img.shields.io/badge/Version-0.2.20-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) + +Advanced tool to create your own TrueCharts-based App + +**Homepage:** + +## Maintainers + +| Name | Email | Url | +| ---- | ------ | --- | +| TrueCharts | info@truecharts.org | truecharts.org | + +## Source Code + +* + +## Requirements + +Kubernetes: `>=1.16.0-0` + +| Repository | Name | Version | +|------------|------|---------| +| https://truecharts.org/ | common | 6.13.8 | + +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| env | object | `{}` | | +| image.pullPolicy | string | `"IfNotPresent"` | | +| image.repository | string | `"ghcr.io/k8s-at-home/jackett"` | | +| image.tag | string | `"v0.18.686"` | | +| persistence.config.accessMode | string | `"ReadWriteOnce"` | | +| persistence.config.enabled | bool | `true` | | +| persistence.config.mountPath | string | `"/config"` | | +| persistence.config.size | string | `"100Gi"` | | +| persistence.config.type | string | `"pvc"` | | +| service.main.enabled | bool | `true` | | +| service.main.ports.main.port | int | `9117` | | +| service.main.portsList[0].enabled | bool | `true` | | +| service.main.portsList[0].name | string | `"extraport"` | | +| service.main.portsList[0].port | int | `9118` | | +| serviceList[0].enabled | bool | `true` | | +| serviceList[0].name | string | `"extraservice"` | | +| serviceList[0].portsList[0].enabled | bool | `true` | | +| serviceList[0].portsList[0].name | string | `"extrasvcport"` | | +| serviceList[0].portsList[0].port | int | `9119` | | +| strategy.type | string | `"Recreate"` | | + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/incubator/custom-app/0.2.20/charts/common-6.13.8.tgz b/incubator/custom-app/0.2.20/charts/common-6.13.8.tgz new file mode 100644 index 0000000000000000000000000000000000000000..d3fd2fa87de538d8577879344e4e578ae6833fac GIT binary patch literal 29106 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 BN5B98 literal 0 HcmV?d00001 diff --git a/incubator/custom-app/0.2.20/helm-values.md b/incubator/custom-app/0.2.20/helm-values.md new file mode 100644 index 0000000000..30ba31c23b --- /dev/null +++ b/incubator/custom-app/0.2.20/helm-values.md @@ -0,0 +1,53 @@ +# custom-app + +![Version: 0.2.20](https://img.shields.io/badge/Version-0.2.20-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) + +Advanced tool to create your own TrueCharts-based App + +**Homepage:** + +## Maintainers + +| Name | Email | Url | +| ---- | ------ | --- | +| TrueCharts | info@truecharts.org | truecharts.org | + +## Source Code + +* + +## Requirements + +Kubernetes: `>=1.16.0-0` + +| Repository | Name | Version | +|------------|------|---------| +| https://truecharts.org/ | common | 6.13.8 | + +## Values + +| Key | Type | Default | Description | +|-----|------|---------|-------------| +| env | object | `{}` | | +| image.pullPolicy | string | `"IfNotPresent"` | | +| image.repository | string | `"ghcr.io/k8s-at-home/jackett"` | | +| image.tag | string | `"v0.18.686"` | | +| persistence.config.accessMode | string | `"ReadWriteOnce"` | | +| persistence.config.enabled | bool | `true` | | +| persistence.config.mountPath | string | `"/config"` | | +| persistence.config.size | string | `"100Gi"` | | +| persistence.config.type | string | `"pvc"` | | +| service.main.enabled | bool | `true` | | +| service.main.ports.main.port | int | `9117` | | +| service.main.portsList[0].enabled | bool | `true` | | +| service.main.portsList[0].name | string | `"extraport"` | | +| service.main.portsList[0].port | int | `9118` | | +| serviceList[0].enabled | bool | `true` | | +| serviceList[0].name | string | `"extraservice"` | | +| serviceList[0].portsList[0].enabled | bool | `true` | | +| serviceList[0].portsList[0].name | string | `"extrasvcport"` | | +| serviceList[0].portsList[0].port | int | `9119` | | +| strategy.type | string | `"Recreate"` | | + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) diff --git a/incubator/custom-app/0.2.20/ix_values.yaml b/incubator/custom-app/0.2.20/ix_values.yaml new file mode 100644 index 0000000000..18f32919de --- /dev/null +++ b/incubator/custom-app/0.2.20/ix_values.yaml @@ -0,0 +1,10 @@ +## +# This file contains Values.yaml content that gets added to the output of questions.yaml +# It's ONLY meant for content that the user is NOT expected to change. +# Example: Everything under "image" is not included in questions.yaml but is included here. +## + +## +# Most other defaults are set in questions.yaml +# For other options please refer to the wiki, default_values.yaml or the common library chart +## diff --git a/incubator/custom-app/0.2.20/questions.yaml b/incubator/custom-app/0.2.20/questions.yaml new file mode 100644 index 0000000000..dc5457b4bc --- /dev/null +++ b/incubator/custom-app/0.2.20/questions.yaml @@ -0,0 +1,1194 @@ +groups: + - name: "Container Image" + description: "Image to be used for container" + - name: "Controller" + description: "Configure workload deployment" + - name: "Container Configuration" + description: "additional container configuration" + - name: "App Configuration" + description: "App specific config options" + - name: "Networking and Services" + description: "Configure Network and Services for container" + - name: "Storage and Persistence" + description: "Persist and share data that is separate from the container" + - name: "Ingress" + description: "Ingress Configuration" + - name: "Security and Permissions" + description: "Configure security context and permissions" + - name: "Resources and Devices" + description: "Specify resources/devices to be allocated to workload" + - name: "Advanced" + description: "Advanced Configuration" +portals: + web_portal: + 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 + + - variable: image + group: "Container Image" + label: "Container" + schema: + type: dict + attrs: + - variable: repository + label: "Container Repository" + schema: + type: string + default: "ghcr.io/k8s-at-home/jackett" + required: true + - variable: tag + label: "Container Tag" + schema: + type: string + default: "v0.18.616" + required: true + - variable: pullPolicy + label: "Container Pullpolicy" + schema: + type: string + default: "IfNotPresent" + enum: + - value: "IfNotPresent" + description: "IfNotPresent" + - value: "Always" + description: "Always" + - value: "Never" + description: "Never" + + - variable: controller + group: "Controller" + label: "" + schema: + type: dict + attrs: + - 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" + - variable: labelsList + label: "Controller Labels" + schema: + type: list + default: [] + items: + - variable: labelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: annotationsList + label: " Controller Annotations" + schema: + type: list + default: [] + items: + - variable: annotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + + - variable: podLabelsList + group: "Container Configuration" + label: "Pod Labels" + schema: + type: list + default: [] + items: + - variable: podLabelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + + - variable: podAnnotationsList + group: "Container Configuration" + label: "Pod Annotations" + schema: + type: list + default: [] + items: + - variable: podAnnotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + + - variable: termination + group: "Container Configuration" + label: "Termination settings" + schema: + type: dict + attrs: + - variable: gracePeriodSeconds + label: "Grace Period Seconds" + schema: + type: int + default: 10 + + - variable: env + group: "Container Configuration" + label: "Image Environment" + schema: + type: dict + attrs: + - variable: TZ + label: "Timezone" + schema: + type: string + default: "Etc/UTC" + $ref: + - "definitions/timezone" + # Configure Enviroment Variables + - variable: envList + label: "Image environment" + group: "Container Configuration" + schema: + type: list + default: [] + items: + - variable: envItem + label: "Environment Variable" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + + - variable: hostNetwork + group: "Networking and Services" + label: "Enable Host Networking" + schema: + type: boolean + default: false + + - variable: service + group: "Networking and Services" + label: "Configure Service(s)" + schema: + type: dict + attrs: + - variable: main + label: "Main Service" + description: "The Primary service on which the healthcheck runs, often the webUI" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the service" + schema: + type: boolean + default: true + hidden: true + - variable: type + label: "Service Type" + description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer" + schema: + type: string + default: "NodePort" + enum: + - value: "NodePort" + description: "NodePort" + - value: "ClusterIP" + description: "ClusterIP" + - value: "LoadBalancer" + description: "LoadBalancer" + - variable: loadBalancerIP + label: "LoadBalancer IP" + description: "LoadBalancerIP" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: string + default: "" + - variable: externalIPs + label: "External IP's" + description: "External IP's" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: list + default: [] + items: + - variable: externalIP + label: "External IP" + schema: + type: string + - variable: ports + label: "Service's Port(s) Configuration" + schema: + type: dict + attrs: + - variable: main + label: "Main Service Port Configuration" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true + - 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: targetPort + label: "Target Port" + description: "This port exposes the container port on the service" + schema: + type: int + required: true + - variable: port + label: "Container Port" + schema: + type: int + required: true + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort" + schema: + type: int + min: 9000 + max: 65535 + - variable: portsList + label: "Additional Service Ports" + schema: + type: list + default: [] + items: + - variable: portsListEntry + label: "Custom ports" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Port Name" + schema: + type: string + default: "" + - 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: targetPort + label: "Target Port" + description: "This port exposes the container port on the service" + schema: + type: int + required: true + - variable: port + label: "Container Port" + schema: + type: int + required: true + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort" + schema: + type: int + min: 9000 + max: 65535 + + - variable: serviceList + label: "Additional Services" + group: "Storage and Persistence" + schema: + type: list + default: [] + items: + - variable: serviceListEntry + label: "Custom Service" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the service" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Name" + schema: + type: string + default: "" + - variable: type + label: "Service Type" + description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer" + schema: + type: string + default: "NodePort" + enum: + - value: "NodePort" + description: "NodePort" + - value: "ClusterIP" + description: "ClusterIP" + - value: "LoadBalancer" + description: "LoadBalancer" + - variable: loadBalancerIP + label: "LoadBalancer IP" + description: "LoadBalancerIP" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: string + default: "" + - variable: externalIPs + label: "External IP's" + description: "External IP's" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: list + default: [] + items: + - variable: externalIP + label: "External IP" + schema: + type: string + - variable: portsList + label: "Additional Service Ports" + schema: + type: list + default: [] + items: + - variable: portsListEntry + label: "Custom ports" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Port Name" + schema: + type: string + default: "" + - 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: targetPort + label: "Target Port" + description: "This port exposes the container port on the service" + schema: + type: int + required: true + - variable: port + label: "Container Port" + schema: + type: int + required: true + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort" + schema: + type: int + min: 9000 + max: 65535 + + - variable: persistenceList + label: "Additional app storage" + group: "Storage and Persistence" + schema: + type: list + default: [] + items: + - variable: persistenceListEntry + label: "Custom Storage" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the storage" + schema: + type: boolean + default: true + - variable: type + label: "(Advanced) Type of Storage" + description: "Sets the persistence type" + schema: + type: string + default: "hostPath" + enum: + - value: "pvc" + description: "pvc" + - value: "emptyDir" + description: "emptyDir" + - value: "hostPath" + description: "hostPath" + - variable: storageClass + label: "(Advanced) storageClass" + description: " Warning: Anything other than SCALE-ZFS will break rollback!" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "SCALE-ZFS" + - variable: labelsList + label: "Labels" + schema: + type: list + default: [] + items: + - variable: labelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: annotationsList + label: "Annotations" + schema: + type: list + default: [] + items: + - variable: annotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + show_if: [["type", "=", "hostPath"]] + type: boolean + default: true + - variable: readOnly + label: "readOnly" + schema: + type: boolean + default: false + - variable: hostPath + label: "hostPath" + description: "Path inside the container the storage is mounted" + schema: + show_if: [["type", "=", "hostPath"]] + type: hostpath + - variable: hostPathType + label: "hostPath Type" + schema: + show_if: [["type", "=", "hostPath"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "DirectoryOrCreate" + description: "DirectoryOrCreate" + - value: "Directory" + description: "Directory" + - value: "FileOrCreate" + description: "FileOrCreate" + - value: "File" + description: "File" + - value: "Socket" + description: "Socket" + - value: "CharDevice" + description: "CharDevice" + - value: "BlockDevice" + description: "BlockDevice" + - variable: mountPath + label: "mountPath" + description: "Path inside the container the storage is mounted" + schema: + type: string + required: true + default: "" + - variable: medium + label: "EmptyDir Medium" + schema: + show_if: [["type", "=", "emptyDir"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "Memory" + description: "Memory" + - variable: accessMode + label: "Access Mode (Advanced)" + description: "Allow or disallow multiple PVC's writhing to the same PVC" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "ReadWriteOnce" + enum: + - value: "ReadWriteOnce" + description: "ReadWriteOnce" + - value: "ReadOnlyMany" + description: "ReadOnlyMany" + - value: "ReadWriteMany" + description: "ReadWriteMany" + - variable: size + label: "Size quotum of storage" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "100Gi" + + - variable: ingress + label: "" + group: "Ingress" + schema: + type: dict + attrs: + - variable: main + label: "Main Ingress" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable Ingress" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: ingressClassName + label: "IngressClass Name" + schema: + type: string + default: "" + - variable: labelsList + label: "Labels" + schema: + type: list + default: [] + items: + - variable: labelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: annotationsList + label: "Annotations" + schema: + type: list + default: [] + items: + - variable: annotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: hosts + label: "Hosts" + schema: + type: list + default: [] + items: + - variable: hostEntry + label: "Host" + schema: + type: dict + attrs: + - variable: host + label: "HostName" + schema: + type: string + default: "" + required: true + - variable: paths + label: "Paths" + schema: + type: list + default: [] + items: + - variable: pathEntry + label: "Host" + schema: + type: dict + attrs: + - variable: path + label: "path" + schema: + type: string + required: true + default: "/" + - variable: pathType + label: "pathType" + schema: + type: string + required: true + default: "Prefix" + - variable: tls + label: "TLS-Settings" + schema: + type: list + default: [] + items: + - variable: tlsEntry + label: "Host" + schema: + type: dict + attrs: + - variable: hosts + label: "Certificate Hosts" + schema: + type: list + default: [] + items: + - variable: host + label: "Host" + schema: + type: string + default: "" + required: true + - variable: scaleCert + label: "Select TrueNAS SCALE Certificate" + schema: + type: int + $ref: + - "definitions/certificate" + - variable: entrypoint + label: "Traefik Entrypoint" + description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" + schema: + type: string + default: "websecure" + required: true + - variable: middlewares + label: "Traefik Middlewares" + description: "Add previously created Traefik Middlewares to this Ingress" + schema: + type: list + default: [] + items: + - variable: name + label: "Name" + schema: + type: string + default: "" + required: true + + + + + - variable: ingressList + label: "Additional Ingress" + group: "Ingress" + schema: + type: list + default: [] + items: + - variable: ingressListEntry + label: "Custom Ingress" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable Ingress" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Name" + schema: + type: string + default: "" + - variable: ingressClassName + label: "IngressClass Name" + schema: + type: string + default: "" + - variable: labelsList + label: "Labels" + schema: + type: list + default: [] + items: + - variable: labelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: annotationsList + label: "Annotations" + schema: + type: list + default: [] + items: + - variable: annotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: hosts + label: "Hosts" + schema: + type: list + default: [] + items: + - variable: hostEntry + label: "Host" + schema: + type: dict + attrs: + - variable: host + label: "HostName" + schema: + type: string + default: "" + required: true + - variable: paths + label: "Paths" + schema: + type: list + default: [] + items: + - variable: pathEntry + label: "Host" + schema: + type: dict + attrs: + - variable: path + label: "path" + schema: + type: string + required: true + default: "/" + - variable: pathType + label: "pathType" + schema: + type: string + required: true + default: "Prefix" + - variable: service + label: "Linked Service" + schema: + type: dict + attrs: + - variable: name + label: "Service Name" + schema: + type: string + default: "" + - variable: port + label: "Service Port" + schema: + type: int + - variable: tls + label: "TLS-Settings" + schema: + type: list + default: [] + items: + - variable: tlsEntry + label: "Host" + schema: + type: dict + attrs: + - variable: hosts + label: "Certificate Hosts" + schema: + type: list + default: [] + items: + - variable: host + label: "Host" + schema: + type: string + default: "" + required: true + - variable: scaleCert + label: "Select TrueNAS SCALE Certificate" + schema: + type: int + $ref: + - "definitions/certificate" + - variable: entrypoint + label: "Traefik Entrypoint" + description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" + schema: + type: string + default: "websecure" + required: true + - variable: middlewares + label: "Traefik Middlewares" + description: "Add previously created Traefik Middlewares to this Ingress" + schema: + type: list + default: [] + items: + - variable: name + label: "Name" + schema: + type: string + default: "" + required: true + + + - variable: securityContext + group: "Security and Permissions" + label: "Security Context" + schema: + type: dict + attrs: + - variable: privileged + label: "Privileged mode" + schema: + type: boolean + default: false + - variable: readOnlyRootFilesystem + label: "ReadOnly Root Filesystem" + schema: + type: boolean + default: false + - variable: allowPrivilegeEscalation + label: "Allow Privilege Escalation" + schema: + type: boolean + default: true + + - variable: podSecurityContext + group: "Security and Permissions" + label: "Pod Security Context" + schema: + type: dict + attrs: + - variable: runAsNonRoot + label: "runAsNonRoot" + schema: + type: boolean + default: true + - 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 + - variable: supplementalGroups + label: "supplementalGroups" + schema: + type: list + default: [] + items: + - variable: supplementalGroupsEntry + label: "supplementalGroup" + schema: + type: int + - variable: fsGroupChangePolicy + label: "When should we take ownership?" + schema: + type: string + default: "OnRootMismatch" + enum: + - value: "OnRootMismatch" + description: "OnRootMismatch" + - value: "Always" + description: "Always" + + - variable: scaleGPU + label: "GPU Configuration" + group: "Resources and Devices" + schema: + type: dict + $ref: + - "definitions/gpuConfiguration" + attrs: [] + + - variable: deviceList + label: "Mount (USB) devices" + group: "Resources and Devices" + schema: + type: list + default: [] + items: + - variable: deviceListEntry + label: "Device" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the storage" + schema: + type: boolean + default: true + - variable: type + label: "(Advanced) Type of Storage" + description: "Sets the persistence type" + schema: + type: string + default: "hostPath" + hidden: true + - variable: readOnly + label: "readOnly" + schema: + type: boolean + default: false + - variable: hostPath + label: "Host Device Path" + description: "Path to the device on the host system" + schema: + type: path + - variable: mountPath + label: "Container Device Path" + description: "Path inside the container the device is mounted" + schema: + type: string + default: "/dev/ttyACM0" + + - variable: resources + group: "Resources and Devices" + label: "Resource Limits" + schema: + type: dict + attrs: + - variable: limits + label: "Advanced Limit Resource Consumption" + schema: + type: dict + attrs: + - variable: cpu + label: "CPU" + schema: + type: string + default: "2000m" + - variable: memory + label: "Memory RAM" + schema: + type: string + default: "2Gi" + - variable: requests + label: "Advanced Request minimum resources required" + schema: + type: dict + attrs: + - variable: cpu + label: "CPU" + schema: + type: string + default: "10m" + - variable: memory + label: "Memory RAM" + schema: + type: string + default: "50Mi" + + - variable: autoscaling + group: "Resources and Devices" + label: "Horizontal Pod Autoscaler" + schema: + type: dict + attrs: + - variable: enabled + label: "enabled" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: target + label: "Target" + description: "deployment name, defaults to main deployment" + schema: + type: string + default: "" + - variable: minReplicas + label: "Minimum Replicas" + schema: + type: int + default: 1 + - variable: maxReplicas + label: "Maximum Replicas" + schema: + type: int + default: 5 + - variable: targetCPUUtilizationPercentage + label: "Target CPU Utilization Percentage" + schema: + type: int + default: 80 + - variable: targetMemoryUtilizationPercentage + label: "Target Memory Utilization Percentage" + schema: + type: int + default: 80 diff --git a/incubator/custom-app/0.2.20/templates/common.yaml b/incubator/custom-app/0.2.20/templates/common.yaml new file mode 100644 index 0000000000..a6613c2ce2 --- /dev/null +++ b/incubator/custom-app/0.2.20/templates/common.yaml @@ -0,0 +1 @@ +{{ include "common.all" . }} diff --git a/incubator/custom-app/0.2.20/test_values.yaml b/incubator/custom-app/0.2.20/test_values.yaml new file mode 100644 index 0000000000..d114cd44b9 --- /dev/null +++ b/incubator/custom-app/0.2.20/test_values.yaml @@ -0,0 +1,43 @@ +# Default values for Jackett. + +image: + repository: ghcr.io/k8s-at-home/jackett + pullPolicy: IfNotPresent + tag: v0.18.686 + +strategy: + type: Recreate + + +service: + main: + enabled: true + ports: + main: + port: 9117 + portsList: + - name: "extraport" + enabled: true + port: 9118 + +serviceList: + - name: extraservice + enabled: true + portsList: + - name: "extrasvcport" + enabled: true + port: 9119 + +env: {} + # TZ: UTC + # PUID: 1001 + # PGID: 1001 + + +persistence: + config: + enabled: true + mountPath: "/config" + type: pvc + accessMode: ReadWriteOnce + size: "100Gi" diff --git a/incubator/custom-app/0.2.20/values.yaml b/incubator/custom-app/0.2.20/values.yaml new file mode 100644 index 0000000000..e69de29bb2