diff --git a/incubator/custom-app/0.2.14/Chart.lock b/incubator/custom-app/0.2.14/Chart.lock index 2e4153f5d2..4a2050b2d6 100644 --- a/incubator/custom-app/0.2.14/Chart.lock +++ b/incubator/custom-app/0.2.14/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:40:33.443036169Z" +generated: "2021-09-02T15:55:33.999128899Z" diff --git a/incubator/jdownloader2/0.3.11/Chart.lock b/incubator/jdownloader2/0.3.11/Chart.lock index bc0898ea70..956dc33474 100644 --- a/incubator/jdownloader2/0.3.11/Chart.lock +++ b/incubator/jdownloader2/0.3.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:40:38.515241405Z" +generated: "2021-09-02T15:55:38.836932107Z" diff --git a/incubator/k8s-gateway/0.0.1/CONFIG.md b/incubator/k8s-gateway/0.0.1/CONFIG.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/incubator/k8s-gateway/0.0.1/Chart.lock b/incubator/k8s-gateway/0.0.1/Chart.lock new file mode 100644 index 0000000000..eb44701b50 --- /dev/null +++ b/incubator/k8s-gateway/0.0.1/Chart.lock @@ -0,0 +1,6 @@ +dependencies: +- name: common + repository: https://truecharts.org/ + version: 6.13.3 +digest: sha256:0830cf69ca08fc00ef2577f7f2fd36de01eaeb815f3c41f830321a3a615c0b6a +generated: "2021-09-02T15:55:43.677380577Z" diff --git a/incubator/k8s-gateway/0.0.1/Chart.yaml b/incubator/k8s-gateway/0.0.1/Chart.yaml new file mode 100644 index 0000000000..1bfd906dce --- /dev/null +++ b/incubator/k8s-gateway/0.0.1/Chart.yaml @@ -0,0 +1,23 @@ +apiVersion: v2 +appVersion: auto +dependencies: +- name: common + repository: https://truecharts.org/ + version: 6.13.3 +deprecated: false +description: A Helm chart for the k8s_gateway CoreDNS plugin +home: https://github.com/truecharts/apps/tree/master/charts/stable/k8s-gateway +icon: https://cncf-branding.netlify.app/img/projects/coredns/icon/black/coredns-icon-black.png +keywords: +- DNS +- networking +kubeVersion: '>=1.16.0-0' +maintainers: +- email: info@truecharts.org + name: TrueCharts + url: truecharts.org +name: k8s-gateway +sources: +- https://github.com/ori-edge/k8s_gatewa +type: application +version: 0.0.1 diff --git a/incubator/k8s-gateway/0.0.1/README.md b/incubator/k8s-gateway/0.0.1/README.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/incubator/k8s-gateway/0.0.1/app-readme.md b/incubator/k8s-gateway/0.0.1/app-readme.md new file mode 100644 index 0000000000..9c521d68d5 --- /dev/null +++ b/incubator/k8s-gateway/0.0.1/app-readme.md @@ -0,0 +1 @@ +A Helm chart for the k8s_gateway CoreDNS plugin diff --git a/incubator/k8s-gateway/0.0.1/charts/common-6.13.3.tgz b/incubator/k8s-gateway/0.0.1/charts/common-6.13.3.tgz new file mode 100644 index 0000000000..50e1c43c8f Binary files /dev/null and b/incubator/k8s-gateway/0.0.1/charts/common-6.13.3.tgz differ diff --git a/incubator/k8s-gateway/0.0.1/helm-values.md b/incubator/k8s-gateway/0.0.1/helm-values.md new file mode 100644 index 0000000000..e69de29bb2 diff --git a/incubator/k8s-gateway/0.0.1/ix_values.yaml b/incubator/k8s-gateway/0.0.1/ix_values.yaml new file mode 100644 index 0000000000..0d0d952dea --- /dev/null +++ b/incubator/k8s-gateway/0.0.1/ix_values.yaml @@ -0,0 +1,110 @@ +## +# 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. +## + +# Default values for Jackett. + +image: + repository: quay.io/oriedge/k8s_gateway + pullPolicy: IfNotPresent + tag: v0.1.8 + +args: ["-conf", "/etc/coredns/Corefile"] + +# -- Delegated domain +domain: "example.com" + +# -- TTL for non-apex responses (in seconds) +ttl: 300 + +# -- Limit what kind of resources to watch, e.g. watchedResources: ["Ingress"] +watchedResources: ["Ingress"] + +# -- Service name of a secondary DNS server (should be `serviceName.namespace`) +secondary: "" + +# -- Override the default `serviceName.namespace` domain apex +apex: "" + +serviceAccount: + # -- Specifies whether a service account should be created + create: true + +# -- Create a ClusterRole and ClusterRoleBinding +# @default -- See below +rbac: + # -- Enables or disables the ClusterRole and ClusterRoleBinding + enabled: true + + # -- Set Rules on the ClusterRole + rules: + - apiGroups: + - "" + resources: + - services + - namespaces + verbs: + - list + - watch + - apiGroups: + - extensions + - networking.k8s.io + resources: + - ingresses + verbs: + - list + - watch + +service: + main: + enabled: true + ports: + main: + protocol: UDP + port: 53 + +probes: + liveness: + custom: true + spec: + httpGet: + path: /health + port: 8080 + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + + readiness: + custom: true + spec: + httpGet: + path: /ready + port: 8181 + scheme: HTTP + initialDelaySeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + + + startup: + custom: true + spec: + httpGet: + path: /ready + port: 8181 + scheme: HTTP + initialDelaySeconds: 3 + timeoutSeconds: 2 + periodSeconds: 5 + failureThreshold: 60 + + +## +# 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/k8s-gateway/0.0.1/questions.yaml b/incubator/k8s-gateway/0.0.1/questions.yaml new file mode 100644 index 0000000000..c18c690c93 --- /dev/null +++ b/incubator/k8s-gateway/0.0.1/questions.yaml @@ -0,0 +1,779 @@ +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" +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: false + - 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" + - variable: UMASK + label: "UMASK" + description: "Sets the UMASK env var for LinuxServer.io (compatible) containers" + schema: + type: string + default: "002" + # 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: domains + group: "App Configuration" + label: "Domains" + description: "Please refer to CoreDNS docs for options" + schema: + type: list + default: [] + items: + - variable: domainEntry + label: "" + schema: + type: dict + attrs: + - variable: domain + label: "Domain name" + schema: + type: string + required: true + default: "example.com" + - variable: dnsChallenge + label: "Forward dnsChallenge" + description: "Optional configuration option for DNS01 challenge that will redirect all acme" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable Ingress" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: domain + label: "Forward to Domain" + schema: + type: string + required: true + default: "dns01.clouddns.com" + + - variable: forward + group: "App Configuration" + label: "Forward DNS To" + schema: + type: dict + attrs: + - variable: enabled + label: "Enabled" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: primary + label: "Primary" + schema: + type: string + required: true + default: "1.1.1.1" + - variable: secondary + label: "Secondary" + schema: + type: string + required: true + default: "1.0.0.1" + - variable: options + label: "Forward Options" + description: "Please refer to CoreDNS docs for options" + schema: + type: list + default: [] + items: + - variable: optionEntry + label: "Option" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + required: true + default: "" + - variable: value + label: "Value" + schema: + type: string + required: true + default: "" + + - 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: "LoadBalancer" + 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: "UDP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: targetPort + label: "Target Port" + description: "This port exposes the container port on the service" + schema: + type: int + default: 53 + editable: false + hidden: true + - variable: port + label: "Container Port" + schema: + type: int + default: 53 + editable: true + required: true + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort" + schema: + type: int + min: 9000 + max: 65535 + + - variable: serviceList + label: "Additional Services" + group: "Storage and Persistence" + schema: + type: list + default: [] + items: + - variable: serviceListEntry + label: "Custom Service" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the service" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Name" + schema: + type: string + default: "" + - variable: type + label: "Service Type" + description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer" + schema: + type: string + default: "NodePort" + enum: + - value: "NodePort" + description: "NodePort" + - value: "ClusterIP" + description: "ClusterIP" + - value: "LoadBalancer" + description: "LoadBalancer" + - variable: loadBalancerIP + label: "LoadBalancer IP" + description: "LoadBalancerIP" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: string + default: "" + - variable: externalIPs + label: "External IP's" + description: "External IP's" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: list + default: [] + items: + - variable: externalIP + label: "External IP" + schema: + type: string + - variable: portsList + label: "Additional Service Ports" + schema: + type: list + default: [] + items: + - variable: portsListEntry + label: "Custom ports" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true + - variable: name + label: "Port Name" + schema: + type: string + default: "" + - variable: protocol + label: "Port Type" + schema: + type: string + default: "TCP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: targetPort + label: "Target Port" + description: "This port exposes the container port on the service" + schema: + type: int + required: true + - variable: port + label: "Container Port" + schema: + type: int + required: true + - variable: nodePort + label: "Node Port (Optional)" + description: "This port gets exposed to the node. Only considered when service type is NodePort" + schema: + type: int + min: 9000 + max: 65535 + + + - variable: persistenceList + label: "Additional app storage" + group: "Storage and Persistence" + schema: + type: list + default: [] + items: + - variable: persistenceListEntry + label: "Custom Storage" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the storage" + schema: + type: boolean + default: true + - variable: type + label: "(Advanced) Type of Storage" + description: "Sets the persistence type" + schema: + type: string + default: "hostPath" + enum: + - value: "pvc" + description: "pvc" + - value: "emptyDir" + description: "emptyDir" + - value: "hostPath" + description: "hostPath" + - variable: storageClass + label: "(Advanced) storageClass" + description: " Warning: Anything other than SCALE-ZFS will break rollback!" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "SCALE-ZFS" + - variable: labelsList + label: "Labels" + schema: + type: list + default: [] + items: + - variable: labelItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: annotationsList + label: "Annotations" + schema: + type: list + default: [] + items: + - variable: annotationItem + label: "Label" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + - variable: value + label: "Value" + schema: + type: string + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + show_if: [["type", "=", "hostPath"]] + type: boolean + default: true + - variable: readOnly + label: "readOnly" + schema: + type: boolean + default: false + - variable: hostPath + label: "hostPath" + description: "Path inside the container the storage is mounted" + schema: + show_if: [["type", "=", "hostPath"]] + type: hostpath + - variable: hostPathType + label: "hostPath Type" + schema: + show_if: [["type", "=", "hostPath"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "DirectoryOrCreate" + description: "DirectoryOrCreate" + - value: "Directory" + description: "Directory" + - value: "FileOrCreate" + description: "FileOrCreate" + - value: "File" + description: "File" + - value: "Socket" + description: "Socket" + - value: "CharDevice" + description: "CharDevice" + - value: "BlockDevice" + description: "BlockDevice" + - variable: mountPath + label: "mountPath" + description: "Path inside the container the storage is mounted" + schema: + type: string + required: true + default: "" + - variable: medium + label: "EmptyDir Medium" + schema: + show_if: [["type", "=", "emptyDir"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "Memory" + description: "Memory" + - variable: accessMode + label: "Access Mode (Advanced)" + description: "Allow or disallow multiple PVC's writhing to the same PVC" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "ReadWriteOnce" + enum: + - value: "ReadWriteOnce" + description: "ReadWriteOnce" + - value: "ReadOnlyMany" + description: "ReadOnlyMany" + - value: "ReadWriteMany" + description: "ReadWriteMany" + - variable: size + label: "Size quotum of storage" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "100Gi" + + + + - variable: 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: 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/k8s-gateway/0.0.1/templates/_configmap.tpl b/incubator/k8s-gateway/0.0.1/templates/_configmap.tpl new file mode 100644 index 0000000000..6ac015073f --- /dev/null +++ b/incubator/k8s-gateway/0.0.1/templates/_configmap.tpl @@ -0,0 +1,63 @@ +{{/* +Create the matchable regex from domain +*/}} +{{- define "k8s-gateway.configmap.regex" -}} +{{- if .Values.domain }} +{{- .Values.domain | replace "." "[.]" -}} +{{- else -}} + {{ "unset" }} +{{- end }} +{{- end -}} + +{{/* Define the configmap */}} +{{- define "k8s-gateway.configmap" -}} +{{- $values := .Values }} +{{- $fqdn := ( include "common.names.fqdn" . ) }} +--- +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.names.fullname" . }}-corefile + labels: + {{- include "common.labels" . | nindent 4 }} +data: + Corefile: |- + .:53 { + errors + log + health { + lameduck 5s + } + ready + {{- range .Values.domains }} + {{- if .dnsChallenge.enabled }} + template IN ANY {{ required "Delegated domain ('domain') is mandatory " .domain }} { + match "_acme-challenge[.](.*)[.]{{ include "k8s-gateway.configmap.regex" . }}" + answer "{{ "{{" }} .Name {{ "}}" }} 5 IN CNAME {{ "{{" }} index .Match 1 {{ "}}" }}.{{ required "DNS01 challenge domain is mandatory " $values.dnsChallenge.domain }}" + fallthrough + } + {{- end }} + k8s_gateway "{{ required "Delegated domain ('domain') is mandatory " .domain }}" { + apex {{ $values.apex | default $fqdn }} + ttl {{ $values.ttl }} + {{- if $values.secondary }} + secondary {{ $values.secondary }} + {{- end }} + {{- if $values.watchedResources }} + resources {{ join " " $values.watchedResources }} + {{- end }} + } + {{- end }} + prometheus 0.0.0.0:9153 + {{- if .Values.forward.enabled }} + forward . {{ .Values.forward.primary }} {{ .Values.forward.secondary }} { + {{- range .Values.forward.options }} + {{ .name }} {{ .value }} + {{- end }} + } + {{- end }} + loop + reload + loadbalance + } +{{- end -}} diff --git a/incubator/k8s-gateway/0.0.1/templates/common.yaml b/incubator/k8s-gateway/0.0.1/templates/common.yaml new file mode 100644 index 0000000000..9c42c9fb44 --- /dev/null +++ b/incubator/k8s-gateway/0.0.1/templates/common.yaml @@ -0,0 +1,24 @@ +{{/* Make sure all variables are set properly */}} +{{- include "common.values.setup" . }} + + +{{/* Render configmap for nextcloud */}} +{{- include "k8s-gateway.configmap" . }} + +{{/* Append the general configMap volume to the volumes */}} +{{- define "k8s-gateway.configvolume" -}} +enabled: "true" +mountPath: "/etc/coredns" +readOnly: true +type: "custom" +volumeSpec: + configMap: + name: {{ include "common.names.fullname" . }}-corefile + items: + - key: Corefile + path: Corefile +{{- end -}} + +{{- $_ := set .Values.persistence "config-volume" (include "k8s-gateway.configvolume" . | fromYaml) -}} +{{/* Render the templates */}} +{{ include "common.all" . }} diff --git a/incubator/k8s-gateway/0.0.1/test_values.yaml b/incubator/k8s-gateway/0.0.1/test_values.yaml new file mode 100644 index 0000000000..dbd7290ca9 --- /dev/null +++ b/incubator/k8s-gateway/0.0.1/test_values.yaml @@ -0,0 +1,115 @@ +# Default values for Jackett. + +image: + repository: quay.io/oriedge/k8s_gateway + pullPolicy: IfNotPresent + tag: v0.1.8 + +args: ["-conf", "/etc/coredns/Corefile"] + +# -- TTL for non-apex responses (in seconds) +ttl: 300 + + +# -- Limit what kind of resources to watch, e.g. watchedResources: ["Ingress"] +watchedResources: [] + +# -- Service name of a secondary DNS server (should be `serviceName.namespace`) +secondary: "" + +# -- Override the default `serviceName.namespace` domain apex +apex: "" + +# -- list of processed domains +domains: + # -- Delegated domain + - domain: "example.com" + # -- Optional configuration option for DNS01 challenge that will redirect all acme + # challenge requests to external cloud domain (e.g. managed by cert-manager) + # See: https://cert-manager.io/docs/configuration/acme/dns01/ + dnsChallenge: + enabled: false + domain: dns01.clouddns.com + +forward: + enabled: true + primary: tls://1.1.1.1 + secondary: tls://1.0.0.1 + options: + - name: tls_servername + value: cloudflare-dns.com + +serviceAccount: + # -- Specifies whether a service account should be created + create: true + +# -- Create a ClusterRole and ClusterRoleBinding +# @default -- See below +rbac: + # -- Enables or disables the ClusterRole and ClusterRoleBinding + enabled: true + + # -- Set Rules on the ClusterRole + rules: + - apiGroups: + - "" + resources: + - services + - namespaces + verbs: + - list + - watch + - apiGroups: + - extensions + - networking.k8s.io + resources: + - ingresses + verbs: + - list + - watch + +service: + main: + enabled: true + ports: + main: + protocol: UDP + port: 53 + +probes: + liveness: + custom: true + spec: + httpGet: + path: /health + port: 8080 + scheme: HTTP + initialDelaySeconds: 60 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + + readiness: + custom: true + spec: + httpGet: + path: /ready + port: 8181 + scheme: HTTP + initialDelaySeconds: 10 + timeoutSeconds: 5 + successThreshold: 1 + failureThreshold: 5 + + + startup: + custom: true + spec: + httpGet: + path: /ready + port: 8181 + scheme: HTTP + initialDelaySeconds: 3 + timeoutSeconds: 2 + periodSeconds: 5 + failureThreshold: 60 diff --git a/incubator/k8s-gateway/0.0.1/values.yaml b/incubator/k8s-gateway/0.0.1/values.yaml new file mode 100644 index 0000000000..e69de29bb2 diff --git a/incubator/k8s-gateway/item.yaml b/incubator/k8s-gateway/item.yaml new file mode 100644 index 0000000000..d199b006d9 --- /dev/null +++ b/incubator/k8s-gateway/item.yaml @@ -0,0 +1,3 @@ +categories: + - networking +icon_url: https://cncf-branding.netlify.app/img/projects/coredns/icon/black/coredns-icon-black.png diff --git a/incubator/nextcloud/3.7.5/Chart.lock b/incubator/nextcloud/3.7.5/Chart.lock index 2ba840a5b9..4d4a6ffc8b 100644 --- a/incubator/nextcloud/3.7.5/Chart.lock +++ b/incubator/nextcloud/3.7.5/Chart.lock @@ -9,4 +9,4 @@ dependencies: repository: https://charts.bitnami.com/bitnami version: 15.2.0 digest: sha256:87548afd82343ac058ba6cff29b6b23c02706538e42aa12ef7d183872537e857 -generated: "2021-09-02T13:40:46.330462198Z" +generated: "2021-09-02T15:55:51.465241469Z" diff --git a/stable/airsonic/1.11.11/Chart.lock b/stable/airsonic/1.11.11/Chart.lock index 54d114dafe..e01c8fb83d 100644 --- a/stable/airsonic/1.11.11/Chart.lock +++ b/stable/airsonic/1.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:33:10.210916674Z" +generated: "2021-09-02T15:48:12.638277872Z" diff --git a/stable/appdaemon/3.11.11/Chart.lock b/stable/appdaemon/3.11.11/Chart.lock index 3e10615402..299359f3d5 100644 --- a/stable/appdaemon/3.11.11/Chart.lock +++ b/stable/appdaemon/3.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:33:15.281359011Z" +generated: "2021-09-02T15:48:17.780513128Z" diff --git a/stable/authelia/1.6.20/Chart.lock b/stable/authelia/1.6.20/Chart.lock index 069b4c1bac..0c8e7e706f 100644 --- a/stable/authelia/1.6.20/Chart.lock +++ b/stable/authelia/1.6.20/Chart.lock @@ -9,4 +9,4 @@ dependencies: repository: https://charts.bitnami.com/bitnami version: 15.2.0 digest: sha256:87548afd82343ac058ba6cff29b6b23c02706538e42aa12ef7d183872537e857 -generated: "2021-09-02T13:33:22.935014948Z" +generated: "2021-09-02T15:48:25.346708248Z" diff --git a/stable/bazarr/6.11.12/Chart.lock b/stable/bazarr/6.11.12/Chart.lock index 953422eee2..e9cc534c11 100644 --- a/stable/bazarr/6.11.12/Chart.lock +++ b/stable/bazarr/6.11.12/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:33:32.057483883Z" +generated: "2021-09-02T15:48:34.202357581Z" diff --git a/stable/booksonic-air/1.9.11/Chart.lock b/stable/booksonic-air/1.9.11/Chart.lock index efa6867fb6..1294f33de5 100644 --- a/stable/booksonic-air/1.9.11/Chart.lock +++ b/stable/booksonic-air/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:33:37.033849782Z" +generated: "2021-09-02T15:48:39.052308665Z" diff --git a/stable/calibre-web/6.11.11/Chart.lock b/stable/calibre-web/6.11.11/Chart.lock index 3c893a4e68..7c64861c14 100644 --- a/stable/calibre-web/6.11.11/Chart.lock +++ b/stable/calibre-web/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:33:46.774864375Z" +generated: "2021-09-02T15:48:48.810723795Z" diff --git a/stable/calibre/1.9.11/Chart.lock b/stable/calibre/1.9.11/Chart.lock index 644719e02e..d247f1ca71 100644 --- a/stable/calibre/1.9.11/Chart.lock +++ b/stable/calibre/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:33:41.881817347Z" +generated: "2021-09-02T15:48:43.926818003Z" diff --git a/stable/collabora-online/6.11.11/Chart.lock b/stable/collabora-online/6.11.11/Chart.lock index 6b84efa0e7..d338aeab58 100644 --- a/stable/collabora-online/6.11.11/Chart.lock +++ b/stable/collabora-online/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:33:51.655818831Z" +generated: "2021-09-02T15:48:53.648603958Z" diff --git a/stable/deconz/1.9.11/Chart.lock b/stable/deconz/1.9.11/Chart.lock index 6cd50d9701..8ffe8bf58d 100644 --- a/stable/deconz/1.9.11/Chart.lock +++ b/stable/deconz/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:33:56.548193774Z" +generated: "2021-09-02T15:48:58.556879634Z" diff --git a/stable/deepstack-cpu/4.11.11/Chart.lock b/stable/deepstack-cpu/4.11.11/Chart.lock index d040fc66b5..74bc19e504 100644 --- a/stable/deepstack-cpu/4.11.11/Chart.lock +++ b/stable/deepstack-cpu/4.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:34:01.473137324Z" +generated: "2021-09-02T15:49:03.417781479Z" diff --git a/stable/deluge/6.11.11/Chart.lock b/stable/deluge/6.11.11/Chart.lock index 6464666e3b..f73e9f9497 100644 --- a/stable/deluge/6.11.11/Chart.lock +++ b/stable/deluge/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:34:06.391077325Z" +generated: "2021-09-02T15:49:08.296686165Z" diff --git a/stable/dizquetv/1.9.11/Chart.lock b/stable/dizquetv/1.9.11/Chart.lock index 0f703aef03..560f1b85e1 100644 --- a/stable/dizquetv/1.9.11/Chart.lock +++ b/stable/dizquetv/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:34:11.357442535Z" +generated: "2021-09-02T15:49:13.142669871Z" diff --git a/stable/duplicati/1.9.11/Chart.lock b/stable/duplicati/1.9.11/Chart.lock index 3df1ceb5e4..54f143dd9d 100644 --- a/stable/duplicati/1.9.11/Chart.lock +++ b/stable/duplicati/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:34:16.339952488Z" +generated: "2021-09-02T15:49:17.991381211Z" diff --git a/stable/emby/6.11.11/Chart.lock b/stable/emby/6.11.11/Chart.lock index cb483b2d42..07a707fcca 100644 --- a/stable/emby/6.11.11/Chart.lock +++ b/stable/emby/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:34:21.288749781Z" +generated: "2021-09-02T15:49:22.863894938Z" diff --git a/stable/esphome/6.11.11/Chart.lock b/stable/esphome/6.11.11/Chart.lock index 7df5a0d3e5..33bc03d120 100644 --- a/stable/esphome/6.11.11/Chart.lock +++ b/stable/esphome/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:34:26.193171499Z" +generated: "2021-09-02T15:49:27.734419223Z" diff --git a/stable/external-service/1.4.11/Chart.lock b/stable/external-service/1.4.11/Chart.lock index 0291df656c..22d35b1731 100644 --- a/stable/external-service/1.4.11/Chart.lock +++ b/stable/external-service/1.4.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:34:31.15131051Z" +generated: "2021-09-02T15:49:32.597559854Z" diff --git a/stable/fireflyiii/6.1.6/Chart.lock b/stable/fireflyiii/6.1.6/Chart.lock index eefd417d91..7d20d311c3 100644 --- a/stable/fireflyiii/6.1.6/Chart.lock +++ b/stable/fireflyiii/6.1.6/Chart.lock @@ -6,4 +6,4 @@ dependencies: repository: https://truecharts.org/ version: 1.5.10 digest: sha256:b20f0d5123c6e90d785f652821123fbb0849046236ebd960637a90f4dbd10cde -generated: "2021-09-02T13:34:37.029784343Z" +generated: "2021-09-02T15:49:38.528357012Z" diff --git a/stable/flaresolverr/1.9.11/Chart.lock b/stable/flaresolverr/1.9.11/Chart.lock index 0f9c777b94..6649436187 100644 --- a/stable/flaresolverr/1.9.11/Chart.lock +++ b/stable/flaresolverr/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:34:42.980531667Z" +generated: "2021-09-02T15:49:44.453363833Z" diff --git a/stable/flood/1.9.11/Chart.lock b/stable/flood/1.9.11/Chart.lock index eac3e1e118..43c3622892 100644 --- a/stable/flood/1.9.11/Chart.lock +++ b/stable/flood/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:34:47.758004039Z" +generated: "2021-09-02T15:49:49.326065849Z" diff --git a/stable/focalboard/1.9.11/Chart.lock b/stable/focalboard/1.9.11/Chart.lock index 86a261d1ea..cea3dc9c08 100644 --- a/stable/focalboard/1.9.11/Chart.lock +++ b/stable/focalboard/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:34:52.55985022Z" +generated: "2021-09-02T15:49:54.241025339Z" diff --git a/stable/freeradius/1.7.14/Chart.lock b/stable/freeradius/1.7.14/Chart.lock index 5ac6197918..df42ba7cb3 100644 --- a/stable/freeradius/1.7.14/Chart.lock +++ b/stable/freeradius/1.7.14/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:34:57.466340477Z" +generated: "2021-09-02T15:49:59.094843077Z" diff --git a/stable/freshrss/6.11.11/Chart.lock b/stable/freshrss/6.11.11/Chart.lock index 8a8a40e77a..41aef17489 100644 --- a/stable/freshrss/6.11.11/Chart.lock +++ b/stable/freshrss/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:35:02.399751859Z" +generated: "2021-09-02T15:50:03.952094509Z" diff --git a/stable/gaps/6.11.11/Chart.lock b/stable/gaps/6.11.11/Chart.lock index f5ad1401bd..3e7475a38f 100644 --- a/stable/gaps/6.11.11/Chart.lock +++ b/stable/gaps/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:35:07.323051803Z" +generated: "2021-09-02T15:50:08.820312708Z" diff --git a/stable/gonic/1.9.11/Chart.lock b/stable/gonic/1.9.11/Chart.lock index ffa1620baa..376a42ee2d 100644 --- a/stable/gonic/1.9.11/Chart.lock +++ b/stable/gonic/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:35:12.181645585Z" +generated: "2021-09-02T15:50:13.674294137Z" diff --git a/stable/grocy/6.11.11/Chart.lock b/stable/grocy/6.11.11/Chart.lock index 820f28d173..997e531755 100644 --- a/stable/grocy/6.11.11/Chart.lock +++ b/stable/grocy/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:35:17.060874795Z" +generated: "2021-09-02T15:50:18.544734479Z" diff --git a/stable/handbrake/6.11.11/Chart.lock b/stable/handbrake/6.11.11/Chart.lock index 2b86b02a67..1bb0524bde 100644 --- a/stable/handbrake/6.11.11/Chart.lock +++ b/stable/handbrake/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:35:22.129235432Z" +generated: "2021-09-02T15:50:23.485388907Z" diff --git a/stable/haste-server/1.11.11/Chart.lock b/stable/haste-server/1.11.11/Chart.lock index 4e28a18b5d..231a2d713b 100644 --- a/stable/haste-server/1.11.11/Chart.lock +++ b/stable/haste-server/1.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:35:26.997753393Z" +generated: "2021-09-02T15:50:28.354912873Z" diff --git a/stable/healthchecks/1.9.11/Chart.lock b/stable/healthchecks/1.9.11/Chart.lock index 5aea78f5a2..9592a4dde7 100644 --- a/stable/healthchecks/1.9.11/Chart.lock +++ b/stable/healthchecks/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:35:31.988792876Z" +generated: "2021-09-02T15:50:33.273566839Z" diff --git a/stable/heimdall/6.11.11/Chart.lock b/stable/heimdall/6.11.11/Chart.lock index b2034599d0..79495ba632 100644 --- a/stable/heimdall/6.11.11/Chart.lock +++ b/stable/heimdall/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:35:36.863810209Z" +generated: "2021-09-02T15:50:38.120128697Z" diff --git a/stable/home-assistant/6.11.11/Chart.lock b/stable/home-assistant/6.11.11/Chart.lock index ba82703ddf..cef996ae54 100644 --- a/stable/home-assistant/6.11.11/Chart.lock +++ b/stable/home-assistant/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:35:41.76838985Z" +generated: "2021-09-02T15:50:42.996114855Z" diff --git a/stable/hyperion-ng/1.9.11/Chart.lock b/stable/hyperion-ng/1.9.11/Chart.lock index f0ed4ef3a7..6462a4f4ee 100644 --- a/stable/hyperion-ng/1.9.11/Chart.lock +++ b/stable/hyperion-ng/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:35:46.6714082Z" +generated: "2021-09-02T15:50:47.867388438Z" diff --git a/stable/jackett/6.11.13/Chart.lock b/stable/jackett/6.11.13/Chart.lock index 00bafdc3b8..f5d2decdfb 100644 --- a/stable/jackett/6.11.13/Chart.lock +++ b/stable/jackett/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:35:51.48674906Z" +generated: "2021-09-02T15:50:52.696947123Z" diff --git a/stable/jellyfin/6.11.11/Chart.lock b/stable/jellyfin/6.11.11/Chart.lock index cc77ae93c9..44154dda97 100644 --- a/stable/jellyfin/6.11.11/Chart.lock +++ b/stable/jellyfin/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:35:56.435996152Z" +generated: "2021-09-02T15:50:57.682911484Z" diff --git a/stable/kms/6.11.11/Chart.lock b/stable/kms/6.11.11/Chart.lock index e6c52cce5c..131b910925 100644 --- a/stable/kms/6.11.11/Chart.lock +++ b/stable/kms/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:36:01.331068432Z" +generated: "2021-09-02T15:51:02.543044398Z" diff --git a/stable/komga/1.9.14/Chart.lock b/stable/komga/1.9.14/Chart.lock index 744384d2ca..88e0c5c108 100644 --- a/stable/komga/1.9.14/Chart.lock +++ b/stable/komga/1.9.14/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:36:06.24307923Z" +generated: "2021-09-02T15:51:07.419441707Z" diff --git a/stable/lazylibrarian/6.11.11/Chart.lock b/stable/lazylibrarian/6.11.11/Chart.lock index 70742b53ff..8e1d5174b0 100644 --- a/stable/lazylibrarian/6.11.11/Chart.lock +++ b/stable/lazylibrarian/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:36:11.118713051Z" +generated: "2021-09-02T15:51:12.264708806Z" diff --git a/stable/librespeed/1.9.11/Chart.lock b/stable/librespeed/1.9.11/Chart.lock index 22a5010eac..93c602e781 100644 --- a/stable/librespeed/1.9.11/Chart.lock +++ b/stable/librespeed/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:36:16.120966355Z" +generated: "2021-09-02T15:51:17.136255182Z" diff --git a/stable/lidarr/6.11.11/Chart.lock b/stable/lidarr/6.11.11/Chart.lock index 62e304e4ff..acf00a649e 100644 --- a/stable/lidarr/6.11.11/Chart.lock +++ b/stable/lidarr/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:36:21.122259103Z" +generated: "2021-09-02T15:51:22.044635476Z" diff --git a/stable/littlelink/1.5.11/Chart.lock b/stable/littlelink/1.5.11/Chart.lock index c2f78b57e1..5706ba2022 100644 --- a/stable/littlelink/1.5.11/Chart.lock +++ b/stable/littlelink/1.5.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:36:26.126595437Z" +generated: "2021-09-02T15:51:26.905345833Z" diff --git a/stable/lychee/6.11.11/Chart.lock b/stable/lychee/6.11.11/Chart.lock index fb5b8e95f3..313fe3f74d 100644 --- a/stable/lychee/6.11.11/Chart.lock +++ b/stable/lychee/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:36:31.063775984Z" +generated: "2021-09-02T15:51:31.762848909Z" diff --git a/stable/mealie/1.11.11/Chart.lock b/stable/mealie/1.11.11/Chart.lock index 7a221f8610..2cbfc5980f 100644 --- a/stable/mealie/1.11.11/Chart.lock +++ b/stable/mealie/1.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:36:36.031243985Z" +generated: "2021-09-02T15:51:36.641043803Z" diff --git a/stable/mosquitto/1.11.11/Chart.lock b/stable/mosquitto/1.11.11/Chart.lock index 38cc1ff56a..5e349b66a3 100644 --- a/stable/mosquitto/1.11.11/Chart.lock +++ b/stable/mosquitto/1.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:36:40.81627036Z" +generated: "2021-09-02T15:51:41.658025899Z" diff --git a/stable/mylar/1.9.11/Chart.lock b/stable/mylar/1.9.11/Chart.lock index 4faea5e213..f9e4397f2c 100644 --- a/stable/mylar/1.9.11/Chart.lock +++ b/stable/mylar/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:36:45.581278499Z" +generated: "2021-09-02T15:51:46.601816708Z" diff --git a/stable/navidrome/6.11.11/Chart.lock b/stable/navidrome/6.11.11/Chart.lock index fcd2916f2b..2d4f8f1472 100644 --- a/stable/navidrome/6.11.11/Chart.lock +++ b/stable/navidrome/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:36:50.448970179Z" +generated: "2021-09-02T15:51:51.52729395Z" diff --git a/stable/node-red/6.11.11/Chart.lock b/stable/node-red/6.11.11/Chart.lock index 7dd438da51..e7bdbd1e26 100644 --- a/stable/node-red/6.11.11/Chart.lock +++ b/stable/node-red/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:36:55.347624425Z" +generated: "2021-09-02T15:51:56.358371695Z" diff --git a/stable/nullserv/1.9.11/Chart.lock b/stable/nullserv/1.9.11/Chart.lock index a323246c35..14b1adc329 100644 --- a/stable/nullserv/1.9.11/Chart.lock +++ b/stable/nullserv/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:37:00.213244098Z" +generated: "2021-09-02T15:52:01.205033875Z" diff --git a/stable/nzbget/6.11.11/Chart.lock b/stable/nzbget/6.11.11/Chart.lock index c3b0d8863c..b356eff9dc 100644 --- a/stable/nzbget/6.11.11/Chart.lock +++ b/stable/nzbget/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:37:05.145092302Z" +generated: "2021-09-02T15:52:06.07997959Z" diff --git a/stable/nzbhydra/6.11.11/Chart.lock b/stable/nzbhydra/6.11.11/Chart.lock index 6bad2df7f2..bd0114c81c 100644 --- a/stable/nzbhydra/6.11.11/Chart.lock +++ b/stable/nzbhydra/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:37:10.057461301Z" +generated: "2021-09-02T15:52:10.947435547Z" diff --git a/stable/octoprint/1.9.11/Chart.lock b/stable/octoprint/1.9.11/Chart.lock index 09122b9bc6..58343ae723 100644 --- a/stable/octoprint/1.9.11/Chart.lock +++ b/stable/octoprint/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:37:14.935091016Z" +generated: "2021-09-02T15:52:15.906083087Z" diff --git a/stable/omada-controller/1.9.11/Chart.lock b/stable/omada-controller/1.9.11/Chart.lock index 7c41d82a39..c3045c220f 100644 --- a/stable/omada-controller/1.9.11/Chart.lock +++ b/stable/omada-controller/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:37:19.758678399Z" +generated: "2021-09-02T15:52:20.818995775Z" diff --git a/stable/ombi/6.11.12/Chart.lock b/stable/ombi/6.11.12/Chart.lock index 4f483dda0b..83c4ac46b4 100644 --- a/stable/ombi/6.11.12/Chart.lock +++ b/stable/ombi/6.11.12/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:37:24.688782517Z" +generated: "2021-09-02T15:52:25.745156222Z" diff --git a/stable/openldap/1.7.15/Chart.lock b/stable/openldap/1.7.15/Chart.lock index 217254006f..2167ea9d78 100644 --- a/stable/openldap/1.7.15/Chart.lock +++ b/stable/openldap/1.7.15/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:37:29.54719204Z" +generated: "2021-09-02T15:52:30.65878609Z" diff --git a/stable/organizr/6.11.11/Chart.lock b/stable/organizr/6.11.11/Chart.lock index 8d531d0f8a..773eb37528 100644 --- a/stable/organizr/6.11.11/Chart.lock +++ b/stable/organizr/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:37:34.562448373Z" +generated: "2021-09-02T15:52:35.533819187Z" diff --git a/stable/overseerr/1.9.11/Chart.lock b/stable/overseerr/1.9.11/Chart.lock index e7ebcab243..54e1292eb0 100644 --- a/stable/overseerr/1.9.11/Chart.lock +++ b/stable/overseerr/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:37:39.446966531Z" +generated: "2021-09-02T15:52:40.399674771Z" diff --git a/stable/owncast/1.9.11/Chart.lock b/stable/owncast/1.9.11/Chart.lock index 6ac36991de..1680c67175 100644 --- a/stable/owncast/1.9.11/Chart.lock +++ b/stable/owncast/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:37:44.26466686Z" +generated: "2021-09-02T15:52:45.268342045Z" diff --git a/stable/owncloud-ocis/1.9.11/Chart.lock b/stable/owncloud-ocis/1.9.11/Chart.lock index 6759dfd25a..17a483e5de 100644 --- a/stable/owncloud-ocis/1.9.11/Chart.lock +++ b/stable/owncloud-ocis/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:37:49.237527561Z" +generated: "2021-09-02T15:52:50.18019895Z" diff --git a/stable/pgadmin/1.8.11/Chart.lock b/stable/pgadmin/1.8.11/Chart.lock index 1f75ad79ff..b0e79363dd 100644 --- a/stable/pgadmin/1.8.11/Chart.lock +++ b/stable/pgadmin/1.8.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:37:54.158882797Z" +generated: "2021-09-02T15:52:54.983878828Z" diff --git a/stable/photoprism/1.9.11/Chart.lock b/stable/photoprism/1.9.11/Chart.lock index ac9311ec61..415ea57681 100644 --- a/stable/photoprism/1.9.11/Chart.lock +++ b/stable/photoprism/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:37:59.102087638Z" +generated: "2021-09-02T15:52:59.843464991Z" diff --git a/stable/phpldapadmin/1.8.11/Chart.lock b/stable/phpldapadmin/1.8.11/Chart.lock index be73cdec76..a4cff79b8f 100644 --- a/stable/phpldapadmin/1.8.11/Chart.lock +++ b/stable/phpldapadmin/1.8.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:38:03.912483694Z" +generated: "2021-09-02T15:53:04.692609977Z" diff --git a/stable/piaware/1.9.11/Chart.lock b/stable/piaware/1.9.11/Chart.lock index 045719a696..42a6b89d9a 100644 --- a/stable/piaware/1.9.11/Chart.lock +++ b/stable/piaware/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:38:08.720660979Z" +generated: "2021-09-02T15:53:09.606552598Z" diff --git a/stable/plex/5.11.11/Chart.lock b/stable/plex/5.11.11/Chart.lock index 4686f511f7..ec72adf56c 100644 --- a/stable/plex/5.11.11/Chart.lock +++ b/stable/plex/5.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:38:13.49734465Z" +generated: "2021-09-02T15:53:14.459297368Z" diff --git a/stable/podgrab/4.11.11/Chart.lock b/stable/podgrab/4.11.11/Chart.lock index 90de6d0b17..e5b315cb34 100644 --- a/stable/podgrab/4.11.11/Chart.lock +++ b/stable/podgrab/4.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:38:18.329083294Z" +generated: "2021-09-02T15:53:19.379552641Z" diff --git a/stable/postgresql/1.5.11/Chart.lock b/stable/postgresql/1.5.11/Chart.lock index 9251a10a2c..4b61d84e91 100644 --- a/stable/postgresql/1.5.11/Chart.lock +++ b/stable/postgresql/1.5.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:38:23.01982409Z" +generated: "2021-09-02T15:53:24.25574562Z" diff --git a/stable/pretend-youre-xyzzy/1.9.11/Chart.lock b/stable/pretend-youre-xyzzy/1.9.11/Chart.lock index 99b4043ae9..d6b5041c97 100644 --- a/stable/pretend-youre-xyzzy/1.9.11/Chart.lock +++ b/stable/pretend-youre-xyzzy/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:38:27.863619723Z" +generated: "2021-09-02T15:53:29.126280796Z" diff --git a/stable/protonmail-bridge/1.9.11/Chart.lock b/stable/protonmail-bridge/1.9.11/Chart.lock index a55ee6f8ea..006325b7f3 100644 --- a/stable/protonmail-bridge/1.9.11/Chart.lock +++ b/stable/protonmail-bridge/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:38:32.656779324Z" +generated: "2021-09-02T15:53:34.049687175Z" diff --git a/stable/prowlarr/1.11.13/Chart.lock b/stable/prowlarr/1.11.13/Chart.lock index 1f7aabb172..68efae3f00 100644 --- a/stable/prowlarr/1.11.13/Chart.lock +++ b/stable/prowlarr/1.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:38:37.58965393Z" +generated: "2021-09-02T15:53:38.936243431Z" diff --git a/stable/pyload/1.9.11/Chart.lock b/stable/pyload/1.9.11/Chart.lock index 906498461c..4299101c94 100644 --- a/stable/pyload/1.9.11/Chart.lock +++ b/stable/pyload/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:38:42.438636032Z" +generated: "2021-09-02T15:53:43.946243086Z" diff --git a/stable/qbittorrent/6.11.11/Chart.lock b/stable/qbittorrent/6.11.11/Chart.lock index 14a1f28848..5fccfdb452 100644 --- a/stable/qbittorrent/6.11.11/Chart.lock +++ b/stable/qbittorrent/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:38:47.406588674Z" +generated: "2021-09-02T15:53:48.931151855Z" diff --git a/stable/radarr/6.11.11/Chart.lock b/stable/radarr/6.11.11/Chart.lock index 841a906301..76dd319d41 100644 --- a/stable/radarr/6.11.11/Chart.lock +++ b/stable/radarr/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:38:52.27333586Z" +generated: "2021-09-02T15:53:53.86468983Z" diff --git a/stable/readarr/6.11.11/Chart.lock b/stable/readarr/6.11.11/Chart.lock index 19dc4b0d34..9472301bea 100644 --- a/stable/readarr/6.11.11/Chart.lock +++ b/stable/readarr/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:38:57.102311233Z" +generated: "2021-09-02T15:53:58.727562314Z" diff --git a/stable/reg/1.11.11/Chart.lock b/stable/reg/1.11.11/Chart.lock index af121a365f..7d85ea78d5 100644 --- a/stable/reg/1.11.11/Chart.lock +++ b/stable/reg/1.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:39:02.058971437Z" +generated: "2021-09-02T15:54:03.61367128Z" diff --git a/stable/resilio-sync/1.9.11/Chart.lock b/stable/resilio-sync/1.9.11/Chart.lock index 6a4777ff29..e86dc78ad7 100644 --- a/stable/resilio-sync/1.9.11/Chart.lock +++ b/stable/resilio-sync/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:39:06.967478937Z" +generated: "2021-09-02T15:54:08.531813072Z" diff --git a/stable/sabnzbd/6.11.11/Chart.lock b/stable/sabnzbd/6.11.11/Chart.lock index 42e4acf901..bc36ab77ca 100644 --- a/stable/sabnzbd/6.11.11/Chart.lock +++ b/stable/sabnzbd/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:39:11.937439274Z" +generated: "2021-09-02T15:54:13.400389014Z" diff --git a/stable/ser2sock/1.9.11/Chart.lock b/stable/ser2sock/1.9.11/Chart.lock index f63904e027..3191183b43 100644 --- a/stable/ser2sock/1.9.11/Chart.lock +++ b/stable/ser2sock/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:39:16.925620892Z" +generated: "2021-09-02T15:54:18.351275245Z" diff --git a/stable/sonarr/6.11.11/Chart.lock b/stable/sonarr/6.11.11/Chart.lock index 8e9e618943..4b56fb9e08 100644 --- a/stable/sonarr/6.11.11/Chart.lock +++ b/stable/sonarr/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:39:21.927019701Z" +generated: "2021-09-02T15:54:23.253482697Z" diff --git a/stable/stash/1.9.12/Chart.lock b/stable/stash/1.9.12/Chart.lock index 379fde8dac..fbabe59044 100644 --- a/stable/stash/1.9.12/Chart.lock +++ b/stable/stash/1.9.12/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:39:26.972769386Z" +generated: "2021-09-02T15:54:28.277564319Z" diff --git a/stable/syncthing/6.11.11/Chart.lock b/stable/syncthing/6.11.11/Chart.lock index db522f4b25..73ad8e5af4 100644 --- a/stable/syncthing/6.11.11/Chart.lock +++ b/stable/syncthing/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:39:32.013076494Z" +generated: "2021-09-02T15:54:33.124655033Z" diff --git a/stable/tautulli/6.11.11/Chart.lock b/stable/tautulli/6.11.11/Chart.lock index 2e82986657..50ce733ded 100644 --- a/stable/tautulli/6.11.11/Chart.lock +++ b/stable/tautulli/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:39:37.128487024Z" +generated: "2021-09-02T15:54:37.964490442Z" diff --git a/stable/thelounge/1.11.11/Chart.lock b/stable/thelounge/1.11.11/Chart.lock index 4fc334821a..2f02333b8b 100644 --- a/stable/thelounge/1.11.11/Chart.lock +++ b/stable/thelounge/1.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:39:42.001172224Z" +generated: "2021-09-02T15:54:42.782750393Z" diff --git a/stable/traefik/6.13.13/Chart.lock b/stable/traefik/6.13.13/Chart.lock index de790dc610..5016317c13 100644 --- a/stable/traefik/6.13.13/Chart.lock +++ b/stable/traefik/6.13.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:39:46.900271888Z" +generated: "2021-09-02T15:54:47.683438196Z" diff --git a/stable/transmission/6.11.11/Chart.lock b/stable/transmission/6.11.11/Chart.lock index 330c9bf4d2..c583ece746 100644 --- a/stable/transmission/6.11.11/Chart.lock +++ b/stable/transmission/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:39:51.927881542Z" +generated: "2021-09-02T15:54:52.543155902Z" diff --git a/stable/truecommand/6.11.12/Chart.lock b/stable/truecommand/6.11.12/Chart.lock index edc6f65b86..411d6d60a8 100644 --- a/stable/truecommand/6.11.12/Chart.lock +++ b/stable/truecommand/6.11.12/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:39:56.795563818Z" +generated: "2021-09-02T15:54:57.443186097Z" diff --git a/stable/tvheadend/7.11.11/Chart.lock b/stable/tvheadend/7.11.11/Chart.lock index d9a1f37937..d675fb198c 100644 --- a/stable/tvheadend/7.11.11/Chart.lock +++ b/stable/tvheadend/7.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:40:01.597992359Z" +generated: "2021-09-02T15:55:02.309853101Z" diff --git a/stable/unifi/6.11.11/Chart.lock b/stable/unifi/6.11.11/Chart.lock index a37af39a7c..1d031154e0 100644 --- a/stable/unifi/6.11.11/Chart.lock +++ b/stable/unifi/6.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:40:06.517987864Z" +generated: "2021-09-02T15:55:07.209305927Z" diff --git a/stable/unpackerr/1.11.11/Chart.lock b/stable/unpackerr/1.11.11/Chart.lock index 5795545acb..f7fd1f1417 100644 --- a/stable/unpackerr/1.11.11/Chart.lock +++ b/stable/unpackerr/1.11.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:40:11.524629669Z" +generated: "2021-09-02T15:55:12.064771711Z" diff --git a/stable/vaultwarden/6.1.8/Chart.lock b/stable/vaultwarden/6.1.8/Chart.lock index 58eb816852..83add20775 100644 --- a/stable/vaultwarden/6.1.8/Chart.lock +++ b/stable/vaultwarden/6.1.8/Chart.lock @@ -6,4 +6,4 @@ dependencies: repository: https://truecharts.org/ version: 1.5.10 digest: sha256:b20f0d5123c6e90d785f652821123fbb0849046236ebd960637a90f4dbd10cde -generated: "2021-09-02T13:40:17.335924145Z" +generated: "2021-09-02T15:55:17.913506203Z" diff --git a/stable/xteve/1.9.11/Chart.lock b/stable/xteve/1.9.11/Chart.lock index e49be01447..c65f166f17 100644 --- a/stable/xteve/1.9.11/Chart.lock +++ b/stable/xteve/1.9.11/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.12.4 digest: sha256:310100cc4b043b6ad0fc371a550e3f34853d472793291588be1cc3d78d19aaa7 -generated: "2021-09-02T13:40:23.441786967Z" +generated: "2021-09-02T15:55:24.269238353Z" diff --git a/stable/zwavejs2mqtt/6.11.12/Chart.lock b/stable/zwavejs2mqtt/6.11.12/Chart.lock index b468f73d5f..a5709c917b 100644 --- a/stable/zwavejs2mqtt/6.11.12/Chart.lock +++ b/stable/zwavejs2mqtt/6.11.12/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.12.4 digest: sha256:62b51750a57da4ed871c5222664ac35112f28bb013f042fc09ff928bf466a970 -generated: "2021-09-02T13:40:28.337739378Z" +generated: "2021-09-02T15:55:29.180699688Z"