diff --git a/charts/incubator/oscam/SCALE/questions.yaml b/charts/incubator/oscam/SCALE/questions.yaml deleted file mode 100644 index 189f03701dc..00000000000 --- a/charts/incubator/oscam/SCALE/questions.yaml +++ /dev/null @@ -1,590 +0,0 @@ -# Include{groups} -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: 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" -# Include{controllerExpert} - - - 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" - - variable: PUID - label: "PUID" - description: "Sets the userID inside the container" - schema: - type: string - default: "568" - - variable: PGID - label: "PGID" - description: "Sets the GroupID inside the container" - schema: - type: string - default: "20" - - variable: UMASK - label: "UMASK" - description: "Sets the UMASK env var for LinuxServer.io (compatible) containers" - schema: - type: string - default: "002" -# Include{containerConfig} - - - 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 - default: 8888 - required: true - - variable: port - label: "Container Port" - schema: - type: int - default: 8888 - 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 - default: 36103 - min: 9000 - max: 65535 - -# Include{serviceList} - - - variable: persistence - label: "Integrated Persistent Storage" - group: "Storage and Persistence" - schema: - type: dict - attrs: - - variable: config - label: "App Config Storage" - description: "Stores the Application Configuration." - 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: "pvc" - 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: 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 - default: "/config" - hidden: true - - 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 PV" - 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" -# Include{persistenceList} - - - 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: 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 - -# Include{ingressList} - - 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: runAsNonRoot - label: "runAsNonRoot" - schema: - type: boolean - default: false - - - variable: resources - group: "Resources and Devices" - label: "" - schema: - type: dict - attrs: - - variable: limits - label: "Advanced Limit Resource Consumption" - schema: - type: dict - attrs: - - variable: cpu - label: "CPU" - schema: - type: string - default: "2000m" - valid_chars: '^([0-9]+)(\.[0-9]?|m?)$' - - variable: memory - label: "Memory RAM" - schema: - type: string - default: "2Gi" - valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$' - - variable: requests - label: "Advanced Request minimum resources required" - schema: - type: dict - attrs: - - variable: cpu - label: "CPU" - schema: - type: string - default: "10m" - valid_chars: '^([0-9]+)(\.[0-9]?|m?)$' - - variable: memory - label: "Memory RAM" - schema: - type: string - default: "50Mi" - valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$' - - - 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 device" - 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 - default: "/dev/ttyUSB0" - - variable: mountPath - label: "Container Device Path" - description: "Path inside the container the device is mounted" - schema: - type: string - default: "/dev/ttyUSB0" - - - variable: autoscaling - group: "Resources and Devices" - label: "(Advanced) 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 - -# Include{addons} diff --git a/charts/incubator/sogo/Chart.yaml b/charts/incubator/sogo/Chart.yaml index 6a8fa8051a1..eff7b79a9b1 100644 --- a/charts/incubator/sogo/Chart.yaml +++ b/charts/incubator/sogo/Chart.yaml @@ -3,11 +3,11 @@ appVersion: 5.2.0 dependencies: - name: common repository: https://truecharts.org/ - version: 7.0.1 + version: 7.0.12 - condition: postgresql.enabled name: postgresql repository: https://truecharts.org/ - version: 1.6.6 + version: 2.2.0 - condition: memcached.enabled name: memcached repository: https://charts.bitnami.com/bitnami @@ -27,4 +27,4 @@ name: sogo sources: - https://www.sogo.nu/ type: application -version: 2.0.3 +version: 3.0.1 diff --git a/charts/incubator/sogo/SCALE/questions.yaml b/charts/incubator/sogo/SCALE/questions.yaml index 85b7a3f412b..b0ea17a3740 100644 --- a/charts/incubator/sogo/SCALE/questions.yaml +++ b/charts/incubator/sogo/SCALE/questions.yaml @@ -581,6 +581,75 @@ questions: default: 36102 required: true + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -1011,7 +1080,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -1031,6 +1100,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/incubator/testbed/.helmignore b/charts/incubator/testbed/.helmignore deleted file mode 100644 index e559de0a012..00000000000 --- a/charts/incubator/testbed/.helmignore +++ /dev/null @@ -1,24 +0,0 @@ -# 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 diff --git a/charts/incubator/testbed/CHANGELOG.md b/charts/incubator/testbed/CHANGELOG.md deleted file mode 100644 index f593818d1b1..00000000000 --- a/charts/incubator/testbed/CHANGELOG.md +++ /dev/null @@ -1,130 +0,0 @@ -# Changelog
- - - -### [testbed-7.0.15](https://github.com/truecharts/apps/compare/testbed-7.0.14...testbed-7.0.15) (2021-09-13) - - - - -### [testbed-7.0.14](https://github.com/truecharts/apps/compare/testbed-7.0.13...testbed-7.0.14) (2021-09-13) - -#### Fix - -* make sure questions.yaml includes are actually included - - - - -### [testbed-7.0.13](https://github.com/truecharts/apps/compare/testbed-7.0.12...testbed-7.0.13) (2021-09-13) - - - - -### [testbed-7.0.12](https://github.com/truecharts/apps/compare/testbed-7.0.11...testbed-7.0.12) (2021-09-13) - - - - -### [testbed-7.0.11](https://github.com/truecharts/apps/compare/testbed-7.0.10...testbed-7.0.11) (2021-09-12) - - - - -### [testbed-7.0.10](https://github.com/truecharts/apps/compare/testbed-7.0.9...testbed-7.0.10) (2021-09-12) - -#### Fix - -* completely remove unused volumes and correctly enable used volumes for VPN - - - - -### [testbed-7.0.9](https://github.com/truecharts/apps/compare/testbed-7.0.8...testbed-7.0.9) (2021-09-12) - - - - -### [testbed-7.0.8](https://github.com/truecharts/apps/compare/testbed-7.0.7...testbed-7.0.8) (2021-09-12) - - - - -### [testbed-7.0.7](https://github.com/truecharts/apps/compare/testbed-7.0.6...testbed-7.0.7) (2021-09-12) - - - - -### [testbed-7.0.6](https://github.com/truecharts/apps/compare/testbed-7.0.5...testbed-7.0.6) (2021-09-12) - - - - -### [testbed-7.0.5](https://github.com/truecharts/apps/compare/testbed-7.0.4...testbed-7.0.5) (2021-09-12) - - - - -### [testbed-7.0.4](https://github.com/truecharts/apps/compare/testbed-7.0.3...testbed-7.0.4) (2021-09-12) - - - - -### [testbed-7.0.3](https://github.com/truecharts/apps/compare/testbed-7.0.2...testbed-7.0.3) (2021-09-12) - - - - -### [testbed-7.0.2](https://github.com/truecharts/apps/compare/testbed-7.0.1...testbed-7.0.2) (2021-09-12) - - - - -### [testbed-7.0.1](https://github.com/truecharts/apps/compare/testbed-7.0.0...testbed-7.0.1) (2021-09-12) - - - - -### [testbed-7.0.0](https://github.com/truecharts/apps/compare/testbed-6.11.22...testbed-7.0.0) (2021-09-12) - - - - -### [testbed-6.11.22](https://github.com/truecharts/apps/compare/testbed-6.11.21...testbed-6.11.22) (2021-09-12) - - - - -### testbed-6.11.21 (2021-09-12) - - - - -### [jackett-6.11.21](https://github.com/truecharts/apps/compare/jackett-6.11.20...jackett-6.11.21) (2021-09-12) - - - - -### [jackett-6.11.20](https://github.com/truecharts/apps/compare/jackett-6.11.19...jackett-6.11.20) (2021-09-12) - -#### Chore - -* update non-major ([#962](https://github.com/truecharts/apps/issues/962)) - -#### Feat - -* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963)) -* Add regex validation to resources CPU and RAM for all apps ([#935](https://github.com/truecharts/apps/issues/935)) -* Pre-commit and tag-appversion syncing ([#926](https://github.com/truecharts/apps/issues/926)) - -#### Fix - -* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956)) -* move runAsNonRoot to container securityContext to allow root sidecarts ([#954](https://github.com/truecharts/apps/issues/954)) - - -## [jackett-6.11.19](https://github.com/truecharts/apps/compare/jackett-6.11.18...jackett-6.11.19) (2021-09-08) - -### Fix - -* repair Hyperion and some misplaced GUI elements ([#922](https://github.com/truecharts/apps/issues/922)) diff --git a/charts/incubator/testbed/CONFIG.md b/charts/incubator/testbed/CONFIG.md deleted file mode 100644 index fc9b2fa2d5f..00000000000 --- a/charts/incubator/testbed/CONFIG.md +++ /dev/null @@ -1,8 +0,0 @@ -# Configuration Options - -##### Connecting to other apps -If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our "Linking Apps Internally" quick-start guide: -https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/ - -##### Available config options -In the future this page is going to contain an automated list of options available in the installation/edit UI. diff --git a/charts/incubator/testbed/Chart.yaml b/charts/incubator/testbed/Chart.yaml deleted file mode 100644 index 3f3f3f15c17..00000000000 --- a/charts/incubator/testbed/Chart.yaml +++ /dev/null @@ -1,27 +0,0 @@ -apiVersion: v2 -appVersion: 0.18.729 -dependencies: -- name: common - repository: https://truecharts.org/ - version: 7.0.12 -deprecated: false -description: A internal TrueCharts testbed -home: https://github.com/truecharts/apps/tree/master/charts/stable/jackett -icon: https://truecharts.org/_static/img/jackett-icon.png -keywords: -- jackett -- torrent -- usenet -kubeVersion: '>=1.16.0-0' -maintainers: -- email: info@truecharts.org - name: TrueCharts - url: truecharts.org -- email: kjeld@schouten-lebbing.nl - name: Ornias1993 - url: truecharts.org -name: testbed -sources: -- https://github.com/Jackett/Jackett -type: application -version: 7.0.15 diff --git a/charts/incubator/testbed/README.md b/charts/incubator/testbed/README.md deleted file mode 100644 index 6fa39721f8d..00000000000 --- a/charts/incubator/testbed/README.md +++ /dev/null @@ -1,37 +0,0 @@ -# Introduction - -A internal TrueCharts testbed - -TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation. -**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)** - -## Source Code - -* - -## Requirements - -Kubernetes: `>=1.16.0-0` - -## Dependencies - -| Repository | Name | Version | -|------------|------|---------| -| https://truecharts.org/ | common | 7.0.12 | - -## Installing the Chart - -To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/). - -## Uninstalling the Chart - -To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/). - -## Support - -- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) first. -- See the [Wiki](https://truecharts.org) -- Check our [Discord](https://discord.gg/tVsPTHWTtr) -- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) ---- -All Rights Reserved - The TrueCharts Project diff --git a/charts/incubator/testbed/SCALE/CHANGELOG.md b/charts/incubator/testbed/SCALE/CHANGELOG.md deleted file mode 100644 index 80d71a00b58..00000000000 --- a/charts/incubator/testbed/SCALE/CHANGELOG.md +++ /dev/null @@ -1,3 +0,0 @@ - - -### [testbed-7.0.15](https://github.com/truecharts/apps/compare/testbed-7.0.14...testbed-7.0.15) (2021-09-13) diff --git a/charts/incubator/testbed/SCALE/item.yaml b/charts/incubator/testbed/SCALE/item.yaml deleted file mode 100644 index 8d747307488..00000000000 --- a/charts/incubator/testbed/SCALE/item.yaml +++ /dev/null @@ -1,3 +0,0 @@ -categories: - - media -icon_url: https://truecharts.org/_static/img/jackett-icon.png diff --git a/charts/incubator/testbed/SCALE/ix_values.yaml b/charts/incubator/testbed/SCALE/ix_values.yaml deleted file mode 100644 index ea4b4fa3dbd..00000000000 --- a/charts/incubator/testbed/SCALE/ix_values.yaml +++ /dev/null @@ -1,25 +0,0 @@ -## -# 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. -## - -image: - repository: ghcr.io/k8s-at-home/jackett - pullPolicy: IfNotPresent - tag: v0.18.746@sha256:4caa9f57a10c07cca49935b6e039aa4c15eb20f28add18983bb62b028e245edd - -probes: - liveness: - path: "/UI/Login" - - readiness: - path: "/UI/Login" - - startup: - path: "/UI/Login" - -## -# 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/charts/incubator/testbed/app-readme.md b/charts/incubator/testbed/app-readme.md deleted file mode 100644 index c88d3b71f98..00000000000 --- a/charts/incubator/testbed/app-readme.md +++ /dev/null @@ -1,3 +0,0 @@ -A internal TrueCharts testbed - -This App is supplied by TrueCharts, for more information please visit https://truecharts.org diff --git a/charts/incubator/testbed/helm-values.md b/charts/incubator/testbed/helm-values.md deleted file mode 100644 index fd33bab4e76..00000000000 --- a/charts/incubator/testbed/helm-values.md +++ /dev/null @@ -1,38 +0,0 @@ -# Default Helm-Values - -TrueCharts is primarily build to supply TrueNAS SCALE Apps. -However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file. - -Most of our Apps also consume our "common" Helm Chart. -If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart. -You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document. - -## 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.729@sha256:7b814d426af9f3329edeb17cedab01217f7eee638f12e32f91c56d27aba48b6c"` | | -| 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"` | | -| podSecurityContext.fsGroup | int | `568` | | -| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | | -| podSecurityContext.runAsGroup | int | `568` | | -| podSecurityContext.runAsUser | int | `568` | | -| podSecurityContext.supplementalGroups | list | `[]` | | -| probes.liveness.path | string | `"/UI/Login"` | | -| probes.readiness.path | string | `"/UI/Login"` | | -| probes.startup.path | string | `"/UI/Login"` | | -| securityContext.allowPrivilegeEscalation | bool | `true` | | -| securityContext.privileged | bool | `false` | | -| securityContext.readOnlyRootFilesystem | bool | `false` | | -| securityContext.runAsNonRoot | bool | `true` | | -| service.main.enabled | bool | `true` | | -| service.main.ports.main.port | int | `9117` | | - -All Rights Reserved - The TrueCharts Project diff --git a/charts/incubator/testbed/templates/common.yaml b/charts/incubator/testbed/templates/common.yaml deleted file mode 100644 index a6613c2ce21..00000000000 --- a/charts/incubator/testbed/templates/common.yaml +++ /dev/null @@ -1 +0,0 @@ -{{ include "common.all" . }} diff --git a/charts/incubator/testbed/values.yaml b/charts/incubator/testbed/values.yaml deleted file mode 100644 index 8cf4f9d2794..00000000000 --- a/charts/incubator/testbed/values.yaml +++ /dev/null @@ -1,50 +0,0 @@ -# Default values for Jackett. - -image: - repository: ghcr.io/k8s-at-home/jackett - pullPolicy: IfNotPresent - tag: v0.18.746@sha256:4caa9f57a10c07cca49935b6e039aa4c15eb20f28add18983bb62b028e245edd - -securityContext: - privileged: false - readOnlyRootFilesystem: false - allowPrivilegeEscalation: true - runAsNonRoot: true - -podSecurityContext: - runAsUser: 568 - runAsGroup: 568 - fsGroup: 568 - supplementalGroups: [] - fsGroupChangePolicy: "OnRootMismatch" - -service: - main: - enabled: true - ports: - main: - port: 9117 - -probes: - liveness: - path: "/UI/Login" - - readiness: - path: "/UI/Login" - - startup: - path: "/UI/Login" - -env: {} - # TZ: UTC - # PUID: 1001 - # PGID: 1001 - - -persistence: - config: - enabled: true - mountPath: "/config" - type: pvc - accessMode: ReadWriteOnce - size: "100Gi" diff --git a/charts/stable/airsonic/Chart.yaml b/charts/stable/airsonic/Chart.yaml index f01e16a7f97..d0251ce1d77 100644 --- a/charts/stable/airsonic/Chart.yaml +++ b/charts/stable/airsonic/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 10.6.2 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 description: Airsonic is a Free and Open Source community driven media server home: https://github.com/truecharts/apps/tree/master/charts/incubator/airsonic icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/airsonic-logo.png @@ -19,4 +19,4 @@ sources: - https://github.com/airsonic/airsonic - https://github.com/linuxserver/docker-airsonic - https://github.com/k8s-at-home/charts/tree/master/charts/airsonic -version: 1.11.15 +version: 2.0.1 diff --git a/charts/stable/airsonic/SCALE/questions.yaml b/charts/stable/airsonic/SCALE/questions.yaml index 09c8622d2d9..bcb151040cf 100644 --- a/charts/stable/airsonic/SCALE/questions.yaml +++ b/charts/stable/airsonic/SCALE/questions.yaml @@ -99,12 +99,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: max: 65535 default: 36050 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -420,7 +484,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -440,6 +504,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/appdaemon/Chart.yaml b/charts/stable/appdaemon/Chart.yaml index d3b836771d2..958872df6c0 100644 --- a/charts/stable/appdaemon/Chart.yaml +++ b/charts/stable/appdaemon/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: v4.0.8 +appVersion: 4.1.0 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: AppDaemon is a loosely coupled, multithreaded, sandboxed python execution environment for writing automation apps for Home Assistant home automation software. @@ -26,4 +26,4 @@ name: appdaemon sources: - https://github.com/AppDaemon/appdaemon type: application -version: 3.11.15 +version: 4.0.1 diff --git a/charts/stable/appdaemon/SCALE/questions.yaml b/charts/stable/appdaemon/SCALE/questions.yaml index 69c6203c623..358a3d3f134 100644 --- a/charts/stable/appdaemon/SCALE/questions.yaml +++ b/charts/stable/appdaemon/SCALE/questions.yaml @@ -131,12 +131,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -242,6 +237,75 @@ questions: max: 65535 default: 36051 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence diff --git a/charts/stable/authelia/Chart.yaml b/charts/stable/authelia/Chart.yaml index 343c4c229b9..a5357c5b3ff 100644 --- a/charts/stable/authelia/Chart.yaml +++ b/charts/stable/authelia/Chart.yaml @@ -1,17 +1,17 @@ apiVersion: v2 -appVersion: "4.30.4" +appVersion: 4.30.4 dependencies: - name: common repository: https://truecharts.org/ - version: 7.0.1 + version: 7.0.12 - condition: postgresql.enabled name: postgresql repository: https://truecharts.org/ - version: 2.0.0 + version: 2.2.0 - condition: redis.enabled name: redis repository: https://charts.bitnami.com/bitnami - version: 15.3.1 + version: 15.3.2 deprecated: false description: Authelia is a Single Sign-On Multi-Factor portal for web apps home: https://github.com/truecharts/apps/tree/master/charts/stable/authelia @@ -38,4 +38,4 @@ sources: - https://github.com/authelia/chartrepo - https://github.com/authelia/authelia type: application -version: 2.0.2 +version: 3.0.1 diff --git a/charts/stable/authelia/SCALE/questions.yaml b/charts/stable/authelia/SCALE/questions.yaml index 179b09bbf60..c7d574ef0dd 100644 --- a/charts/stable/authelia/SCALE/questions.yaml +++ b/charts/stable/authelia/SCALE/questions.yaml @@ -793,12 +793,7 @@ questions: default: "" required: true - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -905,6 +900,75 @@ questions: default: 36095 required: true + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -1115,7 +1179,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -1135,6 +1199,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/bazarr/Chart.yaml b/charts/stable/bazarr/Chart.yaml index 7187cb2e369..6ff29f1c30f 100644 --- a/charts/stable/bazarr/Chart.yaml +++ b/charts/stable/bazarr/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.9.9 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Bazarr is a companion application to Bazarr and Radarr. It manages and downloads subtitles based on your requirements @@ -29,4 +29,4 @@ sources: - https://github.com/Bazarr/Bazarr - https://hub.docker.com/r/linuxserver/bazarr type: application -version: 6.11.16 +version: 7.0.1 diff --git a/charts/stable/bazarr/SCALE/questions.yaml b/charts/stable/bazarr/SCALE/questions.yaml index 72dba711ff0..8de0e4bb536 100644 --- a/charts/stable/bazarr/SCALE/questions.yaml +++ b/charts/stable/bazarr/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36025 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -407,7 +471,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -427,6 +491,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/booksonic-air/Chart.yaml b/charts/stable/booksonic-air/Chart.yaml index 7a22182c1c4..6e7f79c9600 100644 --- a/charts/stable/booksonic-air/Chart.yaml +++ b/charts/stable/booksonic-air/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2009.1.0 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Booksonic is a platform for accessing the audibooks you own wherever you are home: https://github.com/truechartsapps/tree/master/charts/incubator/booksonic-air @@ -20,4 +20,4 @@ name: booksonic-air sources: - https://github.com/popeen/Booksonic-Air - https://hub.docker.com/r/linuxserver/booksonic-air -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/booksonic-air/SCALE/questions.yaml b/charts/stable/booksonic-air/SCALE/questions.yaml index 0baf7069a91..e6d7a24a0a3 100644 --- a/charts/stable/booksonic-air/SCALE/questions.yaml +++ b/charts/stable/booksonic-air/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36052 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -418,7 +482,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -438,6 +502,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/calibre-web/Chart.yaml b/charts/stable/calibre-web/Chart.yaml index 21294827cd0..3182a43bbee 100644 --- a/charts/stable/calibre-web/Chart.yaml +++ b/charts/stable/calibre-web/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.6.12 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Calibre-Web is a web app providing a clean interface for browsing, reading and downloading eBooks using an existing Calibre database. @@ -23,4 +23,4 @@ sources: - https://hub.docker.com/r/linuxserver/calibre-web/ - https://github.com/janeczku/calibre-web type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/calibre-web/SCALE/questions.yaml b/charts/stable/calibre-web/SCALE/questions.yaml index 932c89ab84b..b1476f68538 100644 --- a/charts/stable/calibre-web/SCALE/questions.yaml +++ b/charts/stable/calibre-web/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36015 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -419,7 +483,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -439,6 +503,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/calibre/Chart.yaml b/charts/stable/calibre/Chart.yaml index c70a60dedae..9f9c6089805 100644 --- a/charts/stable/calibre/Chart.yaml +++ b/charts/stable/calibre/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 5.26.0 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Calibre is a powerful and easy to use e-book manager. home: https://github.com/truechartsapps/tree/master/charts/incubator/calibre icon: https://github.com/kovidgoyal/calibre/raw/master/resources/images/lt.png @@ -18,4 +18,4 @@ name: calibre sources: - https://hub.docker.com/r/linuxserver/calibre/ - https://github.com/kovidgoyal/calibre/ -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/calibre/SCALE/questions.yaml b/charts/stable/calibre/SCALE/questions.yaml index e27b55589b1..fc7c787a88e 100644 --- a/charts/stable/calibre/SCALE/questions.yaml +++ b/charts/stable/calibre/SCALE/questions.yaml @@ -116,12 +116,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -325,6 +320,75 @@ questions: default: 36054 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -533,7 +597,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -553,6 +617,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/collabora-online/Chart.yaml b/charts/stable/collabora-online/Chart.yaml index 4d5a5f755d3..3cef6fd5c9c 100644 --- a/charts/stable/collabora-online/Chart.yaml +++ b/charts/stable/collabora-online/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 6.4.10.10 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: "Collabora Online Development Edition \u2013 an awesome, Online Office\ \ suite image suitable for home use." @@ -25,4 +25,4 @@ sources: - https://sdk.collaboraonline.com/contents.html - https://github.com/CollaboraOnline/online/tree/master/kubernetes/helm type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/collabora-online/SCALE/questions.yaml b/charts/stable/collabora-online/SCALE/questions.yaml index a1058ae7142..03598d1b7d1 100644 --- a/charts/stable/collabora-online/SCALE/questions.yaml +++ b/charts/stable/collabora-online/SCALE/questions.yaml @@ -132,12 +132,7 @@ questions: valid_chars: '^[a-z]{1,}\\{1}\.{1}[a-z]{1,}\\{1}\.{1}[a-z]{1,}$' # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -244,6 +239,75 @@ questions: default: 36004 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} # Include{persistenceList} @@ -336,7 +400,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -356,6 +420,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/custom-app/Chart.yaml b/charts/stable/custom-app/Chart.yaml index da40924d9e7..b2f21acc591 100644 --- a/charts/stable/custom-app/Chart.yaml +++ b/charts/stable/custom-app/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: 0.18.729 +appVersion: 0.18.746 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Advanced tool to create your own TrueCharts-based App home: https://github.com/truecharts/apps/tree/master/charts/stable/custom-app @@ -19,4 +19,4 @@ name: custom-app sources: - https://github.com/truecharts/apps/tree/master/charts/stable/custom-app type: application -version: 0.2.22 +version: 1.0.1 diff --git a/charts/stable/custom-app/SCALE/questions.yaml b/charts/stable/custom-app/SCALE/questions.yaml index 808e37b51a0..d3d194eced1 100644 --- a/charts/stable/custom-app/SCALE/questions.yaml +++ b/charts/stable/custom-app/SCALE/questions.yaml @@ -113,12 +113,7 @@ questions: - "definitions/timezone" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -273,6 +268,75 @@ questions: min: 9000 max: 65535 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} # Include{persistenceList} @@ -295,49 +359,6 @@ questions: 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: @@ -408,7 +429,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -428,6 +449,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + diff --git a/charts/stable/deconz/Chart.yaml b/charts/stable/deconz/Chart.yaml index 428b10e22cc..48d8e8af649 100644 --- a/charts/stable/deconz/Chart.yaml +++ b/charts/stable/deconz/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2.12.06 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: deCONZ is an easy to use control software, with which you can set up and control Zigbee networks of any size without further programming effort. home: https://github.com/truechartsapps/tree/master/charts/incubator/deconz @@ -22,4 +22,4 @@ name: deconz sources: - https://github.com/dresden-elektronik/deconz-rest-plugin - https://github.com/marthoc/docker-deconz -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/deconz/SCALE/questions.yaml b/charts/stable/deconz/SCALE/questions.yaml index a0c36ac3c49..e737c0a5d4e 100644 --- a/charts/stable/deconz/SCALE/questions.yaml +++ b/charts/stable/deconz/SCALE/questions.yaml @@ -123,12 +123,7 @@ questions: default: "" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -429,6 +424,75 @@ questions: default: 36057 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -637,7 +701,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -657,6 +721,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/deepstack-cpu/Chart.yaml b/charts/stable/deepstack-cpu/Chart.yaml index 2010a06e0ec..dd04716f03c 100644 --- a/charts/stable/deepstack-cpu/Chart.yaml +++ b/charts/stable/deepstack-cpu/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: cpu-2021.0 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: DeepStack AI provides AI features including Face Recognition, Object Detection, Scene Recognition and custom AI Models @@ -25,4 +25,4 @@ sources: - https://hub.docker.com/r/deepquestai/deepstack - https://www.deepstack.cc/ type: application -version: 4.11.15 +version: 5.0.1 diff --git a/charts/stable/deepstack-cpu/SCALE/questions.yaml b/charts/stable/deepstack-cpu/SCALE/questions.yaml index 99fc3a3fa5f..764a4d9e447 100644 --- a/charts/stable/deepstack-cpu/SCALE/questions.yaml +++ b/charts/stable/deepstack-cpu/SCALE/questions.yaml @@ -153,12 +153,7 @@ questions: required: true # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -265,6 +260,75 @@ questions: default: 36005 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -473,7 +537,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -493,6 +557,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/deluge/Chart.yaml b/charts/stable/deluge/Chart.yaml index f4c6da4e760..914ab710b74 100644 --- a/charts/stable/deluge/Chart.yaml +++ b/charts/stable/deluge/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2.0.3-2201 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Deluge App for TrueNAS SCALE home: https://github.com/truecharts/apps/tree/master/charts/incubator/deluge @@ -21,4 +21,4 @@ name: deluge sources: - https://github.com/deluge-torrent/deluge type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/deluge/SCALE/questions.yaml b/charts/stable/deluge/SCALE/questions.yaml index 679394c3659..83290fd4fee 100644 --- a/charts/stable/deluge/SCALE/questions.yaml +++ b/charts/stable/deluge/SCALE/questions.yaml @@ -97,15 +97,9 @@ questions: schema: type: string default: "002" - ## Configure Enviroment Variables + # Include{containerConfig} - ## Enable Host Network - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Network" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" label: "Configure Service(s)" @@ -355,6 +349,75 @@ questions: max: 65535 default: 51413 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -564,7 +627,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -584,6 +647,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/dizquetv/Chart.yaml b/charts/stable/dizquetv/Chart.yaml index fdb0f3ee313..0752d732845 100644 --- a/charts/stable/dizquetv/Chart.yaml +++ b/charts/stable/dizquetv/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.4.3 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Create live TV channel streams from media on your Plex servers. home: https://github.com/truechartsapps/tree/master/charts/incubator/dizquetv icon: https://github.com/vexorian/dizquetv/raw/main/resources/dizquetv.png?raw=true @@ -19,4 +19,4 @@ name: dizquetv sources: - https://github.com/vexorian/dizquetv - https://hub.docker.com/r/vexorian/dizquetv -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/dizquetv/SCALE/questions.yaml b/charts/stable/dizquetv/SCALE/questions.yaml index 0f3811aa04a..36be90bd736 100644 --- a/charts/stable/dizquetv/SCALE/questions.yaml +++ b/charts/stable/dizquetv/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36058 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -418,7 +482,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -438,6 +502,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/duplicati/Chart.yaml b/charts/stable/duplicati/Chart.yaml index 37211c8af0a..60a7833dd30 100644 --- a/charts/stable/duplicati/Chart.yaml +++ b/charts/stable/duplicati/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: latest dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Store securely encrypted backups on cloud storage services! home: https://github.com/truechartsapps/tree/master/charts/incubator/duplicati icon: https://avatars.githubusercontent.com/u/8270231?s=200&v=4 @@ -18,4 +18,4 @@ name: duplicati sources: - https://hub.docker.com/r/linuxserver/duplicati/ - https://github.com/duplicati/duplicati -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/duplicati/SCALE/questions.yaml b/charts/stable/duplicati/SCALE/questions.yaml index 252b5ff02a0..92a88c2c7a4 100644 --- a/charts/stable/duplicati/SCALE/questions.yaml +++ b/charts/stable/duplicati/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36059 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -418,7 +482,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -438,6 +502,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/emby/Chart.yaml b/charts/stable/emby/Chart.yaml index a8ff4da5096..55fa2a7e186 100644 --- a/charts/stable/emby/Chart.yaml +++ b/charts/stable/emby/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 4.6.4.0 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Emby Server is a home media server home: https://github.com/truecharts/apps/master/stable/emby @@ -25,4 +25,4 @@ sources: - https://hub.docker.com/r/linuxserver/emby - https://github.com/linuxserver/docker-emby.git type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/emby/SCALE/questions.yaml b/charts/stable/emby/SCALE/questions.yaml index 5dedb1d031e..f466b552768 100644 --- a/charts/stable/emby/SCALE/questions.yaml +++ b/charts/stable/emby/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36006 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/esphome/Chart.yaml b/charts/stable/esphome/Chart.yaml index c79eacef107..00f58ea9b7b 100644 --- a/charts/stable/esphome/Chart.yaml +++ b/charts/stable/esphome/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2021.8.2 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: ESPHome is a system to control your ESP8266/ESP32 by simple yet powerful configuration files and control them remotely through Home Automation systems. @@ -24,4 +24,4 @@ sources: - https://github.com/esphome/esphome - https://hub.docker.com/u/esphome type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/esphome/SCALE/questions.yaml b/charts/stable/esphome/SCALE/questions.yaml index e7ce26d5a0c..3a33406c1db 100644 --- a/charts/stable/esphome/SCALE/questions.yaml +++ b/charts/stable/esphome/SCALE/questions.yaml @@ -80,12 +80,7 @@ questions: - "definitions/timezone" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -192,6 +187,75 @@ questions: default: 36007 # Configure app volumes + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -510,7 +574,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -530,6 +594,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/external-service/Chart.yaml b/charts/stable/external-service/Chart.yaml index 370e8bd1d56..a802e368565 100644 --- a/charts/stable/external-service/Chart.yaml +++ b/charts/stable/external-service/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.66.6 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Allow external services to be used like Apps. home: https://github.com/truecharts/apps/tree/master/charts/stable/external-service @@ -23,4 +23,4 @@ name: external-service sources: - https://github.com/truecharts/apps/tree/master/charts/stable/external-service type: application -version: 1.4.15 +version: 2.0.1 diff --git a/charts/stable/external-service/SCALE/questions.yaml b/charts/stable/external-service/SCALE/questions.yaml index 4117c611dda..4f2adab5a45 100644 --- a/charts/stable/external-service/SCALE/questions.yaml +++ b/charts/stable/external-service/SCALE/questions.yaml @@ -204,7 +204,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -224,174 +224,55 @@ questions: 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" + - variable: expert + label: "Show Expert Configuration Options" 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" + default: false + show_subquestions_if: true + subquestions: + - variable: ingressClassName + label: "IngressClass Name" schema: type: string default: "" - required: true + - 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 + +# Include{ingressList} diff --git a/charts/stable/fireflyiii/Chart.yaml b/charts/stable/fireflyiii/Chart.yaml index b684c88cd90..d7ce2accc56 100644 --- a/charts/stable/fireflyiii/Chart.yaml +++ b/charts/stable/fireflyiii/Chart.yaml @@ -3,11 +3,11 @@ appVersion: 5.5.12 dependencies: - name: common repository: https://truecharts.org/ - version: 7.0.1 + version: 7.0.12 - condition: postgresql.enabled name: postgresql repository: https://truecharts.org/ - version: 2.0.0 + version: 2.2.0 deprecated: false description: A free and open source personal finance manager home: https://github.com/firefly-iii/firefly-iii/ @@ -27,4 +27,4 @@ name: fireflyiii sources: - https://github.com/firefly-iii/firefly-iii/ type: application -version: 7.0.2 +version: 8.0.1 diff --git a/charts/stable/fireflyiii/SCALE/questions.yaml b/charts/stable/fireflyiii/SCALE/questions.yaml index d406fc581c1..e28d89f901c 100644 --- a/charts/stable/fireflyiii/SCALE/questions.yaml +++ b/charts/stable/fireflyiii/SCALE/questions.yaml @@ -97,12 +97,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -208,6 +203,75 @@ questions: max: 65535 default: 36048 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -418,7 +482,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -438,6 +502,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/flaresolverr/Chart.yaml b/charts/stable/flaresolverr/Chart.yaml index 449281def7a..d375b7c9aa1 100644 --- a/charts/stable/flaresolverr/Chart.yaml +++ b/charts/stable/flaresolverr/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.2.9 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: FlareSolverr is a proxy server to bypass Cloudflare protection home: https://github.com/truechartsapps/tree/master/charts/incubator/flaresolverr icon: https://raw.githubusercontent.com/FlareSolverr/FlareSolverr/master/resources/flaresolverr_logo.svg @@ -19,4 +19,4 @@ name: flaresolverr sources: - https://github.com/FlareSolverr/FlareSolverr - https://hub.docker.com/r/flaresolverr/flaresolverr -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/flaresolverr/SCALE/questions.yaml b/charts/stable/flaresolverr/SCALE/questions.yaml index 7083e0ad3b7..5b228c18f27 100644 --- a/charts/stable/flaresolverr/SCALE/questions.yaml +++ b/charts/stable/flaresolverr/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36060 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/flood/Chart.yaml b/charts/stable/flood/Chart.yaml index e9ae4acc025..4aadc172b4f 100644 --- a/charts/stable/flood/Chart.yaml +++ b/charts/stable/flood/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 4.6.1 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Flood is a monitoring service for various torrent clients home: https://github.com/truechartsapps/tree/master/charts/incubator/flood icon: https://raw.githubusercontent.com/jesec/flood/master/flood.svg @@ -21,4 +21,4 @@ name: flood sources: - https://github.com/jesec/flood - https://hub.docker.com/r/jesec/flood -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/flood/SCALE/questions.yaml b/charts/stable/flood/SCALE/questions.yaml index 0016bc61afc..d6f26550089 100644 --- a/charts/stable/flood/SCALE/questions.yaml +++ b/charts/stable/flood/SCALE/questions.yaml @@ -93,12 +93,7 @@ questions: # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -205,6 +200,75 @@ questions: default: 36061 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -413,7 +477,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -433,6 +497,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/focalboard/Chart.yaml b/charts/stable/focalboard/Chart.yaml index 6c8150ad85e..d1db13a86a3 100644 --- a/charts/stable/focalboard/Chart.yaml +++ b/charts/stable/focalboard/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.8.0 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana. home: https://github.com/truechartsapps/tree/master/charts/incubator/focalboard @@ -22,4 +22,4 @@ sources: - https://www.focalboard.com/ - https://github.com/mattermost/focalboard - https://github.com/FlipEnergy/container-images/blob/main/focalboard -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/focalboard/SCALE/questions.yaml b/charts/stable/focalboard/SCALE/questions.yaml index 0f8a0245730..16046ab8f3f 100644 --- a/charts/stable/focalboard/SCALE/questions.yaml +++ b/charts/stable/focalboard/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36049 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/freeradius/Chart.yaml b/charts/stable/freeradius/Chart.yaml index 7dab8a1c102..89115ff3320 100644 --- a/charts/stable/freeradius/Chart.yaml +++ b/charts/stable/freeradius/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 3.0.23 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: OpenSource Radius implementation home: https://www.openldap.org @@ -24,4 +24,4 @@ sources: - https://hub.docker.com/r/freeradius/freeradius-server/ - https://freeradius.org/ type: application -version: 1.7.18 +version: 2.0.1 diff --git a/charts/stable/freeradius/SCALE/questions.yaml b/charts/stable/freeradius/SCALE/questions.yaml index 8d9afd327b0..11255673075 100644 --- a/charts/stable/freeradius/SCALE/questions.yaml +++ b/charts/stable/freeradius/SCALE/questions.yaml @@ -81,12 +81,7 @@ questions: # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -288,6 +283,75 @@ questions: max: 65535 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence diff --git a/charts/stable/freshrss/Chart.yaml b/charts/stable/freshrss/Chart.yaml index d2aac6550ec..e0fd7467a7b 100644 --- a/charts/stable/freshrss/Chart.yaml +++ b/charts/stable/freshrss/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.18.1 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: FreshRSS is a self-hosted RSS feed aggregator home: https://github.com/truecharts/apps/tree/master/charts/incubator/freshrss @@ -21,4 +21,4 @@ sources: - https://github.com/FreshRSS/FreshRSS - https://hub.docker.com/r/linuxserver/freshrss type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/freshrss/SCALE/questions.yaml b/charts/stable/freshrss/SCALE/questions.yaml index f01a4e35e05..9258804b205 100644 --- a/charts/stable/freshrss/SCALE/questions.yaml +++ b/charts/stable/freshrss/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36029 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -419,7 +483,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -439,6 +503,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/gaps/Chart.yaml b/charts/stable/gaps/Chart.yaml index 3928f383dca..79c7eced6da 100644 --- a/charts/stable/gaps/Chart.yaml +++ b/charts/stable/gaps/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.8.8 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Gaps searches through your Plex Server or local folders for all movies, then queries for known movies in the same collection. @@ -22,4 +22,4 @@ name: gaps sources: - https://github.com/JasonHHouse/gaps type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/gaps/SCALE/questions.yaml b/charts/stable/gaps/SCALE/questions.yaml index dab99b16c1d..f14cb7f1d3e 100644 --- a/charts/stable/gaps/SCALE/questions.yaml +++ b/charts/stable/gaps/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -197,6 +192,75 @@ questions: max: 65535 default: 36030 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/gonic/Chart.yaml b/charts/stable/gonic/Chart.yaml index 2641ea37987..85daef66efb 100644 --- a/charts/stable/gonic/Chart.yaml +++ b/charts/stable/gonic/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.13.1 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Music streaming server / subsonic server API implementation home: https://github.com/truechartsapps/tree/master/charts/incubator/gonic icon: https://raw.githubusercontent.com/sentriz/gonic/master/.github/logo.png @@ -19,4 +19,4 @@ name: gonic sources: - https://github.com/sentriz/gonic - https://hub.docker.com/r/sentriz/gonic -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/gonic/SCALE/questions.yaml b/charts/stable/gonic/SCALE/questions.yaml index 7bd8cf9d2fd..3d1e1920ca4 100644 --- a/charts/stable/gonic/SCALE/questions.yaml +++ b/charts/stable/gonic/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36062 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/grocy/Chart.yaml b/charts/stable/grocy/Chart.yaml index bd7d66b78db..5b3f128e852 100644 --- a/charts/stable/grocy/Chart.yaml +++ b/charts/stable/grocy/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 3.1.1 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: ERP beyond your fridge - grocy is a web-based self-hosted groceries & household management solution for your home @@ -20,4 +20,4 @@ name: grocy sources: - https://github.com/grocy/grocy type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/grocy/SCALE/questions.yaml b/charts/stable/grocy/SCALE/questions.yaml index 9f810c49503..722a8d80a90 100644 --- a/charts/stable/grocy/SCALE/questions.yaml +++ b/charts/stable/grocy/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -209,6 +204,75 @@ questions: max: 65535 default: 36031 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -418,7 +482,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -438,6 +502,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/handbrake/Chart.yaml b/charts/stable/handbrake/Chart.yaml index b901fd602c7..95e0d4db185 100644 --- a/charts/stable/handbrake/Chart.yaml +++ b/charts/stable/handbrake/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.24.1 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. @@ -27,4 +27,4 @@ sources: - https://hub.docker.com/r/jlesage/handbrake/ - https://handbrake.fr/ type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/handbrake/SCALE/questions.yaml b/charts/stable/handbrake/SCALE/questions.yaml index 09fe81ef5a7..60447939ba7 100644 --- a/charts/stable/handbrake/SCALE/questions.yaml +++ b/charts/stable/handbrake/SCALE/questions.yaml @@ -171,12 +171,7 @@ questions: required: true # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -380,6 +375,75 @@ questions: default: 36003 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -588,7 +652,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -608,6 +672,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} - variable: securityContext diff --git a/charts/stable/haste-server/Chart.yaml b/charts/stable/haste-server/Chart.yaml index 4a9979e9ad4..6931530132f 100644 --- a/charts/stable/haste-server/Chart.yaml +++ b/charts/stable/haste-server/Chart.yaml @@ -3,7 +3,7 @@ appVersion: latest dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 description: Simple text sharing home: https://github.com/truecharts/apps/tree/master/charts/incubator/haste icon: https://raw.githubusercontent.com/nicholaswilde/helm-charts/main/images/haste.png @@ -21,4 +21,4 @@ name: haste-server sources: - https://github.com/seejohnrun/haste-server - https://github.com/k8s-at-home/container-images -version: 1.11.15 +version: 2.0.1 diff --git a/charts/stable/haste-server/SCALE/questions.yaml b/charts/stable/haste-server/SCALE/questions.yaml index a96b5dc593a..6a38d4cdfa1 100644 --- a/charts/stable/haste-server/SCALE/questions.yaml +++ b/charts/stable/haste-server/SCALE/questions.yaml @@ -97,12 +97,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -208,6 +203,75 @@ questions: max: 65535 default: 36055 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -418,7 +482,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -438,6 +502,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/healthchecks/Chart.yaml b/charts/stable/healthchecks/Chart.yaml index 04f086d6d7b..a0d7eeafd37 100644 --- a/charts/stable/healthchecks/Chart.yaml +++ b/charts/stable/healthchecks/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.22.0 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Healthchecks is a cron job monitoring service. It listens for HTTP requests and email messages ("pings") from your cron jobs and scheduled tasks ("checks"). When a ping does not arrive on time, Healthchecks sends out alerts. @@ -22,4 +22,4 @@ name: healthchecks sources: - https://github.com/healthchecks/healthchecks - https://hub.docker.com/r/linuxserver/healthchecks -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/healthchecks/SCALE/questions.yaml b/charts/stable/healthchecks/SCALE/questions.yaml index d834b3a54f3..80b37a33ff3 100644 --- a/charts/stable/healthchecks/SCALE/questions.yaml +++ b/charts/stable/healthchecks/SCALE/questions.yaml @@ -121,12 +121,7 @@ questions: default: "" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -233,6 +228,75 @@ questions: default: 36063 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -441,7 +505,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -461,6 +525,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/heimdall/Chart.yaml b/charts/stable/heimdall/Chart.yaml index 3d1b9417446..92eaa6f3617 100644 --- a/charts/stable/heimdall/Chart.yaml +++ b/charts/stable/heimdall/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2.2.2 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: An Application dashboard and launcher home: https://github.com/truecharts/apps/tree/master/charts/incubator/heimdall @@ -18,4 +18,4 @@ maintainers: name: heimdall sources: null type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/heimdall/SCALE/questions.yaml b/charts/stable/heimdall/SCALE/questions.yaml index d840c47381b..8ceb2d8c7cd 100644 --- a/charts/stable/heimdall/SCALE/questions.yaml +++ b/charts/stable/heimdall/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36033 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -419,7 +483,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -439,6 +503,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/home-assistant/Chart.yaml b/charts/stable/home-assistant/Chart.yaml index a04119d3b7a..448c54b628e 100644 --- a/charts/stable/home-assistant/Chart.yaml +++ b/charts/stable/home-assistant/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2021.9.6 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: home-assistant App for TrueNAS SCALE home: https://github.com/truecharts/apps/tree/master/charts/stable/home-assistant @@ -25,4 +25,4 @@ sources: - https://github.com/home-assistant/home-assistant - https://github.com/cdr/code-server type: application -version: 6.11.16 +version: 7.0.1 diff --git a/charts/stable/home-assistant/SCALE/questions.yaml b/charts/stable/home-assistant/SCALE/questions.yaml index e73511f5a58..cf02f1e949c 100644 --- a/charts/stable/home-assistant/SCALE/questions.yaml +++ b/charts/stable/home-assistant/SCALE/questions.yaml @@ -114,12 +114,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -226,6 +221,75 @@ questions: default: 36008 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -434,7 +498,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -454,6 +518,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} - variable: securityContext diff --git a/charts/stable/hyperion-ng/Chart.yaml b/charts/stable/hyperion-ng/Chart.yaml index 77e34df215d..6718ce5ab00 100644 --- a/charts/stable/hyperion-ng/Chart.yaml +++ b/charts/stable/hyperion-ng/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2.0.0-alph dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Hyperion is an opensource Bias or Ambient Lighting implementation home: https://github.com/truechartsapps/tree/master/charts/incubator/hyperion-ng icon: https://avatars.githubusercontent.com/u/17778452?s=200&v=4 @@ -19,4 +19,4 @@ name: hyperion-ng sources: - https://github.com/hyperion-project/hyperion.ng - https://hub.docker.com/r/sirfragalot/hyperion.ng -version: 1.9.16 +version: 2.0.1 diff --git a/charts/stable/hyperion-ng/SCALE/questions.yaml b/charts/stable/hyperion-ng/SCALE/questions.yaml index 9768600f10a..d883529b0f3 100644 --- a/charts/stable/hyperion-ng/SCALE/questions.yaml +++ b/charts/stable/hyperion-ng/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -501,6 +496,75 @@ questions: default: 36098 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -709,7 +773,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -729,6 +793,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/jackett/Chart.yaml b/charts/stable/jackett/Chart.yaml index 7fa7f6e5f0f..f85c1fe3a60 100644 --- a/charts/stable/jackett/Chart.yaml +++ b/charts/stable/jackett/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: 0.18.729 +appVersion: 0.18.746 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: API Support for your favorite torrent trackers. home: https://github.com/truecharts/apps/tree/master/charts/stable/jackett @@ -24,4 +24,4 @@ name: jackett sources: - https://github.com/Jackett/Jackett type: application -version: 6.11.21 +version: 7.0.1 diff --git a/charts/stable/jackett/SCALE/questions.yaml b/charts/stable/jackett/SCALE/questions.yaml index e3726ffc431..394f298275e 100644 --- a/charts/stable/jackett/SCALE/questions.yaml +++ b/charts/stable/jackett/SCALE/questions.yaml @@ -87,12 +87,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: max: 65535 default: 36009 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -374,49 +438,6 @@ questions: 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: @@ -487,7 +508,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -507,6 +528,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + diff --git a/charts/stable/jdownloader2/Chart.yaml b/charts/stable/jdownloader2/Chart.yaml index 2d6baffb870..376c8c588e0 100644 --- a/charts/stable/jdownloader2/Chart.yaml +++ b/charts/stable/jdownloader2/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.7.1 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: JDownloader is a free, open-source download management tool with a huge community of developers that makes downloading as easy and fast as it should be. @@ -23,4 +23,4 @@ sources: - https://hub.docker.com/r/jlesage/jdownloader-2 - https://jdownloader.org/ type: application -version: 1.0.5 +version: 2.0.1 diff --git a/charts/stable/jdownloader2/SCALE/questions.yaml b/charts/stable/jdownloader2/SCALE/questions.yaml index a1aaed40819..ea4f7628c91 100644 --- a/charts/stable/jdownloader2/SCALE/questions.yaml +++ b/charts/stable/jdownloader2/SCALE/questions.yaml @@ -140,12 +140,7 @@ questions: type: string default: "" # Include{containerConfig} - - 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)" @@ -443,6 +438,75 @@ questions: max: 65535 default: 36094 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -650,7 +714,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -670,6 +734,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/jellyfin/Chart.yaml b/charts/stable/jellyfin/Chart.yaml index 6aefd91713c..29bf974b77d 100644 --- a/charts/stable/jellyfin/Chart.yaml +++ b/charts/stable/jellyfin/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 10.7.7 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Jellyfin is a Free Software Media System home: https://github.com/truecharts/apps/tree/master/charts/stable/jellyfin @@ -24,4 +24,4 @@ name: jellyfin sources: - https://github.com/jellyfin/jellyfin type: application -version: 6.11.16 +version: 7.0.1 diff --git a/charts/stable/jellyfin/SCALE/questions.yaml b/charts/stable/jellyfin/SCALE/questions.yaml index 86c5d101d58..5ec136833dc 100644 --- a/charts/stable/jellyfin/SCALE/questions.yaml +++ b/charts/stable/jellyfin/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36010 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/k8s-gateway/Chart.yaml b/charts/stable/k8s-gateway/Chart.yaml index 6b97cbd6e12..93968c2530f 100644 --- a/charts/stable/k8s-gateway/Chart.yaml +++ b/charts/stable/k8s-gateway/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.1.8 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: A Helm chart for the k8s_gateway CoreDNS plugin home: https://github.com/truecharts/apps/tree/master/charts/stable/k8s-gateway @@ -20,4 +20,4 @@ name: k8s-gateway sources: - https://github.com/ori-edge/k8s_gateway type: application -version: 1.0.10 +version: 2.0.1 diff --git a/charts/stable/k8s-gateway/SCALE/questions.yaml b/charts/stable/k8s-gateway/SCALE/questions.yaml index 73988bfeaa6..04881ca3431 100644 --- a/charts/stable/k8s-gateway/SCALE/questions.yaml +++ b/charts/stable/k8s-gateway/SCALE/questions.yaml @@ -168,12 +168,7 @@ questions: required: true default: "" - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -278,6 +273,75 @@ questions: min: 9000 max: 65535 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} diff --git a/charts/stable/kms/Chart.yaml b/charts/stable/kms/Chart.yaml index 2ac6a01f736..c7987c06267 100644 --- a/charts/stable/kms/Chart.yaml +++ b/charts/stable/kms/Chart.yaml @@ -3,7 +3,7 @@ appVersion: minimal dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Private Windows Activation Server for development and testing home: https://github.com/truecharts/apps/tree/master/charts/stable/kms @@ -22,4 +22,4 @@ name: kms sources: - https://github.com/SystemRage/py-kms type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/kms/SCALE/questions.yaml b/charts/stable/kms/SCALE/questions.yaml index 33d890b84d4..d3099f5d1b9 100644 --- a/charts/stable/kms/SCALE/questions.yaml +++ b/charts/stable/kms/SCALE/questions.yaml @@ -90,12 +90,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -202,6 +197,75 @@ questions: default: 36011 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} # Include{persistenceList} diff --git a/charts/stable/komga/Chart.yaml b/charts/stable/komga/Chart.yaml index 414bf26e72f..2a04d6e2ba5 100644 --- a/charts/stable/komga/Chart.yaml +++ b/charts/stable/komga/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.125.3 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: A comics/mangas server to serve/stream pages via API home: https://github.com/truechartsapps/tree/master/charts/incubator/komga icon: https://komga.org/assets/media/logo.svg @@ -21,4 +21,4 @@ name: komga sources: - https://komga.org/ - https://github.com/gotson/komga -version: 1.9.19 +version: 2.0.1 diff --git a/charts/stable/komga/SCALE/questions.yaml b/charts/stable/komga/SCALE/questions.yaml index cd5baf95bfe..6870ea90484 100644 --- a/charts/stable/komga/SCALE/questions.yaml +++ b/charts/stable/komga/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36065 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -516,7 +580,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -536,6 +600,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/lazylibrarian/Chart.yaml b/charts/stable/lazylibrarian/Chart.yaml index b0d9332e0d6..993d4d7b29f 100644 --- a/charts/stable/lazylibrarian/Chart.yaml +++ b/charts/stable/lazylibrarian/Chart.yaml @@ -3,7 +3,7 @@ appVersion: latest dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Get all your books, like series with Sonarr... home: https://github.com/truecharts/apps/tree/master/charts/incubator/lazylibrarian @@ -24,4 +24,4 @@ sources: - https://gitlab.com/LazyLibrarian/LazyLibrarian.git - https://lazylibrarian.gitlab.io type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/lazylibrarian/SCALE/questions.yaml b/charts/stable/lazylibrarian/SCALE/questions.yaml index 2d037877294..388a7469106 100644 --- a/charts/stable/lazylibrarian/SCALE/questions.yaml +++ b/charts/stable/lazylibrarian/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36033 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -419,7 +483,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -439,6 +503,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/librespeed/Chart.yaml b/charts/stable/librespeed/Chart.yaml index a3dfb2d4a8e..db9eca5f8ba 100644 --- a/charts/stable/librespeed/Chart.yaml +++ b/charts/stable/librespeed/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 5.2.4 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Librespeed is a HTML5 webpage to test upload and download speeds home: https://github.com/truechartsapps/tree/master/charts/incubator/librespeed icon: https://github.com/librespeed/speedtest/blob/master/.logo/icon_huge.png?raw=true @@ -20,4 +20,4 @@ sources: - https://github.com/librespeed/speedtest - https://hub.docker.com/r/linuxserver/librespeed - https://github.com/truechartsapps/tree/master/charts/librespeed -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/librespeed/SCALE/questions.yaml b/charts/stable/librespeed/SCALE/questions.yaml index 295763c710a..a1a60a5dd0d 100644 --- a/charts/stable/librespeed/SCALE/questions.yaml +++ b/charts/stable/librespeed/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36066 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -418,7 +482,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -438,6 +502,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/lidarr/Chart.yaml b/charts/stable/lidarr/Chart.yaml index 1e1f5f0b11a..fdbe01f37c9 100644 --- a/charts/stable/lidarr/Chart.yaml +++ b/charts/stable/lidarr/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.0.0.2255 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Looks and smells like Sonarr but made for music home: https://github.com/truecharts/apps/tree/master/charts/stable/lidarr @@ -24,4 +24,4 @@ name: lidarr sources: - https://github.com/Lidarr/Lidarr type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/lidarr/SCALE/questions.yaml b/charts/stable/lidarr/SCALE/questions.yaml index d07025503b8..b7d29968288 100644 --- a/charts/stable/lidarr/SCALE/questions.yaml +++ b/charts/stable/lidarr/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36012 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/littlelink/Chart.yaml b/charts/stable/littlelink/Chart.yaml index c2d607f0a2f..9158139e627 100644 --- a/charts/stable/littlelink/Chart.yaml +++ b/charts/stable/littlelink/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: latest dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Easy platform to combine all your social links home: https://github.com/truecharts/apps/tree/master/charts/stable/littlelink @@ -23,4 +23,4 @@ sources: - https://github.com/techno-tim/littlelink-server - https://github.com/sethcottle/littlelink type: application -version: 1.5.15 +version: 2.0.1 diff --git a/charts/stable/littlelink/SCALE/questions.yaml b/charts/stable/littlelink/SCALE/questions.yaml index d5f82c3c69a..92ce8ad1e6a 100644 --- a/charts/stable/littlelink/SCALE/questions.yaml +++ b/charts/stable/littlelink/SCALE/questions.yaml @@ -288,12 +288,7 @@ questions: type: string default: "" - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -400,6 +395,75 @@ questions: default: 36092 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} # Include{persistenceList} @@ -492,7 +556,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -512,6 +576,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/lychee/Chart.yaml b/charts/stable/lychee/Chart.yaml index f062b541def..427e9f1f22d 100644 --- a/charts/stable/lychee/Chart.yaml +++ b/charts/stable/lychee/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 4.3.4 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Lychee is a free photo-management tool, which runs on your server or web-space @@ -23,4 +23,4 @@ sources: - https://github.com/LycheeOrg/Lychee - https://hub.docker.com/r/lycheeorg/lychee type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/lychee/SCALE/questions.yaml b/charts/stable/lychee/SCALE/questions.yaml index f3988d14b97..66b601483e0 100644 --- a/charts/stable/lychee/SCALE/questions.yaml +++ b/charts/stable/lychee/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36034 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -419,7 +483,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -439,6 +503,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/mealie/Chart.yaml b/charts/stable/mealie/Chart.yaml index f7c50c1e412..57e624167cc 100644 --- a/charts/stable/mealie/Chart.yaml +++ b/charts/stable/mealie/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.5.2 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 description: Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. @@ -19,4 +19,4 @@ maintainers: name: mealie sources: - https://github.com/hay-kot/mealie -version: 1.11.15 +version: 2.0.1 diff --git a/charts/stable/mealie/SCALE/questions.yaml b/charts/stable/mealie/SCALE/questions.yaml index 6656bf5e2d4..25f61fa961a 100644 --- a/charts/stable/mealie/SCALE/questions.yaml +++ b/charts/stable/mealie/SCALE/questions.yaml @@ -92,12 +92,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -203,6 +198,75 @@ questions: max: 65535 default: 36067 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -413,7 +477,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -433,6 +497,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/mosquitto/Chart.yaml b/charts/stable/mosquitto/Chart.yaml index ea5478ca9e7..25c32f22a49 100644 --- a/charts/stable/mosquitto/Chart.yaml +++ b/charts/stable/mosquitto/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2.0.12 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Eclipse Mosquitto - An open source MQTT broker home: https://github.com/truecharts/apps/tree/master/charts/incubator/mosquitto @@ -21,4 +21,4 @@ name: mosquitto sources: - https://github.com/eclipse/mosquitto type: application -version: 1.11.16 +version: 2.0.1 diff --git a/charts/stable/mosquitto/SCALE/questions.yaml b/charts/stable/mosquitto/SCALE/questions.yaml index 51b15b6ce93..ff5cd0b5eda 100644 --- a/charts/stable/mosquitto/SCALE/questions.yaml +++ b/charts/stable/mosquitto/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: false # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36068 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -528,7 +592,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -548,6 +612,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/mylar/Chart.yaml b/charts/stable/mylar/Chart.yaml index 0c6f30f7461..9db5c991304 100644 --- a/charts/stable/mylar/Chart.yaml +++ b/charts/stable/mylar/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.5.3 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Mylar is the automated Comic Book downloader (cbr/cbz) for use with various download clients. home: https://github.com/truechartsapps/tree/master/charts/incubator/mylar @@ -19,4 +19,4 @@ sources: - https://github.com/mylar3/mylar3 - https://github.com/linuxserver/docker-mylar3 - https://github.com/truechartsapps/tree/master/charts/mylar -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/mylar/SCALE/questions.yaml b/charts/stable/mylar/SCALE/questions.yaml index 21d1702cc20..5a3ad9bfb69 100644 --- a/charts/stable/mylar/SCALE/questions.yaml +++ b/charts/stable/mylar/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36069 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -418,7 +482,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -438,6 +502,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/navidrome/Chart.yaml b/charts/stable/navidrome/Chart.yaml index b6bf740697d..1edbaf48425 100644 --- a/charts/stable/navidrome/Chart.yaml +++ b/charts/stable/navidrome/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.45.1 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Navidrome is an open source web-based music collection server and streamer home: https://github.com/truecharts/apps/tree/master/charts/incubator/navidrome @@ -22,4 +22,4 @@ sources: - https://github.com/deluan/navidrome - https://hub.docker.com/r/deluan/navidrome type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/navidrome/SCALE/questions.yaml b/charts/stable/navidrome/SCALE/questions.yaml index f73ea4e5e78..24c2431d434 100644 --- a/charts/stable/navidrome/SCALE/questions.yaml +++ b/charts/stable/navidrome/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36027 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -407,7 +471,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -427,6 +491,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/nextcloud/Chart.yaml b/charts/stable/nextcloud/Chart.yaml index ecdcdf7ac9b..1eddc1b0d32 100644 --- a/charts/stable/nextcloud/Chart.yaml +++ b/charts/stable/nextcloud/Chart.yaml @@ -3,15 +3,15 @@ appVersion: 22.1.1 dependencies: - name: common repository: https://truecharts.org/ - version: 7.0.3 + version: 7.0.12 - condition: postgresql.enabled name: postgresql repository: https://truecharts.org/ - version: 2.1.1 + version: 2.2.0 - condition: redis.enabled name: redis repository: https://charts.bitnami.com/bitnami - version: 15.3.1 + version: 15.3.2 deprecated: false description: A private cloud server that puts the control and security of your own data back into your hands. @@ -33,4 +33,4 @@ sources: - https://github.com/nextcloud/docker - https://github.com/nextcloud/helm type: application -version: 4.0.6 +version: 5.0.1 diff --git a/charts/stable/nextcloud/SCALE/questions.yaml b/charts/stable/nextcloud/SCALE/questions.yaml index ebffbd9eee4..e61cc495e4c 100644 --- a/charts/stable/nextcloud/SCALE/questions.yaml +++ b/charts/stable/nextcloud/SCALE/questions.yaml @@ -116,12 +116,7 @@ questions: # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -520,7 +515,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -540,6 +535,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} - variable: podSecurityContext group: "Security and Permissions" diff --git a/charts/stable/node-red/Chart.yaml b/charts/stable/node-red/Chart.yaml index 54e66b2c64a..684c515cfe8 100644 --- a/charts/stable/node-red/Chart.yaml +++ b/charts/stable/node-red/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2.0.6 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Node-RED is low-code programming for event-driven applications home: https://github.com/truecharts/apps/tree/master/charts/incubator/node-red @@ -20,4 +20,4 @@ name: node-red sources: - https://github.com/node-red/node-red-docker type: application -version: 6.11.16 +version: 7.0.1 diff --git a/charts/stable/node-red/SCALE/questions.yaml b/charts/stable/node-red/SCALE/questions.yaml index 877ffd36811..eb6b1849d7b 100644 --- a/charts/stable/node-red/SCALE/questions.yaml +++ b/charts/stable/node-red/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36028 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -407,7 +471,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -427,6 +491,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/nullserv/Chart.yaml b/charts/stable/nullserv/Chart.yaml index 0f7093b8ef3..9aca22f2c80 100644 --- a/charts/stable/nullserv/Chart.yaml +++ b/charts/stable/nullserv/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.3.0 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: A simple null file http and https server home: https://github.com/truechartsapps/tree/master/charts/incubator/nullserv icon: https://miro.medium.com/max/800/1*UL9RWkTUtJlyHW7kGm20hQ.png @@ -17,4 +17,4 @@ maintainers: name: nullserv sources: - https://github.com/bmrzycki/nullserv -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/nullserv/SCALE/questions.yaml b/charts/stable/nullserv/SCALE/questions.yaml index d9792205895..5bcad8fb58e 100644 --- a/charts/stable/nullserv/SCALE/questions.yaml +++ b/charts/stable/nullserv/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -301,6 +296,75 @@ questions: default: 36070 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -509,7 +573,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -529,6 +593,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/nzbget/Chart.yaml b/charts/stable/nzbget/Chart.yaml index 08380fb4e48..0c397408bf8 100644 --- a/charts/stable/nzbget/Chart.yaml +++ b/charts/stable/nzbget/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 21.1 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: NZBGet is a Usenet downloader client home: https://github.com/truecharts/apps/tree/master/charts/incubator/nzbget @@ -20,4 +20,4 @@ name: nzbget sources: - https://nzbget.net/ type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/nzbget/SCALE/questions.yaml b/charts/stable/nzbget/SCALE/questions.yaml index 68cb663e0b4..1f2a10275c9 100644 --- a/charts/stable/nzbget/SCALE/questions.yaml +++ b/charts/stable/nzbget/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36021 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -407,7 +471,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -427,6 +491,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/nzbhydra/Chart.yaml b/charts/stable/nzbhydra/Chart.yaml index 1fb9cd010dc..5a2bcf72704 100644 --- a/charts/stable/nzbhydra/Chart.yaml +++ b/charts/stable/nzbhydra/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 3.15.2 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: true description: Usenet meta search home: https://github.com/truecharts/apps/tree/master/charts/incubator/nzbhydra @@ -17,4 +17,4 @@ name: nzbhydra sources: - https://github.com/theotherp/nzbhydra2 type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/nzbhydra/SCALE/questions.yaml b/charts/stable/nzbhydra/SCALE/questions.yaml index 8be16262191..ab3853fcaca 100644 --- a/charts/stable/nzbhydra/SCALE/questions.yaml +++ b/charts/stable/nzbhydra/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36041 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -407,7 +471,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -427,6 +491,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/octoprint/Chart.yaml b/charts/stable/octoprint/Chart.yaml index 2a9d356043f..6e920cc5e6d 100644 --- a/charts/stable/octoprint/Chart.yaml +++ b/charts/stable/octoprint/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.6.1 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: OctoPrint is the snappy web interface for your 3D printer home: https://github.com/truechartsapps/tree/master/charts/incubator/octoprint icon: https://avatars3.githubusercontent.com/u/5982294?s=400&v=4 @@ -20,4 +20,4 @@ name: octoprint sources: - https://github.com/OctoPrint/OctoPrint - https://hub.docker.com/r/octoprint/octoprint -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/octoprint/SCALE/questions.yaml b/charts/stable/octoprint/SCALE/questions.yaml index 83cee3592ae..78237e9080a 100644 --- a/charts/stable/octoprint/SCALE/questions.yaml +++ b/charts/stable/octoprint/SCALE/questions.yaml @@ -104,12 +104,7 @@ questions: default: "" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -216,6 +211,75 @@ questions: default: 36071 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -424,7 +488,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -444,6 +508,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/omada-controller/Chart.yaml b/charts/stable/omada-controller/Chart.yaml index 8600384a640..d6e77a38f36 100644 --- a/charts/stable/omada-controller/Chart.yaml +++ b/charts/stable/omada-controller/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 4.4 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Omada enables the network administrators to monitor and manage all the Omada products in the network with a centralized management platform. home: https://github.com/truechartsapps/tree/master/charts/incubator/omada-controller @@ -19,4 +19,4 @@ name: omada-controller sources: - https://github.com/mbentley/docker-omada-controller - https://github.com/truechartsapps/tree/master/charts/omada-controller -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/omada-controller/SCALE/questions.yaml b/charts/stable/omada-controller/SCALE/questions.yaml index 706b424c214..9a3c88023ce 100644 --- a/charts/stable/omada-controller/SCALE/questions.yaml +++ b/charts/stable/omada-controller/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36072 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/ombi/Chart.yaml b/charts/stable/ombi/Chart.yaml index 1760c575b17..8d62a33b2e2 100644 --- a/charts/stable/ombi/Chart.yaml +++ b/charts/stable/ombi/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 4.0.1482 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Want a Movie or TV Show on Plex or Emby? Use Ombi! home: https://github.com/truecharts/apps/tree/master/charts/stable/ombi @@ -27,4 +27,4 @@ name: ombi sources: - https://github.com/tidusjar/Ombi type: application -version: 6.11.18 +version: 7.0.1 diff --git a/charts/stable/ombi/SCALE/questions.yaml b/charts/stable/ombi/SCALE/questions.yaml index 96a529185da..2d906fb813f 100644 --- a/charts/stable/ombi/SCALE/questions.yaml +++ b/charts/stable/ombi/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36013 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/openldap/Chart.yaml b/charts/stable/openldap/Chart.yaml index 357002fcf38..b8bea8132bd 100644 --- a/charts/stable/openldap/Chart.yaml +++ b/charts/stable/openldap/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.5.0 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Community developed LDAP software home: https://www.openldap.org @@ -26,4 +26,4 @@ sources: - https://github.com/jp-gouin/helm-openldap - https://github.com/osixia/docker-openldap type: application -version: 1.7.19 +version: 2.0.1 diff --git a/charts/stable/openldap/SCALE/questions.yaml b/charts/stable/openldap/SCALE/questions.yaml index 82de522f4a8..8fb0667be07 100644 --- a/charts/stable/openldap/SCALE/questions.yaml +++ b/charts/stable/openldap/SCALE/questions.yaml @@ -206,12 +206,7 @@ questions: # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -415,6 +410,75 @@ questions: default: 36100 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: volumeClaimTemplates diff --git a/charts/stable/organizr/Chart.yaml b/charts/stable/organizr/Chart.yaml index 6d44e8e7b7a..aebbb7859c0 100644 --- a/charts/stable/organizr/Chart.yaml +++ b/charts/stable/organizr/Chart.yaml @@ -3,7 +3,7 @@ appVersion: latest dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: HTPC/Homelab Services Organizer home: https://github.com/truecharts/apps/tree/master/charts/incubator/organizr @@ -20,4 +20,4 @@ sources: - https://github.com/causefx/Organizr - https://hub.docker.com/r/organizr/organizr type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/organizr/SCALE/questions.yaml b/charts/stable/organizr/SCALE/questions.yaml index 51d76a33b4d..5eb03c11759 100644 --- a/charts/stable/organizr/SCALE/questions.yaml +++ b/charts/stable/organizr/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36046 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -529,7 +593,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -549,6 +613,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/incubator/oscam/CHANGELOG.md b/charts/stable/oscam/CHANGELOG.md similarity index 100% rename from charts/incubator/oscam/CHANGELOG.md rename to charts/stable/oscam/CHANGELOG.md diff --git a/charts/incubator/oscam/CONFIG.md b/charts/stable/oscam/CONFIG.md similarity index 100% rename from charts/incubator/oscam/CONFIG.md rename to charts/stable/oscam/CONFIG.md diff --git a/charts/incubator/oscam/Chart.yaml b/charts/stable/oscam/Chart.yaml similarity index 91% rename from charts/incubator/oscam/Chart.yaml rename to charts/stable/oscam/Chart.yaml index a16c92ac209..7b55019a2cf 100644 --- a/charts/incubator/oscam/Chart.yaml +++ b/charts/stable/oscam/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 11693 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 deprecated: false description: Open Source Conditional Access Module software home: https://github.com/truecharts/apps/tree/master/charts/stable/oscam @@ -19,4 +19,4 @@ name: oscam sources: - https://trac.streamboard.tv/oscam/browser/trunk type: application -version: 1.0.2 +version: 2.0.1 diff --git a/charts/incubator/oscam/README.md b/charts/stable/oscam/README.md similarity index 100% rename from charts/incubator/oscam/README.md rename to charts/stable/oscam/README.md diff --git a/charts/incubator/oscam/SCALE/CHANGELOG.md b/charts/stable/oscam/SCALE/CHANGELOG.md similarity index 100% rename from charts/incubator/oscam/SCALE/CHANGELOG.md rename to charts/stable/oscam/SCALE/CHANGELOG.md diff --git a/charts/incubator/oscam/SCALE/item.yaml b/charts/stable/oscam/SCALE/item.yaml similarity index 100% rename from charts/incubator/oscam/SCALE/item.yaml rename to charts/stable/oscam/SCALE/item.yaml diff --git a/charts/incubator/oscam/SCALE/ix_values.yaml b/charts/stable/oscam/SCALE/ix_values.yaml similarity index 100% rename from charts/incubator/oscam/SCALE/ix_values.yaml rename to charts/stable/oscam/SCALE/ix_values.yaml diff --git a/charts/incubator/testbed/SCALE/questions.yaml b/charts/stable/oscam/SCALE/questions.yaml similarity index 84% rename from charts/incubator/testbed/SCALE/questions.yaml rename to charts/stable/oscam/SCALE/questions.yaml index 4c0c262b058..4d4b302b593 100644 --- a/charts/incubator/testbed/SCALE/questions.yaml +++ b/charts/stable/oscam/SCALE/questions.yaml @@ -79,13 +79,24 @@ questions: default: "Etc/UTC" $ref: - "definitions/timezone" + - variable: PUID + label: "PUID" + description: "Sets the userID inside the container" + schema: + type: string + default: "568" + - variable: PGID + label: "PGID" + description: "Sets the GroupID inside the container" + schema: + type: string + default: "20" - variable: UMASK label: "UMASK" description: "Sets the UMASK env var for LinuxServer.io (compatible) containers" schema: type: string default: "002" - # Include{containerConfig} - variable: service @@ -120,14 +131,14 @@ questions: - value: "LoadBalancer" description: "LoadBalancer" - variable: loadBalancerIP - label: "(Advanced) LoadBalancer IP" + label: "LoadBalancer IP" description: "LoadBalancerIP" schema: show_if: [["type", "=", "LoadBalancer"]] type: string default: "" - variable: externalIPs - label: "(Advanced) External IP's" + label: "External IP's" description: "External IP's" schema: show_if: [["type", "=", "LoadBalancer"]] @@ -173,24 +184,22 @@ questions: description: "This port exposes the container port on the service" schema: type: int - default: 9117 - editable: false - hidden: true + default: 8888 + required: true - variable: port - label: "(Advanced) Service Port" + label: "Container Port" schema: type: int - default: 9117 - editable: true + default: 8888 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 + default: 36103 min: 9000 max: 65535 - default: 36009 - variable: serviceexpert group: "Networking and Services" @@ -280,10 +289,9 @@ questions: schema: type: boolean default: true - hidden: true - variable: type label: "(Advanced) Type of Storage" - description: "Type of storage. Warning: Anything other than pvc will not work with rollback!" + description: "Sets the persistence type" schema: type: string default: "pvc" @@ -296,7 +304,7 @@ questions: description: "hostPath" - variable: storageClass label: "(Advanced) storageClass" - description: "Warning: Anything other than SCALE-ZFS will break rollback!" + description: " Warning: Anything other than SCALE-ZFS will break rollback!" schema: show_if: [["type", "=", "pvc"]] type: string @@ -320,7 +328,7 @@ questions: show_if: [["type", "=", "hostPath"]] type: hostpath - variable: hostPathType - label: "(Advanced) hostPath Type" + label: "hostPath Type" schema: show_if: [["type", "=", "hostPath"]] type: string @@ -361,7 +369,7 @@ questions: - value: "Memory" description: "Memory" - variable: accessMode - label: "(Advanced) Access Mode" + label: "Access Mode (Advanced)" description: "Allow or disallow multiple PVC's writhing to the same PV" schema: show_if: [["type", "=", "pvc"]] @@ -380,52 +388,6 @@ questions: show_if: [["type", "=", "pvc"]] type: string default: "100Gi" - - variable: expert - label: "Show Expert Options" - schema: - type: boolean - default: false - show_subquestions_if: true - subquestions: - - 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 - # Include{persistenceList} - variable: ingress @@ -535,6 +497,7 @@ questions: type: string default: "" required: true + - variable: expert label: "Show Expert Configuration Options" schema: @@ -587,8 +550,6 @@ questions: type: string # Include{ingressList} - - - variable: securityContext group: "Security and Permissions" label: "Security Context" @@ -601,12 +562,12 @@ questions: type: boolean default: false - variable: readOnlyRootFilesystem - label: "(Advanced) ReadOnly Root Filesystem" + label: "ReadOnly Root Filesystem" schema: type: boolean default: false - variable: allowPrivilegeEscalation - label: "(Advanced) Allow Privilege Escalation" + label: "Allow Privilege Escalation" schema: type: boolean default: true @@ -614,55 +575,11 @@ questions: label: "runAsNonRoot" schema: type: boolean - default: true + default: false - - variable: podSecurityContext - group: "Security and Permissions" - label: "Pod Security Context" - schema: - 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 - - 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: resources group: "Resources and Devices" - label: "Resource Limits" + label: "" schema: type: dict attrs: @@ -701,6 +618,8 @@ questions: default: "50Mi" valid_chars: '^([0-9.]+)([EPTGMK]i?|[EPTGMK]?|e[0-9]+)$' +# Include{deviceList} + - variable: autoscaling group: "Resources and Devices" label: "(Advanced) Horizontal Pod Autoscaler" diff --git a/charts/incubator/oscam/app-readme.md b/charts/stable/oscam/app-readme.md similarity index 100% rename from charts/incubator/oscam/app-readme.md rename to charts/stable/oscam/app-readme.md diff --git a/charts/incubator/oscam/helm-values.md b/charts/stable/oscam/helm-values.md similarity index 100% rename from charts/incubator/oscam/helm-values.md rename to charts/stable/oscam/helm-values.md diff --git a/charts/incubator/oscam/templates/common.yaml b/charts/stable/oscam/templates/common.yaml similarity index 100% rename from charts/incubator/oscam/templates/common.yaml rename to charts/stable/oscam/templates/common.yaml diff --git a/charts/incubator/oscam/values.yaml b/charts/stable/oscam/values.yaml similarity index 100% rename from charts/incubator/oscam/values.yaml rename to charts/stable/oscam/values.yaml diff --git a/charts/stable/overseerr/Chart.yaml b/charts/stable/overseerr/Chart.yaml index 6e2d41208d4..2e2ec643f42 100644 --- a/charts/stable/overseerr/Chart.yaml +++ b/charts/stable/overseerr/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.25.0 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Overseerr is a free and open source software application for managing requests for your media library. It integrates with your existing services such as Sonarr, Radarr and Plex! @@ -23,4 +23,4 @@ name: overseerr sources: - https://github.com/sct/overseerr - https://hub.docker.com/r/sctx/overseerr -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/overseerr/SCALE/questions.yaml b/charts/stable/overseerr/SCALE/questions.yaml index 091e0762a7e..28202f92157 100644 --- a/charts/stable/overseerr/SCALE/questions.yaml +++ b/charts/stable/overseerr/SCALE/questions.yaml @@ -92,12 +92,7 @@ questions: default: "info" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -204,6 +199,75 @@ questions: default: 36073 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -412,7 +476,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -432,6 +496,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/owncast/Chart.yaml b/charts/stable/owncast/Chart.yaml index b45851e45a8..63bbce705cb 100644 --- a/charts/stable/owncast/Chart.yaml +++ b/charts/stable/owncast/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.0.8 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Take control over your live stream video by running it yourself. Streaming + chat out of the box. home: https://github.com/truechartsapps/tree/master/charts/incubator/owncast @@ -22,4 +22,4 @@ name: owncast sources: - https://owncast.online/ - https://github.com/owncast/owncast -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/owncast/SCALE/questions.yaml b/charts/stable/owncast/SCALE/questions.yaml index d3687d31ce5..ca858789ba6 100644 --- a/charts/stable/owncast/SCALE/questions.yaml +++ b/charts/stable/owncast/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -295,6 +290,75 @@ questions: default: 36075 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -503,7 +567,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -523,6 +587,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/owncloud-ocis/Chart.yaml b/charts/stable/owncloud-ocis/Chart.yaml index 0257c073609..e43c63e6d07 100644 --- a/charts/stable/owncloud-ocis/Chart.yaml +++ b/charts/stable/owncloud-ocis/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.11.0 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: ownCloud Infinite Scale is a self-hosted file sync and share server. home: https://github.com/truechartsapps/tree/master/charts/incubator/owncloud-ocis icon: https://avatars.githubusercontent.com/u/1645051?s=200&v=4 @@ -25,4 +25,4 @@ name: owncloud-ocis sources: - https://hub.docker.com/r/owncloud/ocis - https://owncloud.dev/ocis/ -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/owncloud-ocis/SCALE/questions.yaml b/charts/stable/owncloud-ocis/SCALE/questions.yaml index c1160a8c6ce..95eccdc6181 100644 --- a/charts/stable/owncloud-ocis/SCALE/questions.yaml +++ b/charts/stable/owncloud-ocis/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36076 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/pgadmin/Chart.yaml b/charts/stable/pgadmin/Chart.yaml index f0e7735b3fc..6ce4bea71db 100644 --- a/charts/stable/pgadmin/Chart.yaml +++ b/charts/stable/pgadmin/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 5.7 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Web-Based postgresql database management utility home: https://github.com/truecharts/apps/tree/master/charts/stable/pgadmin @@ -24,4 +24,4 @@ name: pgadmin sources: - https://www.pgadmin.org/ type: application -version: 1.8.15 +version: 2.0.1 diff --git a/charts/stable/pgadmin/SCALE/questions.yaml b/charts/stable/pgadmin/SCALE/questions.yaml index a71f95671dd..abafb71b92e 100644 --- a/charts/stable/pgadmin/SCALE/questions.yaml +++ b/charts/stable/pgadmin/SCALE/questions.yaml @@ -110,12 +110,7 @@ questions: default: "" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -223,6 +218,75 @@ questions: + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -432,7 +496,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -452,6 +516,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/photoprism/Chart.yaml b/charts/stable/photoprism/Chart.yaml index dfc181e7d1e..5adeacc6f05 100644 --- a/charts/stable/photoprism/Chart.yaml +++ b/charts/stable/photoprism/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 20210523 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: "PhotoPrism\xC2\xAE is a server-based application for browsing, organizing\ \ and sharing your personal photo collection" home: https://github.com/truechartsapps/tree/master/charts/incubator/photoprism @@ -22,4 +22,4 @@ name: photoprism sources: - https://github.com/photoprism/photoprism - https://hub.docker.com/r/photoprism/photoprism -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/photoprism/SCALE/questions.yaml b/charts/stable/photoprism/SCALE/questions.yaml index 12c2476023f..09d9d8c24ae 100644 --- a/charts/stable/photoprism/SCALE/questions.yaml +++ b/charts/stable/photoprism/SCALE/questions.yaml @@ -123,12 +123,7 @@ questions: default: false # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -235,6 +230,75 @@ questions: default: 36077 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -443,7 +507,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -463,6 +527,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/phpldapadmin/Chart.yaml b/charts/stable/phpldapadmin/Chart.yaml index fd560f6829f..227a09da322 100644 --- a/charts/stable/phpldapadmin/Chart.yaml +++ b/charts/stable/phpldapadmin/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.9.0 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Web-based LDAP browser to manage your LDAP server home: https://github.com/truecharts/apps/tree/master/charts/stable/phpldapadmin @@ -24,4 +24,4 @@ name: phpldapadmin sources: - https://gitlab.v2.rancher.geohub.space/g3s/i3s/i3s-helm-catalog type: application -version: 1.8.15 +version: 2.0.1 diff --git a/charts/stable/phpldapadmin/SCALE/questions.yaml b/charts/stable/phpldapadmin/SCALE/questions.yaml index acceba22938..b0e166c657e 100644 --- a/charts/stable/phpldapadmin/SCALE/questions.yaml +++ b/charts/stable/phpldapadmin/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "true" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36093 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} # Include{persistenceList} @@ -302,7 +366,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -322,6 +386,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/piaware/Chart.yaml b/charts/stable/piaware/Chart.yaml index d0c8c7cbea4..5764746e3e1 100644 --- a/charts/stable/piaware/Chart.yaml +++ b/charts/stable/piaware/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 6.1 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Program for forwarding ADS-B data to FlightAware home: https://github.com/truechartsapps/tree/master/charts/incubator/piaware icon: https://pbs.twimg.com/profile_images/964269455483088897/mr2UgvfG_400x400.jpg @@ -19,4 +19,4 @@ maintainers: name: piaware sources: - https://github.com/flightaware/piaware -version: 1.9.16 +version: 2.0.1 diff --git a/charts/stable/piaware/SCALE/questions.yaml b/charts/stable/piaware/SCALE/questions.yaml index ca1fb81b1ab..e450d6befe1 100644 --- a/charts/stable/piaware/SCALE/questions.yaml +++ b/charts/stable/piaware/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36078 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/pihole/Chart.yaml b/charts/stable/pihole/Chart.yaml index 5dee2f83485..66dae0175fa 100644 --- a/charts/stable/pihole/Chart.yaml +++ b/charts/stable/pihole/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 5.8.1 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: DNS and Ad-filtering for your network home: https://github.com/truecharts/apps/tree/master/charts/stable/pihole @@ -21,4 +21,4 @@ sources: - https://github.com/pi-hole - https://github.com/pi-hole/docker-pi-hole type: application -version: 1.0.7 +version: 2.0.1 diff --git a/charts/stable/pihole/SCALE/questions.yaml b/charts/stable/pihole/SCALE/questions.yaml index fce88eccccf..3f8ca79adce 100644 --- a/charts/stable/pihole/SCALE/questions.yaml +++ b/charts/stable/pihole/SCALE/questions.yaml @@ -116,12 +116,7 @@ questions: default: "149.112.112.112" - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -419,6 +414,75 @@ questions: min: 9000 max: 65535 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -743,49 +807,6 @@ questions: 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: @@ -856,7 +877,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -876,6 +897,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + diff --git a/charts/stable/plex/Chart.yaml b/charts/stable/plex/Chart.yaml index a6d28fa28ab..cb099414502 100644 --- a/charts/stable/plex/Chart.yaml +++ b/charts/stable/plex/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.24.2.497 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Plex Media Server home: https://github.com/truecharts/apps/tree/master/charts/stable/plex @@ -22,4 +22,4 @@ maintainers: name: plex sources: null type: application -version: 5.11.16 +version: 6.0.1 diff --git a/charts/stable/plex/SCALE/questions.yaml b/charts/stable/plex/SCALE/questions.yaml index 3c74ab0e29d..211f22b1cf8 100644 --- a/charts/stable/plex/SCALE/questions.yaml +++ b/charts/stable/plex/SCALE/questions.yaml @@ -105,12 +105,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -217,6 +212,75 @@ questions: default: 32400 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -425,7 +489,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -445,6 +509,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/podgrab/Chart.yaml b/charts/stable/podgrab/Chart.yaml index 4f1497c7db9..1e2dc92e17c 100644 --- a/charts/stable/podgrab/Chart.yaml +++ b/charts/stable/podgrab/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.0.0 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: A self-hosted podcast manager to download episodes as soon as they become live. @@ -24,4 +24,4 @@ sources: - https://github.com/akhilrex/podgrab - https://hub.docker.com/r/akhilrex/podgrab type: application -version: 4.11.15 +version: 5.0.1 diff --git a/charts/stable/podgrab/SCALE/questions.yaml b/charts/stable/podgrab/SCALE/questions.yaml index 1e844e0d6d9..e7409348ffc 100644 --- a/charts/stable/podgrab/SCALE/questions.yaml +++ b/charts/stable/podgrab/SCALE/questions.yaml @@ -94,12 +94,7 @@ questions: required: true # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -206,6 +201,75 @@ questions: default: 36047 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -415,7 +479,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -435,6 +499,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/postgresql/Chart.yaml b/charts/stable/postgresql/Chart.yaml index 1f52d32574d..449f93874c0 100644 --- a/charts/stable/postgresql/Chart.yaml +++ b/charts/stable/postgresql/Chart.yaml @@ -25,4 +25,4 @@ name: postgresql sources: - https://www.postgresql.org/ type: application -version: 2.2.0 +version: 2.2.1 diff --git a/charts/stable/postgresql/SCALE/questions.yaml b/charts/stable/postgresql/SCALE/questions.yaml index f3381e57725..56db68fdc8d 100644 --- a/charts/stable/postgresql/SCALE/questions.yaml +++ b/charts/stable/postgresql/SCALE/questions.yaml @@ -96,12 +96,7 @@ questions: default: "" required: true - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -208,6 +203,75 @@ questions: default: 36009 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence diff --git a/charts/stable/pretend-youre-xyzzy/Chart.yaml b/charts/stable/pretend-youre-xyzzy/Chart.yaml index 6fdbeb64e3d..565cfd0ea1b 100644 --- a/charts/stable/pretend-youre-xyzzy/Chart.yaml +++ b/charts/stable/pretend-youre-xyzzy/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 4 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: pretend-youre-xyzzy, a cards against humanity clone home: https://github.com/truechartsapps/tree/master/charts/incubator/pretend-youre-xyzzy icon: https://apk-google.com/wp-content/uploads/2020/12/Client-for-Pretend-Youre-Xyzzy-open-source-5.0.1.png @@ -21,4 +21,4 @@ name: pretend-youre-xyzzy sources: - https://github.com/ajanata/PretendYoureXyzzy - https://github.com/emcniece/DockerYourXyzzy -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/pretend-youre-xyzzy/SCALE/questions.yaml b/charts/stable/pretend-youre-xyzzy/SCALE/questions.yaml index 4f8d9f6beee..7952add088e 100644 --- a/charts/stable/pretend-youre-xyzzy/SCALE/questions.yaml +++ b/charts/stable/pretend-youre-xyzzy/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -197,6 +192,75 @@ questions: max: 65535 default: 36079 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} # Include{persistenceList} @@ -289,7 +353,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -309,6 +373,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/protonmail-bridge/Chart.yaml b/charts/stable/protonmail-bridge/Chart.yaml index 43f76b29611..a705c5dbf23 100644 --- a/charts/stable/protonmail-bridge/Chart.yaml +++ b/charts/stable/protonmail-bridge/Chart.yaml @@ -3,7 +3,7 @@ appVersion: 1.8.7-1 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Container for protonmail bridge to work on the network. home: https://github.com/truechartsapps/tree/master/charts/incubator/protonmail-bridge icon: https://raw.githubusercontent.com/ProtonMail/proton-bridge/master/icon.iconset/icon_256x256.png @@ -19,4 +19,4 @@ name: protonmail-bridge sources: - https://github.com/shenxn/protonmail-bridge-docker - https://hub.docker.com/r/shenxn/protonmail-bridge -version: 1.9.16 +version: 2.0.1 diff --git a/charts/stable/protonmail-bridge/SCALE/questions.yaml b/charts/stable/protonmail-bridge/SCALE/questions.yaml index 4bd4144b0a0..c47f05ed3e0 100644 --- a/charts/stable/protonmail-bridge/SCALE/questions.yaml +++ b/charts/stable/protonmail-bridge/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: max: 65535 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -418,7 +482,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -438,6 +502,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/prowlarr/Chart.yaml b/charts/stable/prowlarr/Chart.yaml index 37beab7e57a..b987870fb2f 100644 --- a/charts/stable/prowlarr/Chart.yaml +++ b/charts/stable/prowlarr/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.1.1.927 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 description: Indexer manager/proxy built on the popular arr net base stack to integrate with your various PVR apps. home: https://github.com/truecharts/apps/tree/master/charts/incubator/prowlarr @@ -21,4 +21,4 @@ name: prowlarr sources: - https://github.com/Prowlarr/Prowlarr - https://github.com/k8s-at-home/container-images -version: 1.11.18 +version: 2.0.1 diff --git a/charts/stable/prowlarr/SCALE/questions.yaml b/charts/stable/prowlarr/SCALE/questions.yaml index a2c8da5ffa7..cb702a3a6b9 100644 --- a/charts/stable/prowlarr/SCALE/questions.yaml +++ b/charts/stable/prowlarr/SCALE/questions.yaml @@ -87,12 +87,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: max: 65535 default: 36081 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -408,7 +472,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -428,6 +492,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/pyload/Chart.yaml b/charts/stable/pyload/Chart.yaml index f41939c1857..28466802cf4 100644 --- a/charts/stable/pyload/Chart.yaml +++ b/charts/stable/pyload/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 5de90278 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: pyLoad is a Free and Open Source download manager written in Python and designed to be extremely lightweight, easily extensible and fully manageable via web. @@ -21,4 +21,4 @@ name: pyload sources: - https://github.com/pyload/pyload - https://hub.docker.com/r/linuxserver/pyload -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/pyload/SCALE/questions.yaml b/charts/stable/pyload/SCALE/questions.yaml index cf507aa9093..596da3460b1 100644 --- a/charts/stable/pyload/SCALE/questions.yaml +++ b/charts/stable/pyload/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36082 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -418,7 +482,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -438,6 +502,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/qbittorrent/Chart.yaml b/charts/stable/qbittorrent/Chart.yaml index cb73e8e654b..9150c554a5d 100644 --- a/charts/stable/qbittorrent/Chart.yaml +++ b/charts/stable/qbittorrent/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 4.3.7 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: qBittorrent is a cross-platform free and open-source BitTorrent client home: https://github.com/truecharts/apps/tree/master/charts/incubator/qbittorrent @@ -19,4 +19,4 @@ maintainers: name: qbittorrent sources: null type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/qbittorrent/SCALE/questions.yaml b/charts/stable/qbittorrent/SCALE/questions.yaml index a3a610e2438..03846bbb824 100644 --- a/charts/stable/qbittorrent/SCALE/questions.yaml +++ b/charts/stable/qbittorrent/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -343,6 +338,75 @@ questions: default: 36040 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -552,7 +616,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -572,6 +636,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/radarr/Chart.yaml b/charts/stable/radarr/Chart.yaml index e0bd586fc00..096a10c9792 100644 --- a/charts/stable/radarr/Chart.yaml +++ b/charts/stable/radarr/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 3.2.2.5080 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: "A fork of Sonarr to work with movies \xE0 la Couchpotato" home: https://github.com/truecharts/apps/tree/master/charts/stable/radarr @@ -24,4 +24,4 @@ name: radarr sources: - https://github.com/Radarr/Radarr type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/radarr/SCALE/questions.yaml b/charts/stable/radarr/SCALE/questions.yaml index a9189c91acd..cb5ea118fd9 100644 --- a/charts/stable/radarr/SCALE/questions.yaml +++ b/charts/stable/radarr/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36016 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/readarr/Chart.yaml b/charts/stable/readarr/Chart.yaml index 1bb1cf82510..0bf8f2d9f51 100644 --- a/charts/stable/readarr/Chart.yaml +++ b/charts/stable/readarr/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.1.0.963 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: A fork of Radarr to work with Books & AudioBooks home: https://github.com/truecharts/apps/tree/master/charts/incubator/readarr @@ -27,4 +27,4 @@ sources: - https://github.com/Readarr/Readarr - https://readarr.com type: application -version: 6.11.16 +version: 7.0.1 diff --git a/charts/stable/readarr/SCALE/questions.yaml b/charts/stable/readarr/SCALE/questions.yaml index 7adbfd36b83..3ae0c60d24f 100644 --- a/charts/stable/readarr/SCALE/questions.yaml +++ b/charts/stable/readarr/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36038 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -407,7 +471,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -427,6 +491,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/reg/Chart.yaml b/charts/stable/reg/Chart.yaml index 9a22dbab92a..150096ed816 100644 --- a/charts/stable/reg/Chart.yaml +++ b/charts/stable/reg/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.16.1 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 description: Docker registry v2 command line client and repo listing generator with security checks. home: https://github.com/truecharts/apps/tree/master/charts/incubator/reg @@ -19,4 +19,4 @@ name: reg sources: - https://github.com/genuinetools/reg - https://github.com/k8s-at-home/container-images/ -version: 1.11.15 +version: 2.0.1 diff --git a/charts/stable/reg/SCALE/questions.yaml b/charts/stable/reg/SCALE/questions.yaml index e9d66c18549..4c2d3814b92 100644 --- a/charts/stable/reg/SCALE/questions.yaml +++ b/charts/stable/reg/SCALE/questions.yaml @@ -87,12 +87,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: max: 65535 default: 36083 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -408,7 +472,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -428,6 +492,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/resilio-sync/Chart.yaml b/charts/stable/resilio-sync/Chart.yaml index 3270f4d1471..fa619732070 100644 --- a/charts/stable/resilio-sync/Chart.yaml +++ b/charts/stable/resilio-sync/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2.7.2.1375 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Resilio Sync is a fast, reliable, and simple file sync and share solution, powered by P2P technology home: https://github.com/truechartsapps/tree/master/charts/incubator/resio-sync @@ -21,4 +21,4 @@ maintainers: name: resilio-sync sources: - https://github.com/orgs/linuxserver/packages/container/package/resilio-sync -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/resilio-sync/SCALE/questions.yaml b/charts/stable/resilio-sync/SCALE/questions.yaml index 6208d713430..344893bcf1e 100644 --- a/charts/stable/resilio-sync/SCALE/questions.yaml +++ b/charts/stable/resilio-sync/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -404,6 +399,75 @@ questions: default: 36090 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -612,7 +676,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -632,6 +696,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/sabnzbd/Chart.yaml b/charts/stable/sabnzbd/Chart.yaml index 73202fb4093..93f20d04975 100644 --- a/charts/stable/sabnzbd/Chart.yaml +++ b/charts/stable/sabnzbd/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 3.3.1 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Free and easy binary newsreader home: https://github.com/truecharts/apps/tree/master/charts/incubator/sabnzbd @@ -20,4 +20,4 @@ name: sabnzbd sources: - https://sabnzbd.org/ type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/sabnzbd/SCALE/questions.yaml b/charts/stable/sabnzbd/SCALE/questions.yaml index 541903dc4fe..c9d6560696c 100644 --- a/charts/stable/sabnzbd/SCALE/questions.yaml +++ b/charts/stable/sabnzbd/SCALE/questions.yaml @@ -93,12 +93,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -205,6 +200,75 @@ questions: default: 36045 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -414,7 +478,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -434,6 +498,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/ser2sock/Chart.yaml b/charts/stable/ser2sock/Chart.yaml index 8984ff6f281..2a5509cb597 100644 --- a/charts/stable/ser2sock/Chart.yaml +++ b/charts/stable/ser2sock/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: latest dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: Serial to Socket Redirector home: https://github.com/truechartsapps/tree/master/charts/incubator/ser2sock icon: https://i.imgur.com/GfZ7McO.png @@ -18,4 +18,4 @@ name: ser2sock sources: - https://github.com/nutechsoftware/ser2sock - https://github.com/tenstartups/ser2sock -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/ser2sock/SCALE/questions.yaml b/charts/stable/ser2sock/SCALE/questions.yaml index 8444f7bcfa4..46acfc57bd0 100644 --- a/charts/stable/ser2sock/SCALE/questions.yaml +++ b/charts/stable/ser2sock/SCALE/questions.yaml @@ -106,12 +106,7 @@ questions: default: "{{ .Values.service.main.ports.main.port }}" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -218,6 +213,75 @@ questions: default: 36084 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -426,7 +490,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -446,6 +510,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/sonarr/Chart.yaml b/charts/stable/sonarr/Chart.yaml index dd037e3f5f8..54853ee62b5 100644 --- a/charts/stable/sonarr/Chart.yaml +++ b/charts/stable/sonarr/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 3.0.6.1265 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Smart PVR for newsgroup and bittorrent users home: https://github.com/truecharts/apps/tree/master/charts/stable/sonarr @@ -24,4 +24,4 @@ name: sonarr sources: - https://github.com/Sonarr/Sonarr type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/sonarr/SCALE/questions.yaml b/charts/stable/sonarr/SCALE/questions.yaml index 14ede0bd06a..66571b34f96 100644 --- a/charts/stable/sonarr/SCALE/questions.yaml +++ b/charts/stable/sonarr/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36017 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/stash/Chart.yaml b/charts/stable/stash/Chart.yaml index ca499035358..c7d5147077c 100644 --- a/charts/stable/stash/Chart.yaml +++ b/charts/stable/stash/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.9.0 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: An organizer for your porn, written in Go home: https://github.com/truechartsapps/tree/master/charts/incubator/stash icon: https://raw.githubusercontent.com/stashapp/website/master/images/stash.svg @@ -18,4 +18,4 @@ name: stash sources: - https://github.com/stashapp/stash - https://hub.docker.com/r/stashapp/stash -version: 1.9.17 +version: 2.0.1 diff --git a/charts/stable/stash/SCALE/questions.yaml b/charts/stable/stash/SCALE/questions.yaml index d4e956ab635..4b10524c8e8 100644 --- a/charts/stable/stash/SCALE/questions.yaml +++ b/charts/stable/stash/SCALE/questions.yaml @@ -91,12 +91,7 @@ questions: default: "9999" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -203,6 +198,75 @@ questions: default: 36085 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -411,7 +475,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -431,6 +495,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/syncthing/Chart.yaml b/charts/stable/syncthing/Chart.yaml index fd7ff1f9a2f..239a04e8a29 100644 --- a/charts/stable/syncthing/Chart.yaml +++ b/charts/stable/syncthing/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 1.18.2 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: P2P file synchronization application home: https://github.com/truecharts/apps/tree/master/charts/stable/syncthing @@ -24,4 +24,4 @@ sources: - https://github.com/syncthing/syncthing - https://hub.docker.com/r/syncthing/syncthing type: application -version: 6.11.15 +version: 7.0.1 diff --git a/charts/stable/syncthing/SCALE/questions.yaml b/charts/stable/syncthing/SCALE/questions.yaml index 7c5ac2a8b8d..da0693459bb 100644 --- a/charts/stable/syncthing/SCALE/questions.yaml +++ b/charts/stable/syncthing/SCALE/questions.yaml @@ -80,12 +80,7 @@ questions: - "definitions/timezone" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -456,6 +451,75 @@ questions: default: 21027 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -664,7 +728,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -684,6 +748,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/tautulli/Chart.yaml b/charts/stable/tautulli/Chart.yaml index 4b8de9eb1b2..b7fcedd85c4 100644 --- a/charts/stable/tautulli/Chart.yaml +++ b/charts/stable/tautulli/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2.7.6 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: A Python based monitoring and tracking tool for Plex Media Server home: https://github.com/truecharts/apps/tree/master/charts/stable/tautulli @@ -23,4 +23,4 @@ name: tautulli sources: - https://github.com/Tautulli/Tautulli type: application -version: 6.11.16 +version: 7.0.1 diff --git a/charts/stable/tautulli/SCALE/questions.yaml b/charts/stable/tautulli/SCALE/questions.yaml index da0b83a56da..00d30bc3f1e 100644 --- a/charts/stable/tautulli/SCALE/questions.yaml +++ b/charts/stable/tautulli/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36018 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/thelounge/Chart.yaml b/charts/stable/thelounge/Chart.yaml index d19cfba53bd..dc985976c25 100644 --- a/charts/stable/thelounge/Chart.yaml +++ b/charts/stable/thelounge/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 4.2.0 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 description: The Lounge, modern web IRC client designed for self-hosting home: https://github.com/truecharts/apps/tree/master/charts/incubator/thelounge icon: https://avatars.githubusercontent.com/u/14336958?s=200&v=4 @@ -21,4 +21,4 @@ maintainers: name: thelounge sources: - https://github.com/thelounge/thelounge -version: 1.11.15 +version: 2.0.1 diff --git a/charts/stable/thelounge/SCALE/questions.yaml b/charts/stable/thelounge/SCALE/questions.yaml index 21cd2401136..45d6d04ee63 100644 --- a/charts/stable/thelounge/SCALE/questions.yaml +++ b/charts/stable/thelounge/SCALE/questions.yaml @@ -92,12 +92,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -203,6 +198,75 @@ questions: max: 65535 default: 36086 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -413,7 +477,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -433,6 +497,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/traefik/Chart.yaml b/charts/stable/traefik/Chart.yaml index 7a364d4b68b..0799f6fb074 100644 --- a/charts/stable/traefik/Chart.yaml +++ b/charts/stable/traefik/Chart.yaml @@ -3,7 +3,7 @@ appVersion: 2.5.2 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Test App for Traefik home: https://github.com/truecharts/apps/tree/master/charts/stable/traefik @@ -22,4 +22,4 @@ sources: - https://github.com/traefik/traefik-helm-chart - https://traefik.io/ type: application -version: 7.1.4 +version: 8.0.1 diff --git a/charts/stable/traefik/SCALE/questions.yaml b/charts/stable/traefik/SCALE/questions.yaml index a7f7bb652e8..09dcc497697 100644 --- a/charts/stable/traefik/SCALE/questions.yaml +++ b/charts/stable/traefik/SCALE/questions.yaml @@ -517,12 +517,7 @@ questions: default: "" - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service diff --git a/charts/stable/transmission/Chart.yaml b/charts/stable/transmission/Chart.yaml index 049887bef5c..b5ea3e888c4 100644 --- a/charts/stable/transmission/Chart.yaml +++ b/charts/stable/transmission/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 3.0 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: API Support for your favorite torrent trackers. home: https://github.com/truecharts/apps/tree/master/charts/stable/transmission @@ -25,4 +25,4 @@ sources: - https://github.com/transmission/transmission - https://hub.docker.com/r/linuxserver/transmission type: application -version: 6.11.16 +version: 7.0.1 diff --git a/charts/stable/transmission/SCALE/questions.yaml b/charts/stable/transmission/SCALE/questions.yaml index 8ad18992515..76b08b2ddd0 100644 --- a/charts/stable/transmission/SCALE/questions.yaml +++ b/charts/stable/transmission/SCALE/questions.yaml @@ -428,12 +428,7 @@ questions: default: false # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -685,6 +680,75 @@ questions: default: 36020 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -893,7 +957,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -913,6 +977,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/truecommand/Chart.yaml b/charts/stable/truecommand/Chart.yaml index 41ef80187e3..9ada062810f 100644 --- a/charts/stable/truecommand/Chart.yaml +++ b/charts/stable/truecommand/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2.0.2 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Aggregated management of TrueNAS devices home: https://github.com/truecharts/apps/tree/master/charts/incubator/truecommand @@ -22,4 +22,4 @@ name: truecommand sources: - https://hub.docker.com/r/ixsystems/truecommand type: application -version: 6.11.16 +version: 7.0.1 diff --git a/charts/stable/truecommand/SCALE/questions.yaml b/charts/stable/truecommand/SCALE/questions.yaml index 968d97ed500..322270194ce 100644 --- a/charts/stable/truecommand/SCALE/questions.yaml +++ b/charts/stable/truecommand/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -210,6 +205,75 @@ questions: default: 36044 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -419,7 +483,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -439,6 +503,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/tvheadend/Chart.yaml b/charts/stable/tvheadend/Chart.yaml index ae907ecceec..36414f17064 100644 --- a/charts/stable/tvheadend/Chart.yaml +++ b/charts/stable/tvheadend/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 63784405 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: TVheadend - a TV streaming server and digital video recorder home: https://github.com/truecharts/apps/tree/master/charts/incubator/tvheadend @@ -22,4 +22,4 @@ name: tvheadend sources: - https://github.com/tvheadend/tvheadend type: application -version: 7.11.15 +version: 8.0.1 diff --git a/charts/stable/tvheadend/SCALE/questions.yaml b/charts/stable/tvheadend/SCALE/questions.yaml index 7d7f7f4ac7a..fb189dcad90 100644 --- a/charts/stable/tvheadend/SCALE/questions.yaml +++ b/charts/stable/tvheadend/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -306,6 +301,75 @@ questions: max: 65535 default: 36043 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -515,7 +579,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -535,6 +599,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/unifi/Chart.yaml b/charts/stable/unifi/Chart.yaml index 20c4c99fdbd..d5898f4d646 100644 --- a/charts/stable/unifi/Chart.yaml +++ b/charts/stable/unifi/Chart.yaml @@ -3,7 +3,7 @@ appVersion: 6.2.26 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Ubiquiti Network's Unifi Controller home: https://github.com/truecharts/apps/tree/master/charts/incubator/unifi @@ -21,4 +21,4 @@ sources: - https://github.com/jacobalberty/unifi-docker - https://unifi-network.ui.com type: application -version: 6.12.1 +version: 7.0.1 diff --git a/charts/stable/unifi/SCALE/questions.yaml b/charts/stable/unifi/SCALE/questions.yaml index c91a4bcab57..54b3fbbec63 100644 --- a/charts/stable/unifi/SCALE/questions.yaml +++ b/charts/stable/unifi/SCALE/questions.yaml @@ -98,12 +98,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -639,6 +634,75 @@ questions: max: 65535 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -848,7 +912,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -868,6 +932,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/unpackerr/Chart.yaml b/charts/stable/unpackerr/Chart.yaml index 0efddf54b38..c45d4ff702b 100644 --- a/charts/stable/unpackerr/Chart.yaml +++ b/charts/stable/unpackerr/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 0.9.8 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: This application runs as a daemon on your download host. It checks for completed downloads and extracts them so Radarr, Lidarr, Sonarr, and Readarr may @@ -26,4 +26,4 @@ sources: - https://github.com/davidnewhall/unpackerr - https://hub.docker.com/r/golift/unpackerr type: application -version: 1.11.15 +version: 2.0.1 diff --git a/charts/stable/unpackerr/SCALE/questions.yaml b/charts/stable/unpackerr/SCALE/questions.yaml index bc77b47242a..1cb2e11b790 100644 --- a/charts/stable/unpackerr/SCALE/questions.yaml +++ b/charts/stable/unpackerr/SCALE/questions.yaml @@ -64,13 +64,77 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork + + + + - variable: serviceexpert group: "Networking and Services" - label: "Enable Host Networking" + 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 + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string # Include{serviceList} @@ -280,7 +344,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -300,6 +364,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/vaultwarden/Chart.yaml b/charts/stable/vaultwarden/Chart.yaml index 4e908984f2b..9216a67839e 100644 --- a/charts/stable/vaultwarden/Chart.yaml +++ b/charts/stable/vaultwarden/Chart.yaml @@ -3,11 +3,11 @@ appVersion: 1.22.2 dependencies: - name: common repository: https://truecharts.org/ - version: 7.0.1 + version: 7.0.12 - condition: postgresql.enabled name: postgresql repository: https://truecharts.org/ - version: 2.0.0 + version: 2.2.0 deprecated: false description: Unofficial Bitwarden compatible server written in Rust home: https://github.com/truecharts/apps/tree/master/charts/stable/vaultwarden @@ -31,4 +31,4 @@ name: vaultwarden sources: - https://github.com/dani-garcia/vaultwarden type: application -version: 7.0.2 +version: 8.0.1 diff --git a/charts/stable/vaultwarden/SCALE/questions.yaml b/charts/stable/vaultwarden/SCALE/questions.yaml index 7f9aceef657..cbca53f6c70 100644 --- a/charts/stable/vaultwarden/SCALE/questions.yaml +++ b/charts/stable/vaultwarden/SCALE/questions.yaml @@ -382,12 +382,7 @@ questions: default: "" - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -591,6 +586,75 @@ questions: default: 36001 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -801,7 +865,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -821,6 +885,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/xteve/Chart.yaml b/charts/stable/xteve/Chart.yaml index 861ba715af3..a21053cabe6 100644 --- a/charts/stable/xteve/Chart.yaml +++ b/charts/stable/xteve/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 2.2.0.200 dependencies: - name: common repository: https://truecharts.org - version: 6.13.8 + version: 7.0.12 description: M3U Proxy for Plex DVR and Emby Live TV. home: https://github.com/truechartsapps/tree/master/charts/incubator/xteve icon: https://raw.githubusercontent.com/xteve-project/xTeVe/master/html/img/logo_b_880x200.jpg @@ -21,4 +21,4 @@ name: xteve sources: - https://github.com/xteve-project/xTeVe - https://github.com/k8s-at-home/container-images -version: 1.9.15 +version: 2.0.1 diff --git a/charts/stable/xteve/SCALE/questions.yaml b/charts/stable/xteve/SCALE/questions.yaml index 81804c34a96..3f6f0de0143 100644 --- a/charts/stable/xteve/SCALE/questions.yaml +++ b/charts/stable/xteve/SCALE/questions.yaml @@ -86,12 +86,7 @@ questions: default: "002" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -198,6 +193,75 @@ questions: default: 36087 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -406,7 +470,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -426,6 +490,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/charts/stable/zwavejs2mqtt/Chart.yaml b/charts/stable/zwavejs2mqtt/Chart.yaml index 6bce0aeea0f..d4a85ac789c 100644 --- a/charts/stable/zwavejs2mqtt/Chart.yaml +++ b/charts/stable/zwavejs2mqtt/Chart.yaml @@ -1,9 +1,9 @@ apiVersion: v2 -appVersion: auto +appVersion: 5.5.4 dependencies: - name: common repository: https://truecharts.org/ - version: 6.13.8 + version: 7.0.12 deprecated: false description: Fully configurable Zwave to MQTT gateway and Control Panel using NodeJS and Vue @@ -27,4 +27,4 @@ sources: - https://github.com/zwave-js/zwavejs2mqtt - https://hub.docker.com/r/zwavejs/zwavejs2mqtt type: application -version: 6.11.17 +version: 7.0.1 diff --git a/charts/stable/zwavejs2mqtt/SCALE/questions.yaml b/charts/stable/zwavejs2mqtt/SCALE/questions.yaml index 6ef63ff2fce..e80c9fbebfd 100644 --- a/charts/stable/zwavejs2mqtt/SCALE/questions.yaml +++ b/charts/stable/zwavejs2mqtt/SCALE/questions.yaml @@ -80,12 +80,7 @@ questions: - "definitions/timezone" # Include{containerConfig} - - variable: hostNetwork - group: "Networking and Services" - label: "Enable Host Networking" - schema: - type: boolean - default: false + - variable: service group: "Networking and Services" @@ -288,6 +283,75 @@ questions: max: 65535 default: 36023 + - 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 + + - variable: dnsPolicy + group: "Networking and Services" + label: "dnsPolicy" + schema: + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "ClusterFirst" + description: "ClusterFirst" + - value: "ClusterFirstWithHostNet" + description: "ClusterFirstWithHostNet" + - value: "None" + description: "None" + + - variable: dnsConfig + label: "DNS Configuration" + group: "Networking and Services" + description: "Specify custom DNS configuration which will be applied to the pod" + schema: + type: dict + attrs: + - variable: nameservers + label: "Nameservers" + schema: + default: [] + type: list + items: + - variable: nameserver + label: "Nameserver" + schema: + type: string + - variable: options + label: "options" + schema: + default: [] + type: list + items: + - variable: option + label: "Option Entry" + schema: + type: string + - variable: searches + label: "Searches" + schema: + default: [] + type: list + items: + - variable: search + label: "Search Entry" + schema: + type: string + # Include{serviceList} - variable: persistence @@ -496,7 +560,7 @@ questions: $ref: - "definitions/certificate" - variable: entrypoint - label: "Traefik Entrypoint" + label: "(Advanced) Traefik Entrypoint" description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" schema: type: string @@ -516,6 +580,57 @@ questions: default: "" required: true + - variable: expert + label: "Show Expert Configuration Options" + 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 + # Include{ingressList} diff --git a/tools/build-release.sh b/tools/build-release.sh index 59b2c692dd2..6c40e797eb9 100755 --- a/tools/build-release.sh +++ b/tools/build-release.sh @@ -198,7 +198,7 @@ sync_tag() { tag="${tag#*version-}" tag="${tag#*v}" tag="${tag:0:10}" - sed -i -e "s|appVersion: .*|appVersion: ${tag}|" "${chart}/Chart.yaml" + sed -i -e "s|appVersion: .*|appVersion: \"${tag}\"|" "${chart}/Chart.yaml" } pre_commit() {