diff --git a/incubator/authelia/1.3.0/Chart.lock b/incubator/authelia/1.3.0/Chart.lock index d67071efd29..052f5724375 100644 --- a/incubator/authelia/1.3.0/Chart.lock +++ b/incubator/authelia/1.3.0/Chart.lock @@ -9,4 +9,4 @@ dependencies: repository: https://charts.bitnami.com/bitnami version: 15.0.3 digest: sha256:ef39067328029b87716d9271f3eb04d774aeaa67289d8ab5e34deeca7db9003a -generated: "2021-08-30T14:06:52.335848764Z" +generated: "2021-08-30T14:30:40.511053356Z" diff --git a/incubator/custom-app/0.2.1/CONFIG.md b/incubator/custom-app/0.2.1/CONFIG.md new file mode 100644 index 00000000000..e69de29bb2d diff --git a/incubator/custom-app/0.2.1/Chart.lock b/incubator/custom-app/0.2.1/Chart.lock new file mode 100644 index 00000000000..55303a1a64a --- /dev/null +++ b/incubator/custom-app/0.2.1/Chart.lock @@ -0,0 +1,6 @@ +dependencies: +- name: common + repository: https://truecharts.org/ + version: 6.12.1 +digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da +generated: "2021-08-30T14:30:47.111825274Z" diff --git a/incubator/custom-app/0.2.1/Chart.yaml b/incubator/custom-app/0.2.1/Chart.yaml new file mode 100644 index 00000000000..a71389d9a64 --- /dev/null +++ b/incubator/custom-app/0.2.1/Chart.yaml @@ -0,0 +1,22 @@ +apiVersion: v2 +appVersion: auto +dependencies: +- name: common + repository: https://truecharts.org/ + version: 6.12.1 +deprecated: false +description: Advanced tool to create your own TrueCharts-based App +home: https://github.com/truecharts/apps/tree/master/charts/stable/custom-app +icon: https://truecharts.org/_static/img/custom-app-icon.png +keywords: +- custom +kubeVersion: '>=1.16.0-0' +maintainers: +- email: info@truecharts.org + name: TrueCharts + url: truecharts.org +name: custom-app +sources: +- https://github.com/truecharts/apps/tree/master/charts/stable/custom-app +type: application +version: 0.2.1 diff --git a/incubator/custom-app/0.2.1/README.md b/incubator/custom-app/0.2.1/README.md new file mode 100644 index 00000000000..e69de29bb2d diff --git a/incubator/custom-app/0.2.1/app-readme.md b/incubator/custom-app/0.2.1/app-readme.md new file mode 100644 index 00000000000..c539c410987 --- /dev/null +++ b/incubator/custom-app/0.2.1/app-readme.md @@ -0,0 +1 @@ +Advanced tool to create your own TrueCharts-based App diff --git a/incubator/custom-app/0.2.1/charts/common-6.12.1.tgz b/incubator/custom-app/0.2.1/charts/common-6.12.1.tgz new file mode 100644 index 00000000000..7dacd3795f3 Binary files /dev/null and b/incubator/custom-app/0.2.1/charts/common-6.12.1.tgz differ diff --git a/incubator/custom-app/0.2.1/ix_values.yaml b/incubator/custom-app/0.2.1/ix_values.yaml new file mode 100644 index 00000000000..18f32919de7 --- /dev/null +++ b/incubator/custom-app/0.2.1/ix_values.yaml @@ -0,0 +1,10 @@ +## +# This file contains Values.yaml content that gets added to the output of questions.yaml +# It's ONLY meant for content that the user is NOT expected to change. +# Example: Everything under "image" is not included in questions.yaml but is included here. +## + +## +# Most other defaults are set in questions.yaml +# For other options please refer to the wiki, default_values.yaml or the common library chart +## diff --git a/incubator/custom-app/0.2.1/questions.yaml b/incubator/custom-app/0.2.1/questions.yaml new file mode 100644 index 00000000000..466c7fbe240 --- /dev/null +++ b/incubator/custom-app/0.2.1/questions.yaml @@ -0,0 +1,1194 @@ +groups: + - name: "Container Image" + description: "Image to be used for container" + - name: "Controller" + description: "Configure workload deployment" + - name: "Container Configuration" + description: "additional container configuration" + - name: "App Configuration" + description: "App specific config options" + - name: "Networking and Services" + description: "Configure Network and Services for container" + - name: "Storage and Persistence" + description: "Persist and share data that is separate from the container" + - name: "Ingress" + description: "Ingress Configuration" + - name: "Security and Permissions" + description: "Configure security context and permissions" + - name: "Resources and Devices" + description: "Specify resources/devices to be allocated to workload" + - name: "Advanced" + description: "Advanced Configuration" +portals: + web_portal: + protocols: + - "$kubernetes-resource_configmap_portal_protocol" + host: + - "$kubernetes-resource_configmap_portal_host" + ports: + - "$kubernetes-resource_configmap_portal_port" +questions: + - variable: portal + group: "Container Image" + label: "Configure Portal Button" + schema: + type: dict + hidden: true + attrs: + - variable: enabled + label: "Enable" + description: "enable the portal button" + schema: + hidden: true + editable: false + type: boolean + default: true + + - variable: image + group: "Container Image" + label: "Container" + schema: + type: dict + attrs: + - variable: repository + label: "Container Repository" + schema: + type: string + default: "ghcr.io/k8s-at-home/jackett" + required: true + - variable: tag + label: "Container Tag" + schema: + type: string + default: "v0.18.616" + required: true + - variable: pullPolicy + label: "Container Pullpolicy" + schema: + type: string + default: "IfNotPresent" + enum: + - value: "IfNotPresent" + description: "IfNotPresent" + - value: "Always" + description: "Always" + - value: "Never" + description: "Never" + + - variable: controller + group: "Controller" + label: "" + schema: + type: dict + attrs: + - variable: type + description: "Please specify type of workload to deploy" + label: "(Advanced) Controller Type" + schema: + type: string + default: "deployment" + required: true + enum: + - value: "deployment" + description: "Deployment" + - value: "statefulset" + description: "Statefulset" + - value: "daemonset" + description: "Daemonset" + - variable: replicas + description: "Number of desired pod replicas" + label: "Desired Replicas" + schema: + type: int + default: 1 + required: true + - variable: strategy + description: "Please specify type of workload to deploy" + label: "(Advanced) Update Strategy" + schema: + type: string + default: "Recreate" + required: true + enum: + - value: "Recreate" + description: "Recreate: Kill existing pods before creating new ones" + - value: "RollingUpdate" + description: "RollingUpdate: Create new pods and then kill old ones" + - value: "OnDelete" + description: "(Legacy) OnDelete: ignore .spec.template changes" + - variable: labelsList + label: "Controller Labels" + schema: + type: list + default: [] + items: + - variable: labelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: annotationsList + label: " Controller Annotations" + schema: + type: list + default: [] + items: + - variable: annotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + + - variable: podLabelsList + group: "Container Configuration" + label: "Pod Labels" + schema: + type: list + default: [] + items: + - variable: podLabelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + + - variable: podAnnotationsList + group: "Container Configuration" + label: "Pod Annotations" + schema: + type: list + default: [] + items: + - variable: podAnnotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + + - variable: termination + group: "Container Configuration" + label: "Termination settings" + schema: + type: dict + attrs: + - variable: gracePeriodSeconds + label: "Grace Period Seconds" + schema: + type: int + default: 10 + + - variable: env + group: "Container Configuration" + label: "Image Environment" + schema: + type: dict + attrs: + - variable: TZ + label: "Timezone" + schema: + type: string + default: "Etc/UTC" + $ref: + - "definitions/timezone" + # Configure Enviroment Variables + - variable: envList + label: "Image environment" + group: "Container Configuration" + schema: + type: list + default: [] + items: + - variable: envItem + label: "Environment Variable" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + + - variable: hostNetwork + group: "Networking and Services" + label: "Enable Host Networking" + schema: + type: boolean + default: false + + - variable: service + group: "Networking and Services" + label: "Configure Service(s)" + schema: + type: dict + attrs: + - variable: main + label: "Main Service" + description: "The Primary service on which the healthcheck runs, often the webUI" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the service" + schema: + type: boolean + default: true + hidden: true + - variable: type + label: "Service Type" + description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer" + schema: + type: string + default: "NodePort" + enum: + - value: "NodePort" + description: "NodePort" + - value: "ClusterIP" + description: "ClusterIP" + - value: "LoadBalancer" + description: "LoadBalancer" + - variable: loadBalancerIP + label: "LoadBalancer IP" + description: "LoadBalancerIP" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: string + default: "" + - variable: externalIPs + label: "External IP's" + description: "External IP's" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: list + default: [] + items: + - variable: externalIP + label: "External IP" + schema: + type: string + - variable: ports + label: "Service's Port(s) Configuration" + schema: + type: dict + attrs: + - variable: main + label: "Main Service Port Configuration" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true + - variable: protocol + label: "Port Type" + schema: + type: string + default: "HTTP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: port + label: "Container Port" + schema: + type: int + required: true + - variable: targetPort + label: "Target Port" + description: "This port exposes the container port on the service" + schema: + type: int + required: true + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort" + schema: + type: int + min: 9000 + max: 65535 + - variable: portsList + label: "Additional Service Ports" + schema: + type: list + default: [] + items: + - variable: portsListEntry + label: "Custom ports" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Port Name" + schema: + type: string + default: "" + - variable: protocol + label: "Port Type" + schema: + type: string + default: "TCP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: port + label: "Container Port" + schema: + type: int + required: true + - variable: targetPort + label: "Target Port" + description: "This port exposes the container port on the service" + schema: + type: int + required: true + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort" + schema: + type: int + min: 9000 + max: 65535 + + - variable: serviceList + label: "Additional Services" + group: "Storage and Persistence" + schema: + type: list + default: [] + items: + - variable: serviceListEntry + label: "Custom Service" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the service" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Name" + schema: + type: string + default: "" + - variable: type + label: "Service Type" + description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer" + schema: + type: string + default: "NodePort" + enum: + - value: "NodePort" + description: "NodePort" + - value: "ClusterIP" + description: "ClusterIP" + - value: "LoadBalancer" + description: "LoadBalancer" + - variable: loadBalancerIP + label: "LoadBalancer IP" + description: "LoadBalancerIP" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: string + default: "" + - variable: externalIPs + label: "External IP's" + description: "External IP's" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: list + default: [] + items: + - variable: externalIP + label: "External IP" + schema: + type: string + - variable: portsList + label: "Additional Service Ports" + schema: + type: list + default: [] + items: + - variable: portsListEntry + label: "Custom ports" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Port Name" + schema: + type: string + default: "" + - variable: protocol + label: "Port Type" + schema: + type: string + default: "TCP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: port + label: "Container Port" + schema: + type: int + required: true + - variable: targetPort + label: "Target Port" + description: "This port exposes the container port on the service" + schema: + type: int + required: true + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort" + schema: + type: int + min: 9000 + max: 65535 + + - variable: persistenceList + label: "Additional app storage" + group: "Storage and Persistence" + schema: + type: list + default: [] + items: + - variable: persistenceListEntry + label: "Custom Storage" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the storage" + schema: + type: boolean + default: true + - variable: type + label: "(Advanced) Type of Storage" + description: "Sets the persistence type" + schema: + type: string + default: "hostPath" + enum: + - value: "pvc" + description: "pvc" + - value: "emptyDir" + description: "emptyDir" + - value: "hostPath" + description: "hostPath" + - variable: storageClass + label: "(Advanced) storageClass" + description: " Warning: Anything other than SCALE-ZFS will break rollback!" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "SCALE-ZFS" + - variable: labelsList + label: "Labels" + schema: + type: list + default: [] + items: + - variable: labelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: annotationsList + label: "Annotations" + schema: + type: list + default: [] + items: + - variable: annotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + show_if: [["type", "=", "hostPath"]] + type: boolean + default: true + - variable: readOnly + label: "readOnly" + schema: + type: boolean + default: false + - variable: hostPath + label: "hostPath" + description: "Path inside the container the storage is mounted" + schema: + show_if: [["type", "=", "hostPath"]] + type: hostpath + - variable: hostPathType + label: "hostPath Type" + schema: + show_if: [["type", "=", "hostPath"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "DirectoryOrCreate" + description: "DirectoryOrCreate" + - value: "Directory" + description: "Directory" + - value: "FileOrCreate" + description: "FileOrCreate" + - value: "File" + description: "File" + - value: "Socket" + description: "Socket" + - value: "CharDevice" + description: "CharDevice" + - value: "BlockDevice" + description: "BlockDevice" + - variable: mountPath + label: "mountPath" + description: "Path inside the container the storage is mounted" + schema: + type: string + required: true + default: "" + - variable: medium + label: "EmptyDir Medium" + schema: + show_if: [["type", "=", "emptyDir"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "Memory" + description: "Memory" + - variable: accessMode + label: "Access Mode (Advanced)" + description: "Allow or disallow multiple PVC's writhing to the same PVC" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "ReadWriteOnce" + enum: + - value: "ReadWriteOnce" + description: "ReadWriteOnce" + - value: "ReadOnlyMany" + description: "ReadOnlyMany" + - value: "ReadWriteMany" + description: "ReadWriteMany" + - variable: size + label: "Size quotum of storage" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "100Gi" + + - variable: ingress + label: "" + group: "Ingress" + schema: + type: dict + attrs: + - variable: main + label: "Main Ingress" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable Ingress" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: ingressClassName + label: "IngressClass Name" + schema: + type: string + default: "" + - variable: labelsList + label: "Labels" + schema: + type: list + default: [] + items: + - variable: labelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: annotationsList + label: "Annotations" + schema: + type: list + default: [] + items: + - variable: annotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: hosts + label: "Hosts" + schema: + type: list + default: [] + items: + - variable: hostEntry + label: "Host" + schema: + type: dict + attrs: + - variable: host + label: "HostName" + schema: + type: string + default: "" + required: true + - variable: paths + label: "Paths" + schema: + type: list + default: [] + items: + - variable: pathEntry + label: "Host" + schema: + type: dict + attrs: + - variable: path + label: "path" + schema: + type: string + required: true + default: "/" + - variable: pathType + label: "pathType" + schema: + type: string + required: true + default: "Prefix" + - variable: tls + label: "TLS-Settings" + schema: + type: list + default: [] + items: + - variable: tlsEntry + label: "Host" + schema: + type: dict + attrs: + - variable: hosts + label: "Certificate Hosts" + schema: + type: list + default: [] + items: + - variable: host + label: "Host" + schema: + type: string + default: "" + required: true + - variable: scaleCert + label: "Select TrueNAS SCALE Certificate" + schema: + type: int + $ref: + - "definitions/certificate" + - variable: entrypoint + label: "Traefik Entrypoint" + description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" + schema: + type: string + default: "websecure" + required: true + - variable: middlewares + label: "Traefik Middlewares" + description: "Add previously created Traefik Middlewares to this Ingress" + schema: + type: list + default: [] + items: + - variable: name + label: "Name" + schema: + type: string + default: "" + required: true + + + + + - variable: ingressList + label: "Additional Ingress" + group: "Ingress" + schema: + type: list + default: [] + items: + - variable: ingressListEntry + label: "Custom Ingress" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable Ingress" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Name" + schema: + type: string + default: "" + - variable: ingressClassName + label: "IngressClass Name" + schema: + type: string + default: "" + - variable: labelsList + label: "Labels" + schema: + type: list + default: [] + items: + - variable: labelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: annotationsList + label: "Annotations" + schema: + type: list + default: [] + items: + - variable: annotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: hosts + label: "Hosts" + schema: + type: list + default: [] + items: + - variable: hostEntry + label: "Host" + schema: + type: dict + attrs: + - variable: host + label: "HostName" + schema: + type: string + default: "" + required: true + - variable: paths + label: "Paths" + schema: + type: list + default: [] + items: + - variable: pathEntry + label: "Host" + schema: + type: dict + attrs: + - variable: path + label: "path" + schema: + type: string + required: true + default: "/" + - variable: pathType + label: "pathType" + schema: + type: string + required: true + default: "Prefix" + - variable: service + label: "Linked Service" + schema: + type: dict + attrs: + - variable: name + label: "Service Name" + schema: + type: string + default: "" + - variable: port + label: "Service Port" + schema: + type: int + - variable: tls + label: "TLS-Settings" + schema: + type: list + default: [] + items: + - variable: tlsEntry + label: "Host" + schema: + type: dict + attrs: + - variable: hosts + label: "Certificate Hosts" + schema: + type: list + default: [] + items: + - variable: host + label: "Host" + schema: + type: string + default: "" + required: true + - variable: scaleCert + label: "Select TrueNAS SCALE Certificate" + schema: + type: int + $ref: + - "definitions/certificate" + - variable: entrypoint + label: "Traefik Entrypoint" + description: "Entrypoint used by Traefik when using Traefik as Ingress Provider" + schema: + type: string + default: "websecure" + required: true + - variable: middlewares + label: "Traefik Middlewares" + description: "Add previously created Traefik Middlewares to this Ingress" + schema: + type: list + default: [] + items: + - variable: name + label: "Name" + schema: + type: string + default: "" + required: true + + + - variable: securityContext + group: "Security and Permissions" + label: "Security Context" + schema: + type: dict + attrs: + - variable: privileged + label: "Privileged mode" + schema: + type: boolean + default: false + - variable: readOnlyRootFilesystem + label: "ReadOnly Root Filesystem" + schema: + type: boolean + default: false + - variable: allowPrivilegeEscalation + label: "Allow Privilege Escalation" + schema: + type: boolean + default: true + + - variable: podSecurityContext + group: "Security and Permissions" + label: "Pod Security Context" + schema: + type: dict + attrs: + - variable: runAsNonRoot + label: "runAsNonRoot" + schema: + type: boolean + default: true + - variable: runAsUser + label: "runAsUser" + description: "The UserID of the user running the application" + schema: + type: int + default: 568 + - variable: runAsGroup + label: "runAsGroup" + description: The groupID this App of the user running the application" + schema: + type: int + default: 568 + - variable: fsGroup + label: "fsGroup" + description: "The group that should own ALL storage." + schema: + type: int + default: 568 + - variable: supplementalGroups + label: "supplementalGroups" + schema: + type: list + default: [] + items: + - variable: supplementalGroupsEntry + label: "supplementalGroup" + schema: + type: int + - variable: fsGroupChangePolicy + label: "When should we take ownership?" + schema: + type: string + default: "OnRootMismatch" + enum: + - value: "OnRootMismatch" + description: "OnRootMismatch" + - value: "Always" + description: "Always" + + - variable: scaleGPU + label: "GPU Configuration" + group: "Resources and Devices" + schema: + type: dict + $ref: + - "definitions/gpuConfiguration" + attrs: [] + + - variable: deviceList + label: "Mount (USB) devices" + group: "Resources and Devices" + schema: + type: list + default: [] + items: + - variable: deviceListEntry + label: "Device" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the storage" + schema: + type: boolean + default: true + - variable: type + label: "(Advanced) Type of Storage" + description: "Sets the persistence type" + schema: + type: string + default: "hostPath" + hidden: true + - variable: readOnly + label: "readOnly" + schema: + type: boolean + default: false + - variable: hostPath + label: "Host Device Path" + description: "Path to the device on the host system" + schema: + type: path + - variable: mountPath + label: "Container Device Path" + description: "Path inside the container the device is mounted" + schema: + type: string + default: "/dev/ttyACM0" + + - variable: resources + group: "Resources and Devices" + label: "Resource Limits" + schema: + type: dict + attrs: + - variable: limits + label: "Advanced Limit Resource Consumption" + schema: + type: dict + attrs: + - variable: cpu + label: "CPU" + schema: + type: string + default: "2000m" + - variable: memory + label: "Memory RAM" + schema: + type: string + default: "2Gi" + - variable: requests + label: "Advanced Request minimum resources required" + schema: + type: dict + attrs: + - variable: cpu + label: "CPU" + schema: + type: string + default: "10m" + - variable: memory + label: "Memory RAM" + schema: + type: string + default: "50Mi" + + - variable: autoscaling + group: "Resources and Devices" + label: "Horizontal Pod Autoscaler" + schema: + type: dict + attrs: + - variable: enabled + label: "enabled" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: target + label: "Target" + description: "deployment name, defaults to main deployment" + schema: + type: string + default: "" + - variable: minReplicas + label: "Minimum Replicas" + schema: + type: int + default: 1 + - variable: maxReplicas + label: "Maximum Replicas" + schema: + type: int + default: 5 + - variable: targetCPUUtilizationPercentage + label: "Target CPU Utilization Percentage" + schema: + type: int + default: 80 + - variable: targetMemoryUtilizationPercentage + label: "Target Memory Utilization Percentage" + schema: + type: int + default: 80 diff --git a/incubator/custom-app/0.2.1/templates/common.yaml b/incubator/custom-app/0.2.1/templates/common.yaml new file mode 100644 index 00000000000..a6613c2ce21 --- /dev/null +++ b/incubator/custom-app/0.2.1/templates/common.yaml @@ -0,0 +1 @@ +{{ include "common.all" . }} diff --git a/incubator/custom-app/0.2.1/test_values.yaml b/incubator/custom-app/0.2.1/test_values.yaml new file mode 100644 index 00000000000..c1ad52b84e3 --- /dev/null +++ b/incubator/custom-app/0.2.1/test_values.yaml @@ -0,0 +1,43 @@ +# Default values for Jackett. + +image: + repository: ghcr.io/k8s-at-home/jackett + pullPolicy: IfNotPresent + tag: v0.18.616 + +strategy: + type: Recreate + + +service: + main: + enabled: true + ports: + main: + port: 9117 + portsList: + - name: "extraport" + enabled: true + port: 9118 + +serviceList: + - name: extraservice + enabled: true + portsList: + - name: "extrasvcport" + enabled: true + port: 9119 + +env: {} + # TZ: UTC + # PUID: 1001 + # PGID: 1001 + + +persistence: + config: + enabled: true + mountPath: "/config" + type: pvc + accessMode: ReadWriteOnce + size: "100Gi" diff --git a/incubator/custom-app/0.2.1/values.yaml b/incubator/custom-app/0.2.1/values.yaml new file mode 100644 index 00000000000..e69de29bb2d diff --git a/incubator/jdownloader2/0.3.0/Chart.lock b/incubator/jdownloader2/0.3.0/Chart.lock index 3f6e7a0d776..72c27303db4 100644 --- a/incubator/jdownloader2/0.3.0/Chart.lock +++ b/incubator/jdownloader2/0.3.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:07:05.726809071Z" +generated: "2021-08-30T14:30:50.838684391Z" diff --git a/incubator/nextcloud/3.4.0/Chart.lock b/incubator/nextcloud/3.4.0/Chart.lock index 7f4a9b05964..e14d1b74101 100644 --- a/incubator/nextcloud/3.4.0/Chart.lock +++ b/incubator/nextcloud/3.4.0/Chart.lock @@ -9,4 +9,4 @@ dependencies: repository: https://charts.bitnami.com/bitnami version: 15.0.3 digest: sha256:ef39067328029b87716d9271f3eb04d774aeaa67289d8ab5e34deeca7db9003a -generated: "2021-08-30T14:07:13.265680984Z" +generated: "2021-08-30T14:30:56.619213302Z" diff --git a/stable/airsonic/1.11.0/Chart.lock b/stable/airsonic/1.11.0/Chart.lock index f303a9af11d..bb6f0545c0e 100644 --- a/stable/airsonic/1.11.0/Chart.lock +++ b/stable/airsonic/1.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T13:59:42.930996603Z" +generated: "2021-08-30T14:25:12.572354633Z" diff --git a/stable/appdaemon/3.11.0/Chart.lock b/stable/appdaemon/3.11.0/Chart.lock index 804cb5f68e1..ef46240013c 100644 --- a/stable/appdaemon/3.11.0/Chart.lock +++ b/stable/appdaemon/3.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T13:59:47.797595576Z" +generated: "2021-08-30T14:25:16.389048912Z" diff --git a/stable/bazarr/6.11.0/Chart.lock b/stable/bazarr/6.11.0/Chart.lock index f662c2ec7c0..9e1d3608aa7 100644 --- a/stable/bazarr/6.11.0/Chart.lock +++ b/stable/bazarr/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T13:59:52.684449126Z" +generated: "2021-08-30T14:25:20.073791716Z" diff --git a/stable/booksonic-air/1.9.0/Chart.lock b/stable/booksonic-air/1.9.0/Chart.lock index 03fbdc3087f..c37c1b15315 100644 --- a/stable/booksonic-air/1.9.0/Chart.lock +++ b/stable/booksonic-air/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T13:59:57.562272602Z" +generated: "2021-08-30T14:25:23.78202531Z" diff --git a/stable/calibre-web/6.11.0/Chart.lock b/stable/calibre-web/6.11.0/Chart.lock index 759ce8d159d..da052dbc986 100644 --- a/stable/calibre-web/6.11.0/Chart.lock +++ b/stable/calibre-web/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:00:07.377861682Z" +generated: "2021-08-30T14:25:31.208503941Z" diff --git a/stable/calibre/1.9.0/Chart.lock b/stable/calibre/1.9.0/Chart.lock index 19d619fb670..a9ca554f15f 100644 --- a/stable/calibre/1.9.0/Chart.lock +++ b/stable/calibre/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:00:02.431489171Z" +generated: "2021-08-30T14:25:27.498572249Z" diff --git a/stable/collabora-online/6.11.0/Chart.lock b/stable/collabora-online/6.11.0/Chart.lock index c18443e424d..eb070c2864b 100644 --- a/stable/collabora-online/6.11.0/Chart.lock +++ b/stable/collabora-online/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:00:12.217028272Z" +generated: "2021-08-30T14:25:34.915255032Z" diff --git a/stable/deconz/1.9.0/Chart.lock b/stable/deconz/1.9.0/Chart.lock index 94c03765cf6..a6eca993e92 100644 --- a/stable/deconz/1.9.0/Chart.lock +++ b/stable/deconz/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:00:17.117126547Z" +generated: "2021-08-30T14:25:38.629389117Z" diff --git a/stable/deepstack-cpu/4.11.0/Chart.lock b/stable/deepstack-cpu/4.11.0/Chart.lock index dde41d0ef87..2601ac5e01b 100644 --- a/stable/deepstack-cpu/4.11.0/Chart.lock +++ b/stable/deepstack-cpu/4.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:00:21.901968262Z" +generated: "2021-08-30T14:25:42.330978785Z" diff --git a/stable/deluge/6.11.0/Chart.lock b/stable/deluge/6.11.0/Chart.lock index 6a995d3ba85..0e20c534809 100644 --- a/stable/deluge/6.11.0/Chart.lock +++ b/stable/deluge/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:00:26.750559239Z" +generated: "2021-08-30T14:25:46.048047349Z" diff --git a/stable/dizquetv/1.9.0/Chart.lock b/stable/dizquetv/1.9.0/Chart.lock index 5b5de6f4e94..f80642be7ff 100644 --- a/stable/dizquetv/1.9.0/Chart.lock +++ b/stable/dizquetv/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:00:31.694074561Z" +generated: "2021-08-30T14:25:49.800267629Z" diff --git a/stable/duplicati/1.9.0/Chart.lock b/stable/duplicati/1.9.0/Chart.lock index 16c02134790..e4ac8d854cf 100644 --- a/stable/duplicati/1.9.0/Chart.lock +++ b/stable/duplicati/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:00:36.55709573Z" +generated: "2021-08-30T14:25:53.52100045Z" diff --git a/stable/emby/6.11.0/Chart.lock b/stable/emby/6.11.0/Chart.lock index fda5d07e503..1e1defc77cc 100644 --- a/stable/emby/6.11.0/Chart.lock +++ b/stable/emby/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:00:41.330776007Z" +generated: "2021-08-30T14:25:57.205464977Z" diff --git a/stable/esphome/6.11.0/Chart.lock b/stable/esphome/6.11.0/Chart.lock index 8e7127a51cf..67d8f2567df 100644 --- a/stable/esphome/6.11.0/Chart.lock +++ b/stable/esphome/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:00:46.189281051Z" +generated: "2021-08-30T14:26:01.024988164Z" diff --git a/stable/external-service/1.4.0/Chart.lock b/stable/external-service/1.4.0/Chart.lock index 1e7dff5cc8f..4b3d7bfd31f 100644 --- a/stable/external-service/1.4.0/Chart.lock +++ b/stable/external-service/1.4.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:00:50.992172986Z" +generated: "2021-08-30T14:26:04.728453323Z" diff --git a/stable/fireflyiii/5.7.0/Chart.lock b/stable/fireflyiii/5.7.0/Chart.lock index 4c9c7a6601e..aff0b19bc7b 100644 --- a/stable/fireflyiii/5.7.0/Chart.lock +++ b/stable/fireflyiii/5.7.0/Chart.lock @@ -6,4 +6,4 @@ dependencies: repository: https://truecharts.org/ version: 1.3.0 digest: sha256:d3e59b1fb333b720f8acae4cd687b65a2ee8e1ff783c876426fbe7309d0987b3 -generated: "2021-08-30T14:00:56.735210149Z" +generated: "2021-08-30T14:26:09.156369006Z" diff --git a/stable/flaresolverr/1.9.0/Chart.lock b/stable/flaresolverr/1.9.0/Chart.lock index 69313e9230b..f8947368eb5 100644 --- a/stable/flaresolverr/1.9.0/Chart.lock +++ b/stable/flaresolverr/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:01:02.746391756Z" +generated: "2021-08-30T14:26:13.781930195Z" diff --git a/stable/flood/1.9.0/Chart.lock b/stable/flood/1.9.0/Chart.lock index 8a8a483ac90..acde646cb9c 100644 --- a/stable/flood/1.9.0/Chart.lock +++ b/stable/flood/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:01:07.565134441Z" +generated: "2021-08-30T14:26:17.506863449Z" diff --git a/stable/focalboard/1.9.0/Chart.lock b/stable/focalboard/1.9.0/Chart.lock index 26ea8dad5c4..72fbbd99c33 100644 --- a/stable/focalboard/1.9.0/Chart.lock +++ b/stable/focalboard/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:01:12.34649097Z" +generated: "2021-08-30T14:26:21.210025057Z" diff --git a/stable/freeradius/1.7.0/Chart.lock b/stable/freeradius/1.7.0/Chart.lock index 50816c073a5..52812fc52c3 100644 --- a/stable/freeradius/1.7.0/Chart.lock +++ b/stable/freeradius/1.7.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:01:17.207265731Z" +generated: "2021-08-30T14:26:24.900442319Z" diff --git a/stable/freshrss/6.11.0/Chart.lock b/stable/freshrss/6.11.0/Chart.lock index d90cb3d469f..42f76dc6cb4 100644 --- a/stable/freshrss/6.11.0/Chart.lock +++ b/stable/freshrss/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:01:21.970379004Z" +generated: "2021-08-30T14:26:28.609578393Z" diff --git a/stable/gaps/6.11.0/Chart.lock b/stable/gaps/6.11.0/Chart.lock index aaff95a841b..d8adf37b394 100644 --- a/stable/gaps/6.11.0/Chart.lock +++ b/stable/gaps/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:01:27.13109739Z" +generated: "2021-08-30T14:26:32.304374152Z" diff --git a/stable/gonic/1.9.0/Chart.lock b/stable/gonic/1.9.0/Chart.lock index 1580bfcfc03..3fb11edd036 100644 --- a/stable/gonic/1.9.0/Chart.lock +++ b/stable/gonic/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:01:31.948786509Z" +generated: "2021-08-30T14:26:36.001776573Z" diff --git a/stable/grocy/6.11.0/Chart.lock b/stable/grocy/6.11.0/Chart.lock index 8b59bd136ef..b799de5e55f 100644 --- a/stable/grocy/6.11.0/Chart.lock +++ b/stable/grocy/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:01:36.879678564Z" +generated: "2021-08-30T14:26:39.710231979Z" diff --git a/stable/handbrake/6.11.0/Chart.lock b/stable/handbrake/6.11.0/Chart.lock index cd16f197681..75f666e9474 100644 --- a/stable/handbrake/6.11.0/Chart.lock +++ b/stable/handbrake/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:01:41.773091423Z" +generated: "2021-08-30T14:26:43.411361811Z" diff --git a/stable/haste-server/1.11.0/Chart.lock b/stable/haste-server/1.11.0/Chart.lock index 0c675aec06d..f5e8dd910d6 100644 --- a/stable/haste-server/1.11.0/Chart.lock +++ b/stable/haste-server/1.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:01:46.664977697Z" +generated: "2021-08-30T14:26:47.102663245Z" diff --git a/stable/healthchecks/1.9.0/Chart.lock b/stable/healthchecks/1.9.0/Chart.lock index 099c361e437..83bf04d8bd5 100644 --- a/stable/healthchecks/1.9.0/Chart.lock +++ b/stable/healthchecks/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:01:51.434496635Z" +generated: "2021-08-30T14:26:50.821508016Z" diff --git a/stable/heimdall/6.11.0/Chart.lock b/stable/heimdall/6.11.0/Chart.lock index 625adebbbde..a4e62d3ffe9 100644 --- a/stable/heimdall/6.11.0/Chart.lock +++ b/stable/heimdall/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:01:56.332190926Z" +generated: "2021-08-30T14:26:54.531147228Z" diff --git a/stable/home-assistant/6.11.0/Chart.lock b/stable/home-assistant/6.11.0/Chart.lock index 842af696822..987931b4c08 100644 --- a/stable/home-assistant/6.11.0/Chart.lock +++ b/stable/home-assistant/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:02:01.260352396Z" +generated: "2021-08-30T14:26:58.218383255Z" diff --git a/stable/hyperion-ng/1.9.0/Chart.lock b/stable/hyperion-ng/1.9.0/Chart.lock index 081955a2806..cd603a00d71 100644 --- a/stable/hyperion-ng/1.9.0/Chart.lock +++ b/stable/hyperion-ng/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:02:06.146839755Z" +generated: "2021-08-30T14:27:01.945896381Z" diff --git a/stable/jackett/6.11.0/Chart.lock b/stable/jackett/6.11.0/Chart.lock index 4d860bb51aa..88c7895e12d 100644 --- a/stable/jackett/6.11.0/Chart.lock +++ b/stable/jackett/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:02:11.010905256Z" +generated: "2021-08-30T14:27:05.677581429Z" diff --git a/stable/jellyfin/6.11.0/Chart.lock b/stable/jellyfin/6.11.0/Chart.lock index 3cb8af5c7a2..f3f205d2ff4 100644 --- a/stable/jellyfin/6.11.0/Chart.lock +++ b/stable/jellyfin/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:02:15.901733889Z" +generated: "2021-08-30T14:27:09.393064735Z" diff --git a/stable/kms/6.11.0/Chart.lock b/stable/kms/6.11.0/Chart.lock index a7164b5a994..044b3a50dd4 100644 --- a/stable/kms/6.11.0/Chart.lock +++ b/stable/kms/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:02:20.775114912Z" +generated: "2021-08-30T14:27:13.10627814Z" diff --git a/stable/komga/1.9.0/Chart.lock b/stable/komga/1.9.0/Chart.lock index 5591b2234b2..fb412c1d1f4 100644 --- a/stable/komga/1.9.0/Chart.lock +++ b/stable/komga/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:02:25.590900956Z" +generated: "2021-08-30T14:27:16.81100654Z" diff --git a/stable/lazylibrarian/6.11.0/Chart.lock b/stable/lazylibrarian/6.11.0/Chart.lock index 95f87b478f1..6e6f6eaeb62 100644 --- a/stable/lazylibrarian/6.11.0/Chart.lock +++ b/stable/lazylibrarian/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:02:30.497460866Z" +generated: "2021-08-30T14:27:20.554677638Z" diff --git a/stable/librespeed/1.9.0/Chart.lock b/stable/librespeed/1.9.0/Chart.lock index e6f1dea7ba3..90f4ef8359d 100644 --- a/stable/librespeed/1.9.0/Chart.lock +++ b/stable/librespeed/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:02:35.349995226Z" +generated: "2021-08-30T14:27:24.244115558Z" diff --git a/stable/lidarr/6.11.0/Chart.lock b/stable/lidarr/6.11.0/Chart.lock index e477f29f17c..0dbb25c68e2 100644 --- a/stable/lidarr/6.11.0/Chart.lock +++ b/stable/lidarr/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:02:40.174249909Z" +generated: "2021-08-30T14:27:27.959537678Z" diff --git a/stable/littlelink/1.5.0/Chart.lock b/stable/littlelink/1.5.0/Chart.lock index 675e03980bb..73ed6951b79 100644 --- a/stable/littlelink/1.5.0/Chart.lock +++ b/stable/littlelink/1.5.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:02:45.129760298Z" +generated: "2021-08-30T14:27:31.638914508Z" diff --git a/stable/lychee/6.11.0/Chart.lock b/stable/lychee/6.11.0/Chart.lock index b51abae9ce0..43e09561cfc 100644 --- a/stable/lychee/6.11.0/Chart.lock +++ b/stable/lychee/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:02:49.865529746Z" +generated: "2021-08-30T14:27:35.339044695Z" diff --git a/stable/mealie/1.11.0/Chart.lock b/stable/mealie/1.11.0/Chart.lock index 0baa436aa2a..e1b58dd511d 100644 --- a/stable/mealie/1.11.0/Chart.lock +++ b/stable/mealie/1.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:02:54.708537373Z" +generated: "2021-08-30T14:27:39.023309696Z" diff --git a/stable/mosquitto/1.11.0/Chart.lock b/stable/mosquitto/1.11.0/Chart.lock index 6183fcba63d..68f76c2101c 100644 --- a/stable/mosquitto/1.11.0/Chart.lock +++ b/stable/mosquitto/1.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:02:59.528382956Z" +generated: "2021-08-30T14:27:42.720133368Z" diff --git a/stable/mylar/1.9.0/Chart.lock b/stable/mylar/1.9.0/Chart.lock index a70ad1abdcb..3b707306b8e 100644 --- a/stable/mylar/1.9.0/Chart.lock +++ b/stable/mylar/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:03:04.376324288Z" +generated: "2021-08-30T14:27:46.432154431Z" diff --git a/stable/navidrome/6.11.0/Chart.lock b/stable/navidrome/6.11.0/Chart.lock index 808010d3834..106671ae519 100644 --- a/stable/navidrome/6.11.0/Chart.lock +++ b/stable/navidrome/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:03:09.19730611Z" +generated: "2021-08-30T14:27:50.114714834Z" diff --git a/stable/node-red/6.11.0/Chart.lock b/stable/node-red/6.11.0/Chart.lock index 43ea7af7868..1d4e38f7fd1 100644 --- a/stable/node-red/6.11.0/Chart.lock +++ b/stable/node-red/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:03:14.024703555Z" +generated: "2021-08-30T14:27:53.816920477Z" diff --git a/stable/nullserv/1.9.0/Chart.lock b/stable/nullserv/1.9.0/Chart.lock index a7b29c34109..b046c8a2f27 100644 --- a/stable/nullserv/1.9.0/Chart.lock +++ b/stable/nullserv/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:03:18.855647671Z" +generated: "2021-08-30T14:27:57.519237794Z" diff --git a/stable/nzbget/6.11.0/Chart.lock b/stable/nzbget/6.11.0/Chart.lock index 7f50a22c241..021964a79d0 100644 --- a/stable/nzbget/6.11.0/Chart.lock +++ b/stable/nzbget/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:03:23.782273474Z" +generated: "2021-08-30T14:28:01.198630478Z" diff --git a/stable/nzbhydra/6.11.0/Chart.lock b/stable/nzbhydra/6.11.0/Chart.lock index 3a0b440e70d..872fadaa76c 100644 --- a/stable/nzbhydra/6.11.0/Chart.lock +++ b/stable/nzbhydra/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:03:28.747185072Z" +generated: "2021-08-30T14:28:04.898541284Z" diff --git a/stable/octoprint/1.9.0/Chart.lock b/stable/octoprint/1.9.0/Chart.lock index 0d791978884..9770def9043 100644 --- a/stable/octoprint/1.9.0/Chart.lock +++ b/stable/octoprint/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:03:33.595991415Z" +generated: "2021-08-30T14:28:08.596395974Z" diff --git a/stable/omada-controller/1.9.0/Chart.lock b/stable/omada-controller/1.9.0/Chart.lock index 43bf2f3418b..2f156be0c2f 100644 --- a/stable/omada-controller/1.9.0/Chart.lock +++ b/stable/omada-controller/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:03:38.458858059Z" +generated: "2021-08-30T14:28:12.313182847Z" diff --git a/stable/ombi/6.11.0/Chart.lock b/stable/ombi/6.11.0/Chart.lock index 052d8c11eab..143f98c77d2 100644 --- a/stable/ombi/6.11.0/Chart.lock +++ b/stable/ombi/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:03:43.313031489Z" +generated: "2021-08-30T14:28:16.011947425Z" diff --git a/stable/openldap/1.7.0/Chart.lock b/stable/openldap/1.7.0/Chart.lock index d70d93ea013..606d90f5ae8 100644 --- a/stable/openldap/1.7.0/Chart.lock +++ b/stable/openldap/1.7.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:03:48.143813052Z" +generated: "2021-08-30T14:28:19.715206467Z" diff --git a/stable/organizr/6.11.0/Chart.lock b/stable/organizr/6.11.0/Chart.lock index b9f54219b13..6c8aa880176 100644 --- a/stable/organizr/6.11.0/Chart.lock +++ b/stable/organizr/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:03:53.026527484Z" +generated: "2021-08-30T14:28:23.41126465Z" diff --git a/stable/overseerr/1.9.0/Chart.lock b/stable/overseerr/1.9.0/Chart.lock index 2513988c956..d906d971715 100644 --- a/stable/overseerr/1.9.0/Chart.lock +++ b/stable/overseerr/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:03:57.86380332Z" +generated: "2021-08-30T14:28:27.109587065Z" diff --git a/stable/owncast/1.9.0/Chart.lock b/stable/owncast/1.9.0/Chart.lock index 7f7e7a0b46d..15a34afa3c7 100644 --- a/stable/owncast/1.9.0/Chart.lock +++ b/stable/owncast/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:04:02.762847645Z" +generated: "2021-08-30T14:28:30.816791583Z" diff --git a/stable/owncloud-ocis/1.9.0/Chart.lock b/stable/owncloud-ocis/1.9.0/Chart.lock index 2ed9fb8134f..aa2f5fd7732 100644 --- a/stable/owncloud-ocis/1.9.0/Chart.lock +++ b/stable/owncloud-ocis/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:04:07.594421116Z" +generated: "2021-08-30T14:28:34.49546175Z" diff --git a/stable/pgadmin/1.8.0/Chart.lock b/stable/pgadmin/1.8.0/Chart.lock index 1488ba1f063..10eac7bd449 100644 --- a/stable/pgadmin/1.8.0/Chart.lock +++ b/stable/pgadmin/1.8.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:04:12.419174031Z" +generated: "2021-08-30T14:28:38.197047842Z" diff --git a/stable/photoprism/1.9.0/Chart.lock b/stable/photoprism/1.9.0/Chart.lock index 746ee163adb..e019bebbeb8 100644 --- a/stable/photoprism/1.9.0/Chart.lock +++ b/stable/photoprism/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:04:17.242099905Z" +generated: "2021-08-30T14:28:41.89069621Z" diff --git a/stable/phpldapadmin/1.8.0/Chart.lock b/stable/phpldapadmin/1.8.0/Chart.lock index 913c712c3c1..4f3ac54c868 100644 --- a/stable/phpldapadmin/1.8.0/Chart.lock +++ b/stable/phpldapadmin/1.8.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:04:22.105459556Z" +generated: "2021-08-30T14:28:45.560848058Z" diff --git a/stable/piaware/1.9.0/Chart.lock b/stable/piaware/1.9.0/Chart.lock index ecc59e3b636..ee75b09e8ea 100644 --- a/stable/piaware/1.9.0/Chart.lock +++ b/stable/piaware/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:04:26.929128332Z" +generated: "2021-08-30T14:28:49.235307229Z" diff --git a/stable/plex/5.11.0/Chart.lock b/stable/plex/5.11.0/Chart.lock index caf58390132..23a62c75fd0 100644 --- a/stable/plex/5.11.0/Chart.lock +++ b/stable/plex/5.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:04:31.784538529Z" +generated: "2021-08-30T14:28:52.916122579Z" diff --git a/stable/podgrab/4.11.0/Chart.lock b/stable/podgrab/4.11.0/Chart.lock index 48dc2360c70..dbfbbd27285 100644 --- a/stable/podgrab/4.11.0/Chart.lock +++ b/stable/podgrab/4.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:04:36.652597319Z" +generated: "2021-08-30T14:28:56.755919405Z" diff --git a/stable/postgresql/1.5.0/Chart.lock b/stable/postgresql/1.5.0/Chart.lock index d959fcb21a6..64743b7dff5 100644 --- a/stable/postgresql/1.5.0/Chart.lock +++ b/stable/postgresql/1.5.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:04:41.50538219Z" +generated: "2021-08-30T14:29:00.458160394Z" diff --git a/stable/pretend-youre-xyzzy/1.9.0/Chart.lock b/stable/pretend-youre-xyzzy/1.9.0/Chart.lock index 4300fa0260c..5329a079645 100644 --- a/stable/pretend-youre-xyzzy/1.9.0/Chart.lock +++ b/stable/pretend-youre-xyzzy/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:04:46.276020371Z" +generated: "2021-08-30T14:29:04.152905531Z" diff --git a/stable/protonmail-bridge/1.9.0/Chart.lock b/stable/protonmail-bridge/1.9.0/Chart.lock index b25cb06331c..d579ae1e80c 100644 --- a/stable/protonmail-bridge/1.9.0/Chart.lock +++ b/stable/protonmail-bridge/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:04:51.037780374Z" +generated: "2021-08-30T14:29:07.869582691Z" diff --git a/stable/prowlarr/1.11.0/Chart.lock b/stable/prowlarr/1.11.0/Chart.lock index b29b5adc24e..17cbebbdd43 100644 --- a/stable/prowlarr/1.11.0/Chart.lock +++ b/stable/prowlarr/1.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:04:55.927317454Z" +generated: "2021-08-30T14:29:11.571594338Z" diff --git a/stable/pyload/1.9.0/Chart.lock b/stable/pyload/1.9.0/Chart.lock index 6daa0748b4b..d636f6aabc4 100644 --- a/stable/pyload/1.9.0/Chart.lock +++ b/stable/pyload/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:05:00.781603368Z" +generated: "2021-08-30T14:29:15.290801394Z" diff --git a/stable/qbittorrent/6.11.0/Chart.lock b/stable/qbittorrent/6.11.0/Chart.lock index 04b86574303..193331d9942 100644 --- a/stable/qbittorrent/6.11.0/Chart.lock +++ b/stable/qbittorrent/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:05:05.652775593Z" +generated: "2021-08-30T14:29:18.958168045Z" diff --git a/stable/radarr/6.11.0/Chart.lock b/stable/radarr/6.11.0/Chart.lock index 72797ed51df..ddc234f8c69 100644 --- a/stable/radarr/6.11.0/Chart.lock +++ b/stable/radarr/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:05:10.526953795Z" +generated: "2021-08-30T14:29:22.67274435Z" diff --git a/stable/readarr/6.11.0/Chart.lock b/stable/readarr/6.11.0/Chart.lock index 12ef68f1e48..e4b7bac2587 100644 --- a/stable/readarr/6.11.0/Chart.lock +++ b/stable/readarr/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:05:15.349272772Z" +generated: "2021-08-30T14:29:26.375785131Z" diff --git a/stable/reg/1.11.0/Chart.lock b/stable/reg/1.11.0/Chart.lock index f61727a1670..e9547d8a9a5 100644 --- a/stable/reg/1.11.0/Chart.lock +++ b/stable/reg/1.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:05:20.194532771Z" +generated: "2021-08-30T14:29:30.078294803Z" diff --git a/stable/resilio-sync/1.9.0/Chart.lock b/stable/resilio-sync/1.9.0/Chart.lock index 749bb108f03..72512b93d42 100644 --- a/stable/resilio-sync/1.9.0/Chart.lock +++ b/stable/resilio-sync/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:05:25.062382431Z" +generated: "2021-08-30T14:29:33.76161186Z" diff --git a/stable/sabnzbd/6.11.0/Chart.lock b/stable/sabnzbd/6.11.0/Chart.lock index ef9632fd1ec..037fdf1f19d 100644 --- a/stable/sabnzbd/6.11.0/Chart.lock +++ b/stable/sabnzbd/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:05:29.951790036Z" +generated: "2021-08-30T14:29:37.470074199Z" diff --git a/stable/ser2sock/1.9.0/Chart.lock b/stable/ser2sock/1.9.0/Chart.lock index f4dde8ff7fd..2e2d34bffd8 100644 --- a/stable/ser2sock/1.9.0/Chart.lock +++ b/stable/ser2sock/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:05:34.78303963Z" +generated: "2021-08-30T14:29:41.148942096Z" diff --git a/stable/sonarr/6.11.0/Chart.lock b/stable/sonarr/6.11.0/Chart.lock index e8eee701c88..8754332b5e0 100644 --- a/stable/sonarr/6.11.0/Chart.lock +++ b/stable/sonarr/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:05:39.736123432Z" +generated: "2021-08-30T14:29:44.847249102Z" diff --git a/stable/stash/1.9.0/Chart.lock b/stable/stash/1.9.0/Chart.lock index eca880d79fa..1bb52836a37 100644 --- a/stable/stash/1.9.0/Chart.lock +++ b/stable/stash/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:05:44.627301969Z" +generated: "2021-08-30T14:29:48.530365263Z" diff --git a/stable/syncthing/6.11.0/Chart.lock b/stable/syncthing/6.11.0/Chart.lock index 6bfe8ddff24..b7eba8ff552 100644 --- a/stable/syncthing/6.11.0/Chart.lock +++ b/stable/syncthing/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:05:49.368042093Z" +generated: "2021-08-30T14:29:52.24065621Z" diff --git a/stable/tautulli/6.11.0/Chart.lock b/stable/tautulli/6.11.0/Chart.lock index 6adc22ac770..4897d29b654 100644 --- a/stable/tautulli/6.11.0/Chart.lock +++ b/stable/tautulli/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:05:54.257829634Z" +generated: "2021-08-30T14:29:55.926045676Z" diff --git a/stable/thelounge/1.11.0/Chart.lock b/stable/thelounge/1.11.0/Chart.lock index b1f4a248c60..0350fd88ce5 100644 --- a/stable/thelounge/1.11.0/Chart.lock +++ b/stable/thelounge/1.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:05:59.067992243Z" +generated: "2021-08-30T14:29:59.716217202Z" diff --git a/stable/traefik/6.13.0/Chart.lock b/stable/traefik/6.13.0/Chart.lock index 164df6525b3..2b4dd8ab86e 100644 --- a/stable/traefik/6.13.0/Chart.lock +++ b/stable/traefik/6.13.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:06:03.83764365Z" +generated: "2021-08-30T14:30:03.402447619Z" diff --git a/stable/transmission/6.11.0/Chart.lock b/stable/transmission/6.11.0/Chart.lock index 370b8f9320a..24d6e0b38dd 100644 --- a/stable/transmission/6.11.0/Chart.lock +++ b/stable/transmission/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:06:08.702741179Z" +generated: "2021-08-30T14:30:07.12288194Z" diff --git a/stable/truecommand/6.11.0/Chart.lock b/stable/truecommand/6.11.0/Chart.lock index 8f8f3a2d6db..e4b6948381c 100644 --- a/stable/truecommand/6.11.0/Chart.lock +++ b/stable/truecommand/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:06:13.566253589Z" +generated: "2021-08-30T14:30:10.842329787Z" diff --git a/stable/tvheadend/7.11.0/Chart.lock b/stable/tvheadend/7.11.0/Chart.lock index a16ed97fcdb..f48f420bbf5 100644 --- a/stable/tvheadend/7.11.0/Chart.lock +++ b/stable/tvheadend/7.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:06:18.387804239Z" +generated: "2021-08-30T14:30:14.543339379Z" diff --git a/stable/unifi/6.11.0/Chart.lock b/stable/unifi/6.11.0/Chart.lock index 3f87add3b93..4b0058415dc 100644 --- a/stable/unifi/6.11.0/Chart.lock +++ b/stable/unifi/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:06:23.289555214Z" +generated: "2021-08-30T14:30:18.254965077Z" diff --git a/stable/unpackerr/1.11.0/Chart.lock b/stable/unpackerr/1.11.0/Chart.lock index 0174cb4df74..033741c266d 100644 --- a/stable/unpackerr/1.11.0/Chart.lock +++ b/stable/unpackerr/1.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:06:28.2143986Z" +generated: "2021-08-30T14:30:21.968476048Z" diff --git a/stable/vaultwarden/4.7.0/Chart.lock b/stable/vaultwarden/4.7.0/Chart.lock index 537db1a0d69..1a74769e99c 100644 --- a/stable/vaultwarden/4.7.0/Chart.lock +++ b/stable/vaultwarden/4.7.0/Chart.lock @@ -6,4 +6,4 @@ dependencies: repository: https://truecharts.org/ version: 1.3.0 digest: sha256:d3e59b1fb333b720f8acae4cd687b65a2ee8e1ff783c876426fbe7309d0987b3 -generated: "2021-08-30T14:06:33.963294987Z" +generated: "2021-08-30T14:30:26.388901636Z" diff --git a/stable/xteve/1.9.0/Chart.lock b/stable/xteve/1.9.0/Chart.lock index 9ab9ecf10f1..eaa137e4e9e 100644 --- a/stable/xteve/1.9.0/Chart.lock +++ b/stable/xteve/1.9.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.1 digest: sha256:3d1411574041c79e6137bbcf90b2ebd7bbd6939a312e30af3e2a8210af58cde2 -generated: "2021-08-30T14:06:39.868367363Z" +generated: "2021-08-30T14:30:31.011811659Z" diff --git a/stable/zwavejs2mqtt/6.11.0/Chart.lock b/stable/zwavejs2mqtt/6.11.0/Chart.lock index f61f4f04b55..254ca023b8e 100644 --- a/stable/zwavejs2mqtt/6.11.0/Chart.lock +++ b/stable/zwavejs2mqtt/6.11.0/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.1 digest: sha256:6686a739b4506463623d25054850dad3053bddee78e3cab32c58a32ba2f8d1da -generated: "2021-08-30T14:06:44.7556059Z" +generated: "2021-08-30T14:30:34.711820304Z"