diff --git a/deprecated/nzbhydra/3.1.6/CONFIG.md b/deprecated/nzbhydra/3.1.6/CONFIG.md new file mode 100644 index 00000000000..6d760c18421 --- /dev/null +++ b/deprecated/nzbhydra/3.1.6/CONFIG.md @@ -0,0 +1,8 @@ +# 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 Together" guide: +https://truecharts.org/manual/linking/ + +##### 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/deprecated/nzbhydra/3.1.6/Chart.lock b/deprecated/nzbhydra/3.1.6/Chart.lock new file mode 100644 index 00000000000..f038f8d404f --- /dev/null +++ b/deprecated/nzbhydra/3.1.6/Chart.lock @@ -0,0 +1,6 @@ +dependencies: +- name: common + repository: https://truecharts.org/ + version: 3.5.5 +digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 +generated: "2021-05-09T16:56:04.365444748Z" diff --git a/deprecated/nzbhydra/3.1.6/Chart.yaml b/deprecated/nzbhydra/3.1.6/Chart.yaml new file mode 100644 index 00000000000..93f94c738b1 --- /dev/null +++ b/deprecated/nzbhydra/3.1.6/Chart.yaml @@ -0,0 +1,26 @@ +apiVersion: v2 +kubeVersion: ">=1.16.0-0" +name: nzbhydra +version: 3.1.6 +upstream_version: 5.3.1 +appVersion: "auto" +description: Usenet meta search +type: application +deprecated: true +home: https://github.com/truecharts/apps/tree/master/incubator/nzbhydra +icon: https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/hydra-icon.png +keywords: + - nzbhydra + - usenet +sources: + - https://github.com/truecharts/apps/tree/master/incubator/nzbhydra + - https://github.com/k8s-at-home/charts/tree/master/charts/nzbhydra + - https://hub.docker.com/r/linuxserver/nzbhydra2 + - https://github.com/theotherp/nzbhydra2 +dependencies: + - name: common + repository: https://truecharts.org/ + version: 3.5.5 + # condition: +maintainers: [] +# annotations: diff --git a/deprecated/nzbhydra/3.1.6/README.md b/deprecated/nzbhydra/3.1.6/README.md new file mode 100644 index 00000000000..a3cd66447e7 --- /dev/null +++ b/deprecated/nzbhydra/3.1.6/README.md @@ -0,0 +1,56 @@ +# Introduction + +![Version: 3.1.5](https://img.shields.io/badge/Version-3.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: auto](https://img.shields.io/badge/AppVersion-auto-informational?style=flat-square) + +Usenet meta search + +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 | 3.5.5 | + +## Installing the Chart + +To install the chart with the release name `nzbhydra` + +- Open TrueNAS SCALE +- Go to Apps +- Click "Install" for this specific Apps +- Fill out the configuration form + +## Uninstalling the Chart + +To uninstall the `nzbhydra` deployment + +- Open TrueNAS SCALE +- Go to Apps +- Go to "Installed Apps" +- Expand the menu in the top-right corner of this App +- Click "Remove" for this specific Apps + +The command removes all the Kubernetes components associated with the chart **including storage volumes** _(Except hostPath Storage)_ and deletes the release. + +## Support + +- See the [Wiki](https://truecharts.org) +- Open a [issue](https://github.com/truecharts/apps/issues/new/choose) +- Ask a [question](https://github.com/truecharts/apps/discussions) + +---------------------------------------------- +Autogenerated from chart metadata using [helm-docs v1.5.0](https://github.com/norwoodj/helm-docs/releases/v1.5.0) +All Rights Reserved - The TrueCharts Project diff --git a/deprecated/nzbhydra/3.1.6/app-readme.md b/deprecated/nzbhydra/3.1.6/app-readme.md new file mode 100644 index 00000000000..2012c83a622 --- /dev/null +++ b/deprecated/nzbhydra/3.1.6/app-readme.md @@ -0,0 +1,3 @@ +Usenet meta search +This App is supplied by TrueCharts, for more information please visit https://truecharts.org +Usenet meta search diff --git a/deprecated/nzbhydra/3.1.6/charts/common-3.5.5.tgz b/deprecated/nzbhydra/3.1.6/charts/common-3.5.5.tgz new file mode 100644 index 00000000000..d01688bb84b Binary files /dev/null and b/deprecated/nzbhydra/3.1.6/charts/common-3.5.5.tgz differ diff --git a/deprecated/nzbhydra/3.1.6/ix_values.yaml b/deprecated/nzbhydra/3.1.6/ix_values.yaml new file mode 100644 index 00000000000..0a6fde47bea --- /dev/null +++ b/deprecated/nzbhydra/3.1.6/ix_values.yaml @@ -0,0 +1,51 @@ +## +# 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/truecharts/nzbhydra2 + pullPolicy: IfNotPresent + tag: v3.14.1 + +probes: + liveness: + custom: true + enabled: true + spec: + failureThreshold: 5 + httpGet: + path: /actuator/health/livenessState + port: http + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 10 + readiness: + custom: true + enabled: true + spec: + failureThreshold: 5 + httpGet: + path: /actuator/health/readinessState + port: http + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 10 + startup: + custom: true + enabled: true + spec: + failureThreshold: 5 + httpGet: + path: /actuator/health/readinessState + port: http + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 10 + + +## +# 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/deprecated/nzbhydra/3.1.6/questions.yaml b/deprecated/nzbhydra/3.1.6/questions.yaml new file mode 100644 index 00000000000..a620bab6782 --- /dev/null +++ b/deprecated/nzbhydra/3.1.6/questions.yaml @@ -0,0 +1,436 @@ +groups: + - name: "Container Image" + description: "Image to be used for container" + - name: "Workload Configuration" + description: "Configure workload deployment" + - name: "Configuration" + description: "additional container configuration" + - name: "Networking" + description: "Configure / service for container" + - name: "Storage" + description: "Persist and share data that is separate from the lifecycle of the container" + - name: "Resources and Devices" + description: "Specify resources/devices to be allocated to workload" + - name: "Reverse Proxy Configuration" + description: "Reverse Proxy configuration" + - name: "Advanced" + description: "Advanced Configuration" + - name: "WARNING" + description: "WARNING" +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 + + # Update Policy + - variable: strategyType + group: "Container Image" + label: "Update Strategy" + schema: + type: string + default: "Recreate" + enum: + - value: "RollingUpdate" + description: "Create new pods and then kill old ones" + - value: "Recreate" + description: "Kill existing pods before creating new ones" + # Configure Time Zone + - variable: timezone + group: "Container Image" + label: "Timezone" + schema: + type: string + default: "Etc/UTC" + $ref: + - "definitions/timezone" + + # Configure Enviroment Variables + - variable: environmentVariables + label: "Image environment" + group: "Configuration" + schema: + type: list + default: [] + items: + - variable: environmentVariable + label: "Environment Variable" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + # Enable Host Networking + - variable: hostNetwork + group: "Networking" + label: "Enable Host Networking" + schema: + type: boolean + default: false + - variable: services + group: "Networking" + label: "Configure Service" + 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" + schema: + type: string + default: "ClusterIP" + enum: + - value: "NodePort" + description: "NodePort" + - value: "ClusterIP" + description: "ClusterIP" + - variable: port + label: "Port configuration" + schema: + type: dict + attrs: + - variable: protocol + label: "Port Type" + schema: + type: string + default: "HTTP" + hidden: false + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - variable: port + label: "container port" + schema: + type: int + default: 5076 + editable: false + hidden: true + - variable: targetport + label: "Internal Service port" + description: "When connecting internally to this App, you'll need this port" + schema: + type: int + default: 5076 + editable: false + hidden: true + - variable: nodePort + label: "(optional) host nodePort to expose to" + description: "only get used when nodePort is selected" + schema: + type: int + min: 9000 + max: 65535 + default: 36041 + required: true +## TrueCharts Specific + - variable: persistence + label: "Integrated Persistent Storage" + description: "Websocket Service" + group: "Storage" + 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 + hidden: true + - variable: storageClass + label: "Type of Storage" + description: " Warning: Anything other than Internal will break rollback!" + schema: + type: string + default: "" + enum: + - value: "" + description: "Internal" + - variable: mountPath + label: "mountPath" + description: "Path inside the container the storage is mounted" + schema: + type: string + default: "/config" + hidden: true + - variable: emptyDir + label: "Mount a ramdisk instead of actual storage" + schema: + type: boolean + default: false + hidden: true + - variable: accessMode + label: "Access Mode (Advanced)" + description: "Allow or disallow multiple PVC's writhing to the same PVC" + schema: + 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: + type: string + default: "100Gi" + - variable: customStorage + label: "Custom app storage" + group: "Storage" + schema: + type: list + default: [] + items: + - variable: volumeMount + label: "Custom Storage" + schema: + type: dict + attrs: + - variable: enabled + label: "Enabled" + schema: + type: boolean + default: true + required: true + hidden: true + editable: false + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + type: boolean + default: true + hidden: false + - variable: readOnly + label: "Mount as ReadOnly" + description: "prevent any write from being done to the mounted volume" + schema: + type: boolean + default: false + hidden: false + - variable: emptyDir + label: "emptyDir" + schema: + type: boolean + default: false + hidden: true + editable: false + - variable: mountPath + label: "Mount Path" + description: "Path to mount inside the pod" + schema: + type: path + required: true + default: "" + editable: true + - variable: hostPath + label: "Host Path" + schema: + type: hostpath + required: true + - variable: ingress + label: "" + group: "Reverse Proxy Configuration" + schema: + type: dict + attrs: + - variable: main + label: "WebUI" + schema: + type: dict + attrs: + - variable: certType + label: "Select Reverse-Proxy Type" + schema: + type: string + default: "disabled" + enum: + - value: "disabled" + description: "Disabled" + - value: "" + description: "No Encryption/TLS/Certificates" + - value: "selfsigned" + description: "Self-Signed Certificate" + - value: "ixcert" + description: "TrueNAS SCALE Certificate" + - variable: type + label: "Reverse Proxy Type" + schema: + type: string + default: "HTTP" + hidden: true + editable: false + required: true + - variable: serviceName + label: "Service name to proxy to" + schema: + hidden: true + editable: false + type: string + default: "" + - variable: entrypoint + label: "Select Entrypoint" + schema: + show_if: [["certType", "!=", "disabled"]] + type: string + default: "websecure" + required: true + enum: + - value: "websecure" + description: "Websecure: HTTPS/TLS port 443" + - variable: hosts + label: "Hosts" + schema: + show_if: [["certType", "!=", "disabled"]] + type: list + default: [] + items: + - variable: host + label: "Host" + schema: + type: dict + attrs: + - variable: host + label: "Domain Name" + required: true + schema: + type: string + - variable: path + label: "path" + schema: + type: string + required: true + hidden: true + default: "/" + - variable: certificate + label: "Select TrueNAS SCALE Certificate" + schema: + type: int + show_if: [["certType", "=", "ixcert"]] + $ref: + - "definitions/certificate" + - variable: authForwardURL + label: "Forward Authentication URL" + schema: + show_if: [["certType", "!=", "disabled"]] + type: string + default: "" + + - variable: UMASK + group: "Advanced" + label: "UMASK" + description: "Sets the UMASK env var for LinuxServer.io (compatible) containers" + schema: + type: string + default: "002" + # Enable privileged + - variable: securityContext + group: "Advanced" + label: "Security Context" + schema: + type: dict + attrs: + - variable: privileged + label: "Enable privileged mode for Common-Chart based charts" + schema: + type: boolean + default: false + # Set Pod Security Policy + - variable: podSecurityContext + group: "Advanced" + label: "Pod Security Context" + schema: + type: dict + attrs: + - variable: runAsNonRoot + label: "runAsNonRoot" + schema: + type: boolean + default: true + - variable: runAsUser + label: "runAsUser" + description: "The UserID of the user running the application" + schema: + type: int + default: 568 + - variable: runAsGroup + label: "runAsGroup" + description: The groupID this App of the user running the application" + schema: + type: int + default: 568 + - variable: supplementalGroups + label: "supplementalGroups" + description: "Additional groups this App needs access to" + schema: + type: list + default: [] + items: + - variable: Group + label: "Group" + schema: + type: int + default: 568 + - variable: fsGroup + label: "fsGroup" + description: "The group that should own ALL storage." + schema: + type: int + default: 568 + - variable: fsGroupChangePolicy + label: "When should we take ownership?" + schema: + type: string + default: "OnRootMismatch" + enum: + - value: "OnRootMismatch" + description: "OnRootMismatch" + - value: "Always" + description: "Always" diff --git a/deprecated/nzbhydra/3.1.6/templates/common.yaml b/deprecated/nzbhydra/3.1.6/templates/common.yaml new file mode 100644 index 00000000000..a6613c2ce21 --- /dev/null +++ b/deprecated/nzbhydra/3.1.6/templates/common.yaml @@ -0,0 +1 @@ +{{ include "common.all" . }} diff --git a/deprecated/nzbhydra/3.1.6/test_values.yaml b/deprecated/nzbhydra/3.1.6/test_values.yaml new file mode 100644 index 00000000000..5baf1ad7705 --- /dev/null +++ b/deprecated/nzbhydra/3.1.6/test_values.yaml @@ -0,0 +1,64 @@ +# Default values for nzbhydra. + +image: + repository: ghcr.io/truecharts/nzbhydra2 + pullPolicy: IfNotPresent + tag: v3.14.1 + +strategy: + type: Recreate + +services: + main: + port: + port: 5076 + +env: {} + # TZ: UTC + # PUID: 1001 + # PGID: 1001 + +probes: + liveness: + custom: true + enabled: true + spec: + failureThreshold: 5 + httpGet: + path: /actuator/health/livenessState + port: http + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 10 + readiness: + custom: true + enabled: true + spec: + failureThreshold: 5 + httpGet: + path: /actuator/health/readinessState + port: http + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 10 + startup: + custom: true + enabled: true + spec: + failureThreshold: 5 + httpGet: + path: /actuator/health/readinessState + port: http + initialDelaySeconds: 30 + periodSeconds: 10 + timeoutSeconds: 10 + + +persistence: + config: + enabled: true + mountPath: "/config" + emptyDir: true + accessMode: ReadWriteOnce + size: 1Gi + storageClass: "" diff --git a/deprecated/nzbhydra/3.1.6/values.yaml b/deprecated/nzbhydra/3.1.6/values.yaml new file mode 100644 index 00000000000..e69de29bb2d diff --git a/incubator/appdaemon/0.1.3/Chart.lock b/incubator/appdaemon/0.1.3/Chart.lock index bde3e60fdc5..cba25e2a5f2 100644 --- a/incubator/appdaemon/0.1.3/Chart.lock +++ b/incubator/appdaemon/0.1.3/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:08.427461856Z" +generated: "2021-05-09T16:55:52.31859259Z" diff --git a/incubator/bazarr/3.1.5/Chart.lock b/incubator/bazarr/3.1.5/Chart.lock index fb339a419c9..72f4b5ac2f0 100644 --- a/incubator/bazarr/3.1.5/Chart.lock +++ b/incubator/bazarr/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:08.715833913Z" +generated: "2021-05-09T16:55:52.64796353Z" diff --git a/incubator/calibre-web/3.1.5/Chart.lock b/incubator/calibre-web/3.1.5/Chart.lock index 595891da119..55f35767824 100644 --- a/incubator/calibre-web/3.1.5/Chart.lock +++ b/incubator/calibre-web/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:09.000781169Z" +generated: "2021-05-09T16:55:52.91631Z" diff --git a/incubator/deluge/3.1.5/Chart.lock b/incubator/deluge/3.1.5/Chart.lock index d1473f52fbe..1edfbcf3856 100644 --- a/incubator/deluge/3.1.5/Chart.lock +++ b/incubator/deluge/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:09.283922625Z" +generated: "2021-05-09T16:55:53.177837517Z" diff --git a/incubator/fireflyiii/1.0.1/Chart.lock b/incubator/fireflyiii/1.0.1/Chart.lock index 964398b22fd..63633ffdfa1 100644 --- a/incubator/fireflyiii/1.0.1/Chart.lock +++ b/incubator/fireflyiii/1.0.1/Chart.lock @@ -6,4 +6,4 @@ dependencies: repository: https://charts.bitnami.com/bitnami version: 10.4.2 digest: sha256:feb1c5155f10c340b5a984ce39eb7c532c938ac71287bfa65398ef3fe458c902 -generated: "2021-05-09T11:50:13.077234273Z" +generated: "2021-05-09T16:55:56.440029894Z" diff --git a/incubator/freshrss/3.1.5/Chart.lock b/incubator/freshrss/3.1.5/Chart.lock index 85a18b355c2..d4ea2cbfbab 100644 --- a/incubator/freshrss/3.1.5/Chart.lock +++ b/incubator/freshrss/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:17.116020778Z" +generated: "2021-05-09T16:55:59.795867372Z" diff --git a/incubator/gaps/3.1.5/Chart.lock b/incubator/gaps/3.1.5/Chart.lock index 3247d95ace2..6295858a324 100644 --- a/incubator/gaps/3.1.5/Chart.lock +++ b/incubator/gaps/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:17.414240552Z" +generated: "2021-05-09T16:56:00.088138882Z" diff --git a/incubator/grocy/3.1.5/Chart.lock b/incubator/grocy/3.1.5/Chart.lock index 337e8ad2e88..8b165f0e6cc 100644 --- a/incubator/grocy/3.1.5/Chart.lock +++ b/incubator/grocy/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:17.701457924Z" +generated: "2021-05-09T16:56:00.397328396Z" diff --git a/incubator/heimdall/3.1.5/Chart.lock b/incubator/heimdall/3.1.5/Chart.lock index 31611e65a4f..978569f448d 100644 --- a/incubator/heimdall/3.1.5/Chart.lock +++ b/incubator/heimdall/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:17.983886594Z" +generated: "2021-05-09T16:56:00.659740121Z" diff --git a/incubator/lazylibrarian/3.1.5/Chart.lock b/incubator/lazylibrarian/3.1.5/Chart.lock index 1be6aa9996f..0181971308c 100644 --- a/incubator/lazylibrarian/3.1.5/Chart.lock +++ b/incubator/lazylibrarian/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:18.278954367Z" +generated: "2021-05-09T16:56:00.933334015Z" diff --git a/incubator/lychee/3.1.5/Chart.lock b/incubator/lychee/3.1.5/Chart.lock index 85212f82047..700280a0ced 100644 --- a/incubator/lychee/3.1.5/Chart.lock +++ b/incubator/lychee/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:18.603044448Z" +generated: "2021-05-09T16:56:01.280694766Z" diff --git a/incubator/navidrome/3.1.5/Chart.lock b/incubator/navidrome/3.1.5/Chart.lock index b75b08037aa..9d521402006 100644 --- a/incubator/navidrome/3.1.5/Chart.lock +++ b/incubator/navidrome/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:18.910150624Z" +generated: "2021-05-09T16:56:01.571595526Z" diff --git a/incubator/node-red/3.1.5/Chart.lock b/incubator/node-red/3.1.5/Chart.lock index bba9dfd4e05..1630717ae96 100644 --- a/incubator/node-red/3.1.5/Chart.lock +++ b/incubator/node-red/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:19.210413998Z" +generated: "2021-05-09T16:56:01.873613864Z" diff --git a/incubator/nzbget/3.1.5/Chart.lock b/incubator/nzbget/3.1.5/Chart.lock index 2eed06af818..e825b6d4218 100644 --- a/incubator/nzbget/3.1.5/Chart.lock +++ b/incubator/nzbget/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:19.494439769Z" +generated: "2021-05-09T16:56:02.151642147Z" diff --git a/incubator/organizr/3.1.5/Chart.lock b/incubator/organizr/3.1.5/Chart.lock index 232915c684b..e4b672023d1 100644 --- a/incubator/organizr/3.1.5/Chart.lock +++ b/incubator/organizr/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:19.789768442Z" +generated: "2021-05-09T16:56:02.453306682Z" diff --git a/incubator/podgrab/1.0.3/Chart.lock b/incubator/podgrab/1.0.3/Chart.lock index 13747209bfc..53e6a8579fe 100644 --- a/incubator/podgrab/1.0.3/Chart.lock +++ b/incubator/podgrab/1.0.3/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:20.079510614Z" +generated: "2021-05-09T16:56:02.74762937Z" diff --git a/incubator/qbittorrent/3.1.5/Chart.lock b/incubator/qbittorrent/3.1.5/Chart.lock index dda652ce92c..4f03635140f 100644 --- a/incubator/qbittorrent/3.1.5/Chart.lock +++ b/incubator/qbittorrent/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:20.38399849Z" +generated: "2021-05-09T16:56:03.019829117Z" diff --git a/incubator/readarr/3.1.5/Chart.lock b/incubator/readarr/3.1.5/Chart.lock index edc56aabdc0..fee1c327d60 100644 --- a/incubator/readarr/3.1.5/Chart.lock +++ b/incubator/readarr/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:20.673098562Z" +generated: "2021-05-09T16:56:03.283120005Z" diff --git a/incubator/sabnzbd/3.1.5/Chart.lock b/incubator/sabnzbd/3.1.5/Chart.lock index 172c5a881d0..334c18b34aa 100644 --- a/incubator/sabnzbd/3.1.5/Chart.lock +++ b/incubator/sabnzbd/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:20.967760035Z" +generated: "2021-05-09T16:56:03.547099199Z" diff --git a/incubator/tvheadend/4.1.5/Chart.lock b/incubator/tvheadend/4.1.5/Chart.lock index 8888eae06f6..c55de4e1af9 100644 --- a/incubator/tvheadend/4.1.5/Chart.lock +++ b/incubator/tvheadend/4.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:21.264289508Z" +generated: "2021-05-09T16:56:03.81846314Z" diff --git a/incubator/unifi/3.1.5/Chart.lock b/incubator/unifi/3.1.5/Chart.lock index 8ba803939d5..41890e31755 100644 --- a/incubator/unifi/3.1.5/Chart.lock +++ b/incubator/unifi/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:21.55219068Z" +generated: "2021-05-09T16:56:04.101810457Z" diff --git a/stable/bitwarden/1.2.5/Chart.lock b/stable/bitwarden/1.2.5/Chart.lock index 6ea9eee200d..f318689b40d 100644 --- a/stable/bitwarden/1.2.5/Chart.lock +++ b/stable/bitwarden/1.2.5/Chart.lock @@ -6,4 +6,4 @@ dependencies: repository: https://charts.bitnami.com/bitnami version: 10.4.2 digest: sha256:feb1c5155f10c340b5a984ce39eb7c532c938ac71287bfa65398ef3fe458c902 -generated: "2021-05-09T11:49:56.565032782Z" +generated: "2021-05-09T16:55:40.436767251Z" diff --git a/stable/collabora-online/3.1.5/Chart.lock b/stable/collabora-online/3.1.5/Chart.lock index 0c93b3585f6..bcb10cb9e2f 100644 --- a/stable/collabora-online/3.1.5/Chart.lock +++ b/stable/collabora-online/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:00.426883995Z" +generated: "2021-05-09T16:55:43.852040782Z" diff --git a/stable/deepstack-cpu/1.0.3/Chart.lock b/stable/deepstack-cpu/1.0.3/Chart.lock index 7e697d0cc54..59e14ce0816 100644 --- a/stable/deepstack-cpu/1.0.3/Chart.lock +++ b/stable/deepstack-cpu/1.0.3/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:00.733024571Z" +generated: "2021-05-09T16:55:44.306015496Z" diff --git a/stable/emby/3.1.5/Chart.lock b/stable/emby/3.1.5/Chart.lock index 31f7605dd06..2b4ed8f23a8 100644 --- a/stable/emby/3.1.5/Chart.lock +++ b/stable/emby/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:01.00784623Z" +generated: "2021-05-09T16:55:44.591179678Z" diff --git a/stable/esphome/3.1.5/Chart.lock b/stable/esphome/3.1.5/Chart.lock index 763fbcb732e..d64c010e5e7 100644 --- a/stable/esphome/3.1.5/Chart.lock +++ b/stable/esphome/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:01.300781898Z" +generated: "2021-05-09T16:55:44.887504341Z" diff --git a/stable/handbrake/3.1.5/Chart.lock b/stable/handbrake/3.1.5/Chart.lock index 29cd959f7ca..80e349a8fcf 100644 --- a/stable/handbrake/3.1.5/Chart.lock +++ b/stable/handbrake/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:01.593266967Z" +generated: "2021-05-09T16:55:45.198849914Z" diff --git a/stable/home-assistant/3.1.5/Chart.lock b/stable/home-assistant/3.1.5/Chart.lock index 965e4883069..94c2d9df0b2 100644 --- a/stable/home-assistant/3.1.5/Chart.lock +++ b/stable/home-assistant/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:01.879201132Z" +generated: "2021-05-09T16:55:45.504675837Z" diff --git a/stable/jackett/3.1.5/Chart.lock b/stable/jackett/3.1.5/Chart.lock index 84371957f96..f09f342a1ec 100644 --- a/stable/jackett/3.1.5/Chart.lock +++ b/stable/jackett/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:02.1713768Z" +generated: "2021-05-09T16:55:45.797550496Z" diff --git a/stable/jellyfin/3.1.5/Chart.lock b/stable/jellyfin/3.1.5/Chart.lock index ceb3f072457..a71ef0ae8d0 100644 --- a/stable/jellyfin/3.1.5/Chart.lock +++ b/stable/jellyfin/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:02.473420474Z" +generated: "2021-05-09T16:55:46.094053083Z" diff --git a/stable/kms/3.1.5/Chart.lock b/stable/kms/3.1.5/Chart.lock index a01bbaf2384..402b454b3e7 100644 --- a/stable/kms/3.1.5/Chart.lock +++ b/stable/kms/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:02.779066251Z" +generated: "2021-05-09T16:55:46.398302729Z" diff --git a/stable/lidarr/3.1.5/Chart.lock b/stable/lidarr/3.1.5/Chart.lock index ad300ef76cb..8e4689204f3 100644 --- a/stable/lidarr/3.1.5/Chart.lock +++ b/stable/lidarr/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:03.065817416Z" +generated: "2021-05-09T16:55:46.699317251Z" diff --git a/stable/ombi/3.1.5/Chart.lock b/stable/ombi/3.1.5/Chart.lock index 130e8bea802..bf8d871a6dd 100644 --- a/stable/ombi/3.1.5/Chart.lock +++ b/stable/ombi/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:03.335377271Z" +generated: "2021-05-09T16:55:47.016764699Z" diff --git a/stable/plex/2.1.5/Chart.lock b/stable/plex/2.1.5/Chart.lock index 2e110223704..bf844fa8bb8 100644 --- a/stable/plex/2.1.5/Chart.lock +++ b/stable/plex/2.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:03.618161634Z" +generated: "2021-05-09T16:55:47.297729066Z" diff --git a/stable/radarr/3.1.5/Chart.lock b/stable/radarr/3.1.5/Chart.lock index 72d3dc27ef0..011f1ac83ac 100644 --- a/stable/radarr/3.1.5/Chart.lock +++ b/stable/radarr/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:03.890931492Z" +generated: "2021-05-09T16:55:47.543885065Z" diff --git a/stable/sonarr/3.1.5/Chart.lock b/stable/sonarr/3.1.5/Chart.lock index ac85b9bba95..1b31e512188 100644 --- a/stable/sonarr/3.1.5/Chart.lock +++ b/stable/sonarr/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:04.167254751Z" +generated: "2021-05-09T16:55:47.827073049Z" diff --git a/stable/syncthing/3.1.5/Chart.lock b/stable/syncthing/3.1.5/Chart.lock index e38ab27bc8b..f2efb899445 100644 --- a/stable/syncthing/3.1.5/Chart.lock +++ b/stable/syncthing/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:04.444319611Z" +generated: "2021-05-09T16:55:48.101019462Z" diff --git a/stable/tautulli/3.1.5/Chart.lock b/stable/tautulli/3.1.5/Chart.lock index c3ca5eb9002..56736102192 100644 --- a/stable/tautulli/3.1.5/Chart.lock +++ b/stable/tautulli/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:04.749849087Z" +generated: "2021-05-09T16:55:48.398673157Z" diff --git a/stable/traefik/3.2.3/Chart.lock b/stable/traefik/3.2.3/Chart.lock index 69b818ee369..dd5ce84a032 100644 --- a/stable/traefik/3.2.3/Chart.lock +++ b/stable/traefik/3.2.3/Chart.lock @@ -6,4 +6,4 @@ dependencies: repository: https://helm.traefik.io/traefik version: 9.19.0 digest: sha256:36e9220703d2e08d55b28c3cf34a8d0a0e85bfdc089b88e9b875522f1410b85b -generated: "2021-05-09T11:50:05.808363497Z" +generated: "2021-05-09T16:55:49.594686982Z" diff --git a/stable/transmission/3.1.5/Chart.lock b/stable/transmission/3.1.5/Chart.lock index 04d6f79384e..8e326d478da 100644 --- a/stable/transmission/3.1.5/Chart.lock +++ b/stable/transmission/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:07.557361884Z" +generated: "2021-05-09T16:55:51.465713912Z" diff --git a/stable/truecommand/3.1.5/Chart.lock b/stable/truecommand/3.1.5/Chart.lock index 53b5f3c572f..84ee4a2a88e 100644 --- a/stable/truecommand/3.1.5/Chart.lock +++ b/stable/truecommand/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:07.845241141Z" +generated: "2021-05-09T16:55:51.733950981Z" diff --git a/stable/zwavejs2mqtt/3.1.5/Chart.lock b/stable/zwavejs2mqtt/3.1.5/Chart.lock index 74c6c935774..9feb1a36ae8 100644 --- a/stable/zwavejs2mqtt/3.1.5/Chart.lock +++ b/stable/zwavejs2mqtt/3.1.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 3.5.5 digest: sha256:ea66c36be2fa73e56bc33f7e89af9ce338cdfbed0b347484888e87228b825015 -generated: "2021-05-09T11:50:08.141317199Z" +generated: "2021-05-09T16:55:52.024527922Z"