diff --git a/incubator/custom-app/0.2.16/Chart.lock b/incubator/custom-app/0.2.16/Chart.lock index 8db4252e291..74aa9e36abf 100644 --- a/incubator/custom-app/0.2.16/Chart.lock +++ b/incubator/custom-app/0.2.16/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:48:39.881406943Z" +generated: "2021-09-06T12:08:26.685836553Z" diff --git a/incubator/nextcloud/3.7.9/Chart.lock b/incubator/nextcloud/3.7.9/Chart.lock index 0e98a486338..c063290c380 100644 --- a/incubator/nextcloud/3.7.9/Chart.lock +++ b/incubator/nextcloud/3.7.9/Chart.lock @@ -9,4 +9,4 @@ dependencies: repository: https://charts.bitnami.com/bitnami version: 15.3.1 digest: sha256:8e1539556c3970833500f4afd64a93b92f3a89d55f215a85a6788408feb3e809 -generated: "2021-09-06T11:48:46.887095986Z" +generated: "2021-09-06T12:08:33.540717445Z" diff --git a/incubator/sogo/0.0.4/CONFIG.md b/incubator/sogo/0.0.4/CONFIG.md new file mode 100644 index 00000000000..e69de29bb2d diff --git a/incubator/sogo/0.0.4/Chart.lock b/incubator/sogo/0.0.4/Chart.lock new file mode 100644 index 00000000000..9c63e03fe38 --- /dev/null +++ b/incubator/sogo/0.0.4/Chart.lock @@ -0,0 +1,12 @@ +dependencies: +- name: common + repository: https://truecharts.org/ + version: 6.13.7 +- name: postgresql + repository: https://truecharts.org/ + version: 1.6.1 +- name: memcached + repository: https://charts.bitnami.com/bitnami + version: 5.14.2 +digest: sha256:cacb0024ee596935c01beb9b1c32ae93018ed54fa0c9eacb8d54f8f78fb335f1 +generated: "2021-09-06T12:08:43.540860478Z" diff --git a/incubator/sogo/0.0.4/Chart.yaml b/incubator/sogo/0.0.4/Chart.yaml new file mode 100644 index 00000000000..56c505e64e8 --- /dev/null +++ b/incubator/sogo/0.0.4/Chart.yaml @@ -0,0 +1,30 @@ +apiVersion: v2 +appVersion: auto +dependencies: +- name: common + repository: https://truecharts.org/ + version: 6.13.7 +- condition: postgresql.enabled + name: postgresql + repository: https://truecharts.org/ + version: 1.6.1 +- condition: memcached.enabled + name: memcached + repository: https://charts.bitnami.com/bitnami + version: 5.14.2 +deprecated: false +description: Groupware package +home: https://github.com/truecharts/apps/tree/master/charts/stable/sogo +icon: https://truecharts.org/_static/sogo-icon.png +keywords: +- groupware +kubeVersion: '>=1.16.0-0' +maintainers: +- email: info@truecharts.org + name: TrueCharts + url: truecharts.org +name: sogo +sources: +- https://www.sogo.nu/ +type: application +version: 0.0.4 diff --git a/incubator/sogo/0.0.4/README.md b/incubator/sogo/0.0.4/README.md new file mode 100644 index 00000000000..e69de29bb2d diff --git a/incubator/sogo/0.0.4/app-readme.md b/incubator/sogo/0.0.4/app-readme.md new file mode 100644 index 00000000000..f73b9b16262 --- /dev/null +++ b/incubator/sogo/0.0.4/app-readme.md @@ -0,0 +1 @@ +Groupware package diff --git a/incubator/sogo/0.0.4/charts/common-6.13.7.tgz b/incubator/sogo/0.0.4/charts/common-6.13.7.tgz new file mode 100644 index 00000000000..6b300369a41 Binary files /dev/null and b/incubator/sogo/0.0.4/charts/common-6.13.7.tgz differ diff --git a/incubator/sogo/0.0.4/charts/memcached-5.14.2.tgz b/incubator/sogo/0.0.4/charts/memcached-5.14.2.tgz new file mode 100644 index 00000000000..1d1c8e94fc9 Binary files /dev/null and b/incubator/sogo/0.0.4/charts/memcached-5.14.2.tgz differ diff --git a/incubator/sogo/0.0.4/charts/postgresql-1.6.1.tgz b/incubator/sogo/0.0.4/charts/postgresql-1.6.1.tgz new file mode 100644 index 00000000000..9974292e241 Binary files /dev/null and b/incubator/sogo/0.0.4/charts/postgresql-1.6.1.tgz differ diff --git a/incubator/sogo/0.0.4/helm-values.md b/incubator/sogo/0.0.4/helm-values.md new file mode 100644 index 00000000000..e69de29bb2d diff --git a/incubator/sogo/0.0.4/ix_values.yaml b/incubator/sogo/0.0.4/ix_values.yaml new file mode 100644 index 00000000000..b313b47a0ae --- /dev/null +++ b/incubator/sogo/0.0.4/ix_values.yaml @@ -0,0 +1,42 @@ +## +# This file contains Values.yaml content that gets added to the output of questions.yaml +# It's ONLY meant for content that the user is NOT expected to change. +# Example: Everything under "image" is not included in questions.yaml but is included here. +## +image: + repository: ghcr.io/truecharts/sogo + pullPolicy: IfNotPresent + tag: "v5.2.0" + +initContainers: + - name: init-postgresdb + image: postgres:13.1 + command: + - "sh" + - "-c" + - "until pg_isready -U sogo -h ${pghost} ; do sleep 2 ; done" + imagePullPolicy: IfNotPresent + env: + - name: pghost + valueFrom: + secretKeyRef: + name: dbcreds + key: plainhost + + +# Enabled postgres +postgresql: + enabled: true + postgresqlUsername: sogo + postgresqlDatabase: sogo + existingSecret: dbcreds + +# -- memcached dependency settings +memcached: + enabled: true + + +## +# 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/sogo/0.0.4/questions.yaml b/incubator/sogo/0.0.4/questions.yaml new file mode 100644 index 00000000000..5c136cef4ed --- /dev/null +++ b/incubator/sogo/0.0.4/questions.yaml @@ -0,0 +1,1548 @@ +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: 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: sogo + group: "App Configuration" + label: "SOGo Configuration " + schema: + type: dict + attrs: + - variable: general + label: "General" + schema: + type: dict + attrs: + - variable: SOGoLanguage + label: "SOGoLanguage" + schema: + type: string + required: true + default: "English" + - variable: SOGoSuperUsernames + label: "SOGoSuperUsernames" + schema: + type: string + default: "" + - variable: SxVMemLimit + label: "SxVMemLimit" + schema: + type: int + default: 384 + required: true + - variable: webui + label: "Web Interface" + schema: + type: dict + attrs: + - variable: SOGoPageTitle + label: "SOGoPageTitle" + schema: + type: string + required: true + default: "SOGo" + - variable: SOGoVacationEnabled + label: "SOGoVacationEnabled" + schema: + type: boolean + default: true + - variable: SOGoForwardEnabled + label: "SOGoForwardEnabled" + schema: + type: boolean + default: true + - variable: SOGoSieveScriptsEnabled + label: "SOGoSieveScriptsEnabled" + schema: + type: boolean + default: true + - variable: SOGoMailAuxiliaryUserAccountsEnabled + label: "SOGoMailAuxiliaryUserAccountsEnabled" + schema: + type: boolean + default: true + - variable: SOGoTrustProxyAuthentication + label: "SOGoTrustProxyAuthentication" + schema: + type: boolean + default: false + - variable: SOGoXSRFValidationEnabled + label: "SOGoXSRFValidationEnabled" + schema: + type: boolean + default: true + - variable: mail + label: "Mail" + schema: + type: dict + attrs: + - variable: SOGoDraftsFolderName + label: "SOGoDraftsFolderName" + schema: + type: string + default: "Drafts" + required: true + - variable: SOGoSentFolderName + label: "SOGoSentFolderName" + schema: + type: string + default: "Sent" + required: true + - variable: SOGoTrashFolderName + label: "SOGoTrashFolderName" + schema: + type: string + default: "Trash" + required: true + - variable: SOGoIMAPServer + label: "SOGoIMAPServer" + schema: + type: string + default: "localhost" + required: true + - variable: SOGoSieveServer + label: "SOGoSieveServer" + schema: + type: string + default: "" + - variable: SOGoMailDomain + label: "SOGoMailDomain" + schema: + type: string + default: "example.com" + required: true + - variable: SOGoMailingMechanism + label: "SOGoMailingMechanism" + schema: + type: string + default: "smtp" + enum: + - value: "smtp" + description: "smtp" + - value: "sendmail" + description: "sendmail" + - variable: SOGoSMTPServer + label: "SOGoSMTPServer" + schema: + type: string + show_if: [["SOGoMailingMechanism", "=", "smtp"]] + default: "smtp://domain:port" + required: true + - variable: SOGoForceExternalLoginWithEmail + label: "SOGoForceExternalLoginWithEmail" + schema: + type: boolean + default: false + - variable: SOGoMailSpoolPath + label: "SOGoMailSpoolPath" + schema: + type: string + default: "/var/spool/sogo" + required: true + - variable: NGMimeBuildMimeTempDirectory + label: "NGMimeBuildMimeTempDirectory" + schema: + type: string + default: "/mimetmp" + required: true + - variable: notifications + label: "Notifications" + schema: + type: dict + attrs: + - variable: SOGoAppointmentSendEMailNotifications + label: "SOGoAppointmentSendEMailNotifications" + schema: + type: boolean + default: false + - variable: SOGoACLsSendEMailNotifications + label: "SOGoACLsSendEMailNotifications" + schema: + type: boolean + default: false + - variable: SOGoFoldersSendEMailNotifications + label: "SOGoFoldersSendEMailNotifications" + schema: + type: boolean + default: false + - variable: auth + label: "Authentication" + schema: + type: dict + attrs: + - variable: SOGoPasswordChangeEnabled + label: "SOGoPasswordChangeEnabled" + schema: + type: boolean + default: true + - variable: usersources + label: "User Data Sources" + schema: + type: list + default: [] + items: + - variable: usersourcesEntry + label: "Source" + schema: + type: dict + attrs: + - variable: id + label: "id" + schema: + type: string + default: "id" + required: true + - variable: canAuthenticate + label: "canAuthenticate" + schema: + type: boolean + default: true + - variable: isAddressBook + label: "isAddressBook" + schema: + type: boolean + default: true + - variable: type + label: "Userdata Type" + schema: + type: string + default: "LDAP" + enum: + - value: "LDAP" + description: "LDAP" + - value: "SQL" + description: "SQL" + - variable: viewURL + label: "viewURL" + schema: + show_if: [["type", "=", "SQL"]] + type: string + default: "LDAP" + required: true + - variable: userPasswordAlgorithm + label: "userPasswordAlgorithm" + schema: + show_if: [["type", "=", "SQL"]] + type: string + default: "md5" + required: true + - variable: CNFieldName + label: "CNFieldName" + schema: + show_if: [["type", "=", "LDAP"]] + type: string + default: "cn" + required: true + - variable: UIDFieldName + label: "UIDFieldName" + schema: + show_if: [["type", "=", "LDAP"]] + type: string + default: "uid" + required: true + - variable: IDFieldName + label: "IDFieldName" + schema: + show_if: [["type", "=", "LDAP"]] + type: string + default: "uid" + required: true + - variable: bindFields + label: "bindFields" + schema: + show_if: [["type", "=", "LDAP"]] + type: string + default: "(uid, mail)" + required: true + - variable: baseDN + label: "baseDN" + schema: + show_if: [["type", "=", "LDAP"]] + type: string + default: "ou=users,dc=acme,dc=com" + required: true + - variable: bindDN + label: "bindDN" + schema: + show_if: [["type", "=", "LDAP"]] + type: string + default: "uid=sogo,ou=users,dc=acme,dc=com" + required: true + - variable: bindPassword + label: "bindPassword" + schema: + show_if: [["type", "=", "LDAP"]] + type: string + default: "qwerty" + required: true + - variable: displayName + label: "displayName" + schema: + show_if: [["type", "=", "LDAP"]] + type: string + default: "Shared Addresses" + required: true + - variable: hostname + label: "hostname" + schema: + show_if: [["type", "=", "LDAP"]] + type: string + default: "ldap://127.0.0.1:389" + required: true + - variable: custom + label: "Custom configuration Arguments" + schema: + type: list + default: [] + items: + - variable: customsourceEntry + label: "custom argument" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + required: true + - variable: value + label: "Value" + schema: + type: string + required: true + - variable: debug + label: "Debug" + schema: + type: dict + attrs: + - variable: show + label: "show debug options" + schema: + type: boolean + default: false + show_subquestions_if: true + subquestions: + - variable: SOGoDebugRequests + label: "SOGoDebugRequests" + schema: + type: boolean + default: false + - variable: SoDebugBaseURL + label: "SoDebugBaseURL" + schema: + type: boolean + default: false + - variable: LDAPDebugEnabled + label: "LDAPDebugEnabled" + schema: + type: boolean + default: false + - variable: ImapDebugEnabled + label: "ImapDebugEnabled" + schema: + type: boolean + default: false + - variable: PGDebugEnabled + label: "PGDebugEnabled" + schema: + type: boolean + default: false + - variable: MySQL4DebugEnabled + label: "MySQL4DebugEnabled" + schema: + type: boolean + default: false + - variable: SOGoUIxDebugEnabled + label: "SOGoUIxDebugEnabled" + schema: + type: boolean + default: false + - variable: WODontZipResponse + label: "WODontZipResponse" + schema: + type: boolean + default: false + - variable: WOLogFile + label: "WOLogFile" + schema: + type: string + default: "" + - variable: custom + label: "Custom configuration Arguments" + schema: + type: list + default: [] + items: + - variable: customEntry + label: "custom argument" + schema: + type: dict + attrs: + - variable: name + label: "Name" + schema: + type: string + required: true + - variable: value + label: "Value" + schema: + type: string + required: true + + - variable: service + group: "Networking and Services" + label: "Configure Service(s)" + schema: + type: dict + attrs: + - variable: main + label: "Main Service" + description: "The Primary service on which the healthcheck runs, often the webUI" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the service" + schema: + type: boolean + default: true + hidden: true + - variable: type + label: "Service Type" + description: "ClusterIP's are only internally available, nodePorts expose the container to the host node System, Loadbalancer exposes the service using the system loadbalancer" + schema: + type: string + default: "NodePort" + enum: + - value: "NodePort" + description: "NodePort" + - value: "ClusterIP" + description: "ClusterIP" + - value: "LoadBalancer" + description: "LoadBalancer" + - variable: loadBalancerIP + label: "LoadBalancer IP" + description: "LoadBalancerIP" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: string + default: "" + - variable: externalIPs + label: "External IP's" + description: "External IP's" + schema: + show_if: [["type", "=", "LoadBalancer"]] + type: list + default: [] + items: + - variable: externalIP + label: "External IP" + schema: + type: string + - variable: ports + label: "Service's Port(s) Configuration" + schema: + type: dict + attrs: + - variable: main + label: "Main Service Port Configuration" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the port" + schema: + type: boolean + default: true + hidden: true + - variable: protocol + label: "Port Type" + schema: + type: string + default: "HTTP" + enum: + - value: HTTP + description: "HTTP" + - value: "HTTPS" + description: "HTTPS" + - value: TCP + description: "TCP" + - value: "UDP" + description: "UDP" + - variable: targetPort + label: "Target Port" + description: "This port exposes the container port on the service" + schema: + type: int + default: 80 + editable: false + hidden: true + - variable: port + label: "Container Port" + schema: + type: int + default: 80 + 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 + default: 36102 + required: true + + - variable: persistence + label: "Integrated Persistent Storage" + description: "Integrated Persistent Storage" + group: "Storage and Persistence" + schema: + type: dict + attrs: + - variable: data + label: "App Data Storage" + description: "Stores the Application Data." + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the storage" + schema: + type: boolean + default: true + - variable: type + label: "(Advanced) Type of Storage" + description: "Sets the persistence type" + schema: + type: string + default: "pvc" + enum: + - value: "pvc" + description: "pvc" + - value: "emptyDir" + description: "emptyDir" + - value: "hostPath" + description: "hostPath" + - variable: storageClass + label: "(Advanced) storageClass" + description: " Warning: Anything other than SCALE-ZFS will break rollback!" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "SCALE-ZFS" + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + show_if: [["type", "=", "hostPath"]] + type: boolean + default: true + - variable: readOnly + label: "readOnly" + schema: + type: boolean + default: false + - variable: hostPath + label: "hostPath" + description: "Path inside the container the storage is mounted" + schema: + show_if: [["type", "=", "hostPath"]] + type: hostpath + - variable: hostPathType + label: "hostPath Type" + schema: + show_if: [["type", "=", "hostPath"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "DirectoryOrCreate" + description: "DirectoryOrCreate" + - value: "Directory" + description: "Directory" + - value: "FileOrCreate" + description: "FileOrCreate" + - value: "File" + description: "File" + - value: "Socket" + description: "Socket" + - value: "CharDevice" + description: "CharDevice" + - value: "BlockDevice" + description: "BlockDevice" + - variable: mountPath + label: "mountPath" + description: "Path inside the container the storage is mounted" + schema: + type: string + default: "/data/conf/sogo/" + hidden: true + - variable: medium + label: "EmptyDir Medium" + schema: + show_if: [["type", "=", "emptyDir"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "Memory" + description: "Memory" + - variable: accessMode + label: "Access Mode (Advanced)" + description: "Allow or disallow multiple PVC's writhing to the same PV" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "ReadWriteOnce" + enum: + - value: "ReadWriteOnce" + description: "ReadWriteOnce" + - value: "ReadOnlyMany" + description: "ReadOnlyMany" + - value: "ReadWriteMany" + description: "ReadWriteMany" + - variable: size + label: "Size quotum of storage" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "100Gi" + - variable: drafts + label: "App drafts Storage" + description: "Stores Draft emails" + schema: + type: dict + attrs: + - variable: enabled + label: "Enable the storage" + schema: + type: boolean + default: true + - variable: type + label: "(Advanced) Type of Storage" + description: "Sets the persistence type" + schema: + type: string + default: "pvc" + enum: + - value: "pvc" + description: "pvc" + - value: "emptyDir" + description: "emptyDir" + - value: "hostPath" + description: "hostPath" + - variable: storageClass + label: "(Advanced) storageClass" + description: " Warning: Anything other than SCALE-ZFS will break rollback!" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "SCALE-ZFS" + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + show_if: [["type", "=", "hostPath"]] + type: boolean + default: true + - variable: readOnly + label: "readOnly" + schema: + type: boolean + default: false + - variable: hostPath + label: "hostPath" + description: "Path inside the container the storage is mounted" + schema: + show_if: [["type", "=", "hostPath"]] + type: hostpath + - variable: hostPathType + label: "hostPath Type" + schema: + show_if: [["type", "=", "hostPath"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "DirectoryOrCreate" + description: "DirectoryOrCreate" + - value: "Directory" + description: "Directory" + - value: "FileOrCreate" + description: "FileOrCreate" + - value: "File" + description: "File" + - value: "Socket" + description: "Socket" + - value: "CharDevice" + description: "CharDevice" + - value: "BlockDevice" + description: "BlockDevice" + - variable: mountPath + label: "mountPath" + description: "Path inside the container the storage is mounted" + schema: + type: string + default: "/var/spool/sogo" + hidden: true + - variable: medium + label: "EmptyDir Medium" + schema: + show_if: [["type", "=", "emptyDir"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "Memory" + description: "Memory" + - variable: accessMode + label: "Access Mode (Advanced)" + description: "Allow or disallow multiple PVC's writhing to the same PV" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "ReadWriteOnce" + enum: + - value: "ReadWriteOnce" + description: "ReadWriteOnce" + - value: "ReadOnlyMany" + description: "ReadOnlyMany" + - value: "ReadWriteMany" + description: "ReadWriteMany" + - variable: size + label: "Size quotum of storage" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "100Gi" + - variable: mimetmp + label: "App mimetmp Storage" + description: "Stores the temporary mime files" + 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: "emptyDir" + enum: + - value: "pvc" + description: "pvc" + - value: "emptyDir" + description: "emptyDir" + - value: "hostPath" + description: "hostPath" + - variable: storageClass + label: "(Advanced) storageClass" + description: " Warning: Anything other than SCALE-ZFS will break rollback!" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "SCALE-ZFS" + - variable: setPermissions + label: "Automatic Permissions" + description: "Automatically set permissions on install" + schema: + show_if: [["type", "=", "hostPath"]] + type: boolean + default: true + - variable: readOnly + label: "readOnly" + schema: + type: boolean + default: false + - variable: hostPath + label: "hostPath" + description: "Path inside the container the storage is mounted" + schema: + show_if: [["type", "=", "hostPath"]] + type: hostpath + - variable: hostPathType + label: "hostPath Type" + schema: + show_if: [["type", "=", "hostPath"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "DirectoryOrCreate" + description: "DirectoryOrCreate" + - value: "Directory" + description: "Directory" + - value: "FileOrCreate" + description: "FileOrCreate" + - value: "File" + description: "File" + - value: "Socket" + description: "Socket" + - value: "CharDevice" + description: "CharDevice" + - value: "BlockDevice" + description: "BlockDevice" + - variable: mountPath + label: "mountPath" + description: "Path inside the container the storage is mounted" + schema: + type: string + default: "/mimetmp" + hidden: true + - variable: medium + label: "EmptyDir Medium" + schema: + show_if: [["type", "=", "emptyDir"]] + type: string + default: "" + enum: + - value: "" + description: "Default" + - value: "Memory" + description: "Memory" + - variable: accessMode + label: "Access Mode (Advanced)" + description: "Allow or disallow multiple PVC's writhing to the same PV" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "ReadWriteOnce" + enum: + - value: "ReadWriteOnce" + description: "ReadWriteOnce" + - value: "ReadOnlyMany" + description: "ReadOnlyMany" + - value: "ReadWriteMany" + description: "ReadWriteMany" + - variable: size + label: "Size quotum of storage" + schema: + show_if: [["type", "=", "pvc"]] + type: string + default: "100Gi" + + - 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: 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: 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: resources + group: "Resources and Devices" + label: "" + schema: + type: dict + attrs: + - variable: limits + label: "Advanced Limit Resource Consumption" + schema: + type: dict + attrs: + - variable: cpu + label: "CPU" + schema: + type: string + default: "2000m" + - 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/sogo/0.0.4/templates/_config.tpl b/incubator/sogo/0.0.4/templates/_config.tpl new file mode 100644 index 00000000000..8119d7de08f --- /dev/null +++ b/incubator/sogo/0.0.4/templates/_config.tpl @@ -0,0 +1,154 @@ +{{/* Define the configmap */}} +{{- define "sogo.config" -}} +--- + +apiVersion: v1 +kind: Secret +metadata: + labels: + {{- include "common.labels" . | nindent 4 }} + name: dbcreds +{{- $dbprevious := lookup "v1" "Secret" .Release.Namespace "dbcreds" }} +{{- $dbPass := "" }} +data: +{{- if $dbprevious }} + {{- $dbPass = ( index $dbprevious.data "postgresql-password" ) | b64dec }} + postgresql-password: {{ ( index $dbprevious.data "postgresql-password" ) }} + postgresql-postgres-password: {{ ( index $dbprevious.data "postgresql-postgres-password" ) }} +{{- else }} + {{- $dbPass = randAlphaNum 50 }} + postgresql-password: {{ $dbPass | b64enc | quote }} + postgresql-postgres-password: {{ randAlphaNum 50 | b64enc | quote }} +{{- end }} + {{- $url := printf "%v%v:%v@%v-%v:%v/%v" "postgresql://" .Values.postgresql.postgresqlUsername $dbPass .Release.Name "postgresql" "5432" .Values.postgresql.postgresqlDatabase }} + url: {{ $url | b64enc | quote }} + plainhost: {{ ( printf "%v-%v" .Release.Name "postgresql" ) | b64enc | quote }} +type: Opaque + +--- + +apiVersion: v1 +kind: ConfigMap +metadata: + name: sogo-config +data: + sogo.conf: | + { + /* ********************* Main SOGo configuration file ********************** + * * + * Since the content of this file is a dictionary in OpenStep plist format, * + * the curly braces enclosing the body of the configuration are mandatory. * + * See the Installation Guide for details on the format. * + * * + * C and C++ style comments are supported. * + * * + * This example configuration contains only a subset of all available * + * configuration parameters. Please see the installation guide more details. * + * * + * ~sogo/GNUstep/Defaults/.GNUstepDefaults has precedence over this file, * + * make sure to move it away to avoid unwanted parameter overrides. * + * * + * **************************************************************************/ + + /* Database configuration (mysql:// or postgresql://) */ + SOGoProfileURL = "{{ $url }}/sogo_user_profile"; + OCSFolderInfoURL = "{{ $url }}/sogo_folder_info"; + OCSSessionsFolderURL = "{{ $url }}/sogo_sessions_folder"; + + /* Mail */ + SOGoDraftsFolderName = {{ .Values.sogo.mail.SOGoDraftsFolderName | default "Drafts" }}; + SOGoSentFolderName = {{ .Values.sogo.mail.SOGoSentFolderName | default "Sent" }}; + SOGoTrashFolderName = {{ .Values.sogo.mail.SOGoTrashFolderName | default "Trash" }}; + SOGoIMAPServer = {{ .Values.sogo.mail.SOGoIMAPServer | default "localhost" }}; +{{- if .Values.sogo.mail.SOGoSieveServer}} + SOGoSieveServer = {{ .Values.sogo.mail.SOGoSieveServer | default "sieve://127.0.0.1:4190" }}; +{{- end }} + SOGoMailDomain = {{ .Values.sogo.mail.SOGoMailDomain | default "acme.com" }}; + SOGoMailingMechanism = {{ .Values.sogo.mail.SOGoMailingMechanism | default "smtp" }}; +{{- if eq .Values.sogo.mail.SOGoMailingMechanism "smtp" }} + SOGoSMTPServer = {{ .Values.sogo.mail.SOGoSMTPServer | default "smtp://domain:port/?tls=YES" }}; +{{- end }} + SOGoForceExternalLoginWithEmail = {{ if .Values.sogo.mail.SOGoForceExternalLoginWithEmail }}"YES"{{ else }}"NO"{{ end }}; + SOGoMailSpoolPath = {{ ( .Values.sogo.mail.SOGoMailSpoolPath | default "/var/spool/sogo") | quote }}; + NGMimeBuildMimeTempDirectory = {{ ( .Values.sogo.mail.NGMimeBuildMimeTempDirectory | default "/mimetmp") | quote }}; + + /* Notifications */ + SOGoAppointmentSendEMailNotifications = {{ if .Values.sogo.notifications.SOGoAppointmentSendEMailNotifications }}"YES"{{ else }}"NO"{{ end }}; + SOGoACLsSendEMailNotifications = {{ if .Values.sogo.notifications.SOGoACLsSendEMailNotifications }}"YES"{{ else }}"NO"{{ end }}; + SOGoFoldersSendEMailNotifications = {{ if .Values.sogo.notifications.SOGoFoldersSendEMailNotifications }}"YES"{{ else }}"NO"{{ end }}; + + /* Authentication */ + SOGoPasswordChangeEnabled = {{ if .Values.sogo.auth.SOGoPasswordChangeEnabled }}"YES"{{ else }}"NO"{{ end }}; + + /* User Sources */ +{{- if .Values.sogo.usersources }} + SOGoUserSources = ( + {{- range $index, $value := .Values.sogo.usersources }} + { + type = {{ $value.type | default "LDAP" }}; + {{- if eq $value.type "LDAP" }} + CNFieldName = {{ $value.CNFieldName | default "cn" }}; + UIDFieldName = {{ $value.UIDFieldName | default "uid" }}; + IDFieldName = {{ $value.IDFieldName | default "uid" }}; // first field of the DN for direct binds + bindFields = {{ $value.bindFields | default "(uid, mail)" }}; // array of fields to use for indirect binds + baseDN = {{ ( $value.baseDN | default "ou=users,dc=acme,dc=com" ) | quote }}; + bindDN = {{ ( $value.bindDN | default "uid=sogo,ou=users,dc=acme,dc=com" ) | quote }}; + bindPassword = {{ $value.bindPassword | default "qwerty" }}; + canAuthenticate = {{ if $value.canAuthenticate }}"YES"{{ else }}"NO"{{ end }}; + displayName = {{ ( $value.displayName | default "Shared Addresses" ) | quote }}; + hostname = {{ $value.hostname | default "ldap://127.0.0.1:389" }}; + id = {{ $value.id | default "public" }}; + isAddressBook = {{ if $value.isAddressBook }}"YES"{{ else }}"NO"{{ end }}; + {{- else if eq $value.type "SQL" }} + id = {{ $value.sql.id | default "directory" }}; + viewURL = {{ ( $value.sql.viewURL | default "postgresql://sogo:sogo@127.0.0.1:5432/sogo/sogo_view" ) | quote }}; + canAuthenticate = {{ if $value.sql.canAuthenticate }}"YES"{{ else }}"NO"{{ end }}; + isAddressBook = {{ if $value.sql.isAddressBook }}"YES"{{ else }}"NO"{{ end }}; + userPasswordAlgorithm = {{ $value.sql.userPasswordAlgorithm | default "md5" }}; + {{- end }} + {{- range $value.custom }} + {{ .name }} = {{ .value }}; + {{- end }} + {{- if $index }} + } + {{- else }} + }, + {{- end }} + {{- end }} + ); +{{- end }} + + /* Web Interface */ + SOGoPageTitle = {{ .Values.sogo.webui.SOGoPageTitle | default "SOGo" }}; + SOGoVacationEnabled = {{ if .Values.sogo.webui.SOGoVacationEnabled }}"YES"{{ else }}"NO"{{ end }}; + SOGoForwardEnabled = {{ if .Values.sogo.webui.SOGoForwardEnabled }}"YES"{{ else }}"NO"{{ end }}; + SOGoSieveScriptsEnabled = {{ if .Values.sogo.webui.SOGoSieveScriptsEnabled }}"YES"{{ else }}"NO"{{ end }}; + SOGoMailAuxiliaryUserAccountsEnabled = {{ if .Values.sogo.webui.SOGoMailAuxiliaryUserAccountsEnabled }}"YES"{{ else }}"NO"{{ end }}; + SOGoTrustProxyAuthentication = {{ if .Values.sogo.webui.SOGoTrustProxyAuthentication }}"YES"{{ else }}"NO"{{ end }}; + SOGoXSRFValidationEnabled = {{ if .Values.sogo.webui.SOGoXSRFValidationEnabled }}"YES"{{ else }}"NO"{{ end }}; + + /* General - SOGoTimeZone *MUST* be defined */ + SOGoLanguage = {{ .Values.sogo.general.SOGoLanguage | default "English" }}; + SOGoTimeZone = {{ .Values.env.TZ | default "America/Montreal" }}; + SOGoSuperUsernames = ({{ .Values.sogo.general.SOGoSuperUsernames | default "" }}); // This is an array - keep the parens! + SxVMemLimit = {{ .Values.sogo.general.SxVMemLimit | default "384" }}; + SOGoMemcachedHost = {{ ( printf "%v-%v" .Release.Name "memcached" ) | quote }}; + + /* Debug */ + SOGoDebugRequests = {{ if .Values.sogo.debug.SOGoDebugRequests }}"YES"{{ else }}"NO"{{ end }}; + SoDebugBaseURL = {{ if .Values.sogo.debug.SoDebugBaseURL }}"YES"{{ else }}"NO"{{ end }}; + ImapDebugEnabled = {{ if .Values.sogo.debug.ImapDebugEnabled }}"YES"{{ else }}"NO"{{ end }}; + LDAPDebugEnabled = {{ if .Values.sogo.debug.LDAPDebugEnabled }}"YES"{{ else }}"NO"{{ end }}; + PGDebugEnabled = {{ if .Values.sogo.debug.PGDebugEnabled }}"YES"{{ else }}"NO"{{ end }}; + MySQL4DebugEnabled = {{ if .Values.sogo.debug.MySQL4DebugEnabled }}"YES"{{ else }}"NO"{{ end }}; + SOGoUIxDebugEnabled = {{ if .Values.sogo.debug.SOGoUIxDebugEnabled }}"YES"{{ else }}"NO"{{ end }}; + WODontZipResponse = {{ if .Values.sogo.debug.WODontZipResponse }}"YES"{{ else }}"NO"{{ end }}; + WOLogFile = {{ ( .Values.sogo.debug.WOLogFile | default "/var/log/sogo/sogo.log" ) | quote }}; + } + + /* Custom Arguments added by user */ + {{- range .Values.sogo.custom }} + {{ .name }} = {{ .value }}; + {{- end }} + +{{- end -}} diff --git a/incubator/sogo/0.0.4/templates/common.yaml b/incubator/sogo/0.0.4/templates/common.yaml new file mode 100644 index 00000000000..51e8201cc68 --- /dev/null +++ b/incubator/sogo/0.0.4/templates/common.yaml @@ -0,0 +1,26 @@ +{{/* Make sure all variables are set properly */}} +{{- include "common.values.setup" . }} + +{{/* Render config and secrets for sogo */}} +{{- include "sogo.config" . }} + +{{/* Append the general configMap volume to the volumes */}} +{{- define "sogo.configmapVolume" -}} +enabled: "true" +mountPath: "/etc/sogo/sogo.conf" +readOnly: true +subPath: sogo.conf +type: "custom" +volumeSpec: + configMap: + name: sogo-config + items: + - key: sogo.conf + path: sogo.conf +{{- end -}} + +{{- $_ := set .Values.persistence "sogo-config" (include "sogo.configmapVolume" . | fromYaml) -}} + + +{{/* Render the templates */}} +{{ include "common.all" . }} diff --git a/incubator/sogo/0.0.4/test_values.yaml b/incubator/sogo/0.0.4/test_values.yaml new file mode 100644 index 00000000000..19bf6530d93 --- /dev/null +++ b/incubator/sogo/0.0.4/test_values.yaml @@ -0,0 +1,142 @@ +# Default values for Bitwarden. +image: + repository: ghcr.io/truecharts/sogo + pullPolicy: IfNotPresent + tag: "v5.2.0" + +# -- services +service: + main: + ports: + main: + port: 80 + +# -- initcontainers +initContainers: + # -- wait for database before starting sogo + - name: init-postgresdb + image: postgres:13.1 + command: + - "sh" + - "-c" + - "until pg_isready -U sogo -h ${pghost} ; do sleep 2 ; done" + imagePullPolicy: IfNotPresent + env: + - name: pghost + valueFrom: + secretKeyRef: + name: dbcreds + key: plainhost + +# -- persistence settings +persistence: + data: + enabled: true + mountPath: "/data/conf/sogo/" + type: pvc + accessMode: ReadWriteOnce + size: "100Gi" + drafts: + enabled: true + mountPath: "/var/spool/sogo" + type: pvc + accessMode: ReadWriteOnce + size: "100Gi" + mimetmp: + enabled: true + mountPath: "/mimetmp" + type: emptyDir + + +# -- postgres dependency settings +postgresql: + enabled: true + postgresqlUsername: sogo + postgresqlDatabase: sogo + existingSecret: dbcreds + +# -- memcached dependency settings +memcached: + enabled: true + +# -- Sogo settings +sogo: + # -- Pre-configured Sogo mail settings + mail: + SOGoDraftsFolderName: "Drafts" + SOGoSentFolderName: "Sent" + SOGoTrashFolderName: "Trash" + SOGoIMAPServer: "localhost" + SOGoSieveServer: "" + SOGoMailDomain: "example.com" + SOGoMailingMechanism: "smtp" + SOGoSMTPServer: "smtp://domain:port" + SOGoForceExternalLoginWithEmail: false + SOGoMailSpoolPath: "/var/spool/sogo" + NGMimeBuildMimeTempDirectory: "/mimetmp" + # -- Pre-configured Sogo notifications settings + notifications: + SOGoAppointmentSendEMailNotifications: false + SOGoACLsSendEMailNotifications: false + SOGoFoldersSendEMailNotifications: false + # -- Pre-configured general Sogo settings + general: + SOGoLanguage: "English" + SOGoSuperUsernames: "" + SxVMemLimit: "384" + # -- Pre-configured Sogo authentication settings + auth: + SOGoPasswordChangeEnabled: true + # -- Sogo usersources + usersources: [] + # - type: "ldap" + # CNFieldName: "cn" + # UIDFieldName: "uid" + # IDFieldName: "uid" + # bindFields: "(uid, mail)" + # baseDN: "ou=users,dc=acme,dc=com" + # bindDN: "uid=sogo,ou=users,dc=acme,dc=com" + # bindPassword: "qwerty" + # canAuthenticate: true + # displayName: "Shared Addresses" + # hostname: "ldap://127.0.0.1:389" + # id: "public" + # isAddressBook: true + # custom: + # - name: name-of-ldap-setting + # value: somevalue + # + # - type: "sql" + # id: "directory" + # viewURL: "postgresql://sogo:sogo@127.0.0.1:5432/sogo/sogo_view" + # canAuthenticate: true + # isAddressBook: true + # userPasswordAlgorithm: "md5" + # custom: + # - name: name-of-sql-setting + # value: somevalue + + # -- Pre-configured Sogo debug settings + debug: + SOGoDebugRequests: false + SoDebugBaseURL: false + LDAPDebugEnabled: false + ImapDebugEnabled: false + PGDebugEnabled: false + MySQL4DebugEnabled: false + SOGoUIxDebugEnabled: false + WODontZipResponse: false + WOLogFile: "/var/log/sogo/sogo.log" + # -- Pre-configured Sogo webui settings + webui: + SOGoPageTitle: "SOGo" + SOGoVacationEnabled: true + SOGoForwardEnabled: true + SOGoSieveScriptsEnabled: true + SOGoMailAuxiliaryUserAccountsEnabled: true + SOGoTrustProxyAuthentication: false + SOGoXSRFValidationEnabled: true + # -- custom Sogo setting arguments + custom: [] + # - name: SOGoPageTitle + # value: "somevalue" diff --git a/incubator/sogo/0.0.4/values.yaml b/incubator/sogo/0.0.4/values.yaml new file mode 100644 index 00000000000..e69de29bb2d diff --git a/stable/airsonic/1.11.13/Chart.lock b/stable/airsonic/1.11.13/Chart.lock index 57b5b0c47c9..8fa502477c7 100644 --- a/stable/airsonic/1.11.13/Chart.lock +++ b/stable/airsonic/1.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:41:46.230154785Z" +generated: "2021-09-06T12:01:35.366482146Z" diff --git a/stable/appdaemon/3.11.13/Chart.lock b/stable/appdaemon/3.11.13/Chart.lock index 58d52fdb460..adaf7d3e2d7 100644 --- a/stable/appdaemon/3.11.13/Chart.lock +++ b/stable/appdaemon/3.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:41:50.663115051Z" +generated: "2021-09-06T12:01:39.904569402Z" diff --git a/stable/authelia/1.6.22/Chart.lock b/stable/authelia/1.6.22/Chart.lock index 0e12062eea2..c873686b93b 100644 --- a/stable/authelia/1.6.22/Chart.lock +++ b/stable/authelia/1.6.22/Chart.lock @@ -9,4 +9,4 @@ dependencies: repository: https://charts.bitnami.com/bitnami version: 15.3.1 digest: sha256:8e1539556c3970833500f4afd64a93b92f3a89d55f215a85a6788408feb3e809 -generated: "2021-09-06T11:41:57.489789581Z" +generated: "2021-09-06T12:01:46.803552749Z" diff --git a/stable/bazarr/6.11.14/Chart.lock b/stable/bazarr/6.11.14/Chart.lock index 44c3044bf73..ae2e5cccedf 100644 --- a/stable/bazarr/6.11.14/Chart.lock +++ b/stable/bazarr/6.11.14/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:42:05.205982319Z" +generated: "2021-09-06T12:01:54.701760931Z" diff --git a/stable/booksonic-air/1.9.13/Chart.lock b/stable/booksonic-air/1.9.13/Chart.lock index 88c6143b152..59de3df5e66 100644 --- a/stable/booksonic-air/1.9.13/Chart.lock +++ b/stable/booksonic-air/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:42:09.544219138Z" +generated: "2021-09-06T12:01:59.286093774Z" diff --git a/stable/calibre-web/6.11.13/Chart.lock b/stable/calibre-web/6.11.13/Chart.lock index b1601c5b4e3..c9521745733 100644 --- a/stable/calibre-web/6.11.13/Chart.lock +++ b/stable/calibre-web/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:42:18.335913816Z" +generated: "2021-09-06T12:02:08.295824925Z" diff --git a/stable/calibre/1.9.13/Chart.lock b/stable/calibre/1.9.13/Chart.lock index 493b1c0402e..82e3dc4277d 100644 --- a/stable/calibre/1.9.13/Chart.lock +++ b/stable/calibre/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:42:13.95398211Z" +generated: "2021-09-06T12:02:03.848028707Z" diff --git a/stable/collabora-online/6.11.13/Chart.lock b/stable/collabora-online/6.11.13/Chart.lock index 1d60b8cc139..42f23c67f5b 100644 --- a/stable/collabora-online/6.11.13/Chart.lock +++ b/stable/collabora-online/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:42:22.700699652Z" +generated: "2021-09-06T12:02:12.76616891Z" diff --git a/stable/deconz/1.9.13/Chart.lock b/stable/deconz/1.9.13/Chart.lock index e1e989bc1a4..0b4c5445259 100644 --- a/stable/deconz/1.9.13/Chart.lock +++ b/stable/deconz/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:42:27.079920258Z" +generated: "2021-09-06T12:02:17.283274999Z" diff --git a/stable/deepstack-cpu/4.11.13/Chart.lock b/stable/deepstack-cpu/4.11.13/Chart.lock index c8e1cbc990c..02a5dc22e5c 100644 --- a/stable/deepstack-cpu/4.11.13/Chart.lock +++ b/stable/deepstack-cpu/4.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:42:31.487623324Z" +generated: "2021-09-06T12:02:21.778930683Z" diff --git a/stable/deluge/6.11.13/Chart.lock b/stable/deluge/6.11.13/Chart.lock index 410fd9cf86b..4a62fb86ddd 100644 --- a/stable/deluge/6.11.13/Chart.lock +++ b/stable/deluge/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:42:35.84068188Z" +generated: "2021-09-06T12:02:26.259591801Z" diff --git a/stable/dizquetv/1.9.13/Chart.lock b/stable/dizquetv/1.9.13/Chart.lock index 95f33ddaf4d..538ee85d0f7 100644 --- a/stable/dizquetv/1.9.13/Chart.lock +++ b/stable/dizquetv/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:42:40.229035537Z" +generated: "2021-09-06T12:02:30.786645197Z" diff --git a/stable/duplicati/1.9.13/Chart.lock b/stable/duplicati/1.9.13/Chart.lock index 6b096d28b2e..7935bc0a838 100644 --- a/stable/duplicati/1.9.13/Chart.lock +++ b/stable/duplicati/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:42:44.588712072Z" +generated: "2021-09-06T12:02:35.18783213Z" diff --git a/stable/emby/6.11.13/Chart.lock b/stable/emby/6.11.13/Chart.lock index 662fdad55c6..e7c024ed10e 100644 --- a/stable/emby/6.11.13/Chart.lock +++ b/stable/emby/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:42:48.88577664Z" +generated: "2021-09-06T12:02:39.649037567Z" diff --git a/stable/esphome/6.11.13/Chart.lock b/stable/esphome/6.11.13/Chart.lock index 3a320636cb8..3e85085ebc4 100644 --- a/stable/esphome/6.11.13/Chart.lock +++ b/stable/esphome/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:42:53.245370438Z" +generated: "2021-09-06T12:02:44.128804971Z" diff --git a/stable/external-service/1.4.13/Chart.lock b/stable/external-service/1.4.13/Chart.lock index b77fb682903..feed1d6b50c 100644 --- a/stable/external-service/1.4.13/Chart.lock +++ b/stable/external-service/1.4.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:42:57.580856009Z" +generated: "2021-09-06T12:02:48.785892613Z" diff --git a/stable/fireflyiii/6.1.8/Chart.lock b/stable/fireflyiii/6.1.8/Chart.lock index 8a3c38140b0..12f00196dfc 100644 --- a/stable/fireflyiii/6.1.8/Chart.lock +++ b/stable/fireflyiii/6.1.8/Chart.lock @@ -6,4 +6,4 @@ dependencies: repository: https://truecharts.org/ version: 1.6.1 digest: sha256:7d052f87287c75c33137e6e8a856ef71bb138717949069ee2102c0c11cad8a85 -generated: "2021-09-06T11:43:02.845855046Z" +generated: "2021-09-06T12:02:54.289745449Z" diff --git a/stable/flaresolverr/1.9.13/Chart.lock b/stable/flaresolverr/1.9.13/Chart.lock index 7801a121ee7..a9353e0583a 100644 --- a/stable/flaresolverr/1.9.13/Chart.lock +++ b/stable/flaresolverr/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:43:08.249115659Z" +generated: "2021-09-06T12:02:59.962555947Z" diff --git a/stable/flood/1.9.13/Chart.lock b/stable/flood/1.9.13/Chart.lock index c547ce3c98f..9e00b031a52 100644 --- a/stable/flood/1.9.13/Chart.lock +++ b/stable/flood/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:43:12.637033898Z" +generated: "2021-09-06T12:03:04.487311625Z" diff --git a/stable/focalboard/1.9.13/Chart.lock b/stable/focalboard/1.9.13/Chart.lock index ae9339c9baf..71b0f30bae4 100644 --- a/stable/focalboard/1.9.13/Chart.lock +++ b/stable/focalboard/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:43:16.995659971Z" +generated: "2021-09-06T12:03:08.90535715Z" diff --git a/stable/freeradius/1.7.16/Chart.lock b/stable/freeradius/1.7.16/Chart.lock index 6e51f1bfbd9..cc35879ea78 100644 --- a/stable/freeradius/1.7.16/Chart.lock +++ b/stable/freeradius/1.7.16/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:43:21.417303853Z" +generated: "2021-09-06T12:03:13.331813592Z" diff --git a/stable/freshrss/6.11.13/Chart.lock b/stable/freshrss/6.11.13/Chart.lock index 0ac6fcf325e..939a924693c 100644 --- a/stable/freshrss/6.11.13/Chart.lock +++ b/stable/freshrss/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:43:25.872351956Z" +generated: "2021-09-06T12:03:17.829917177Z" diff --git a/stable/gaps/6.11.13/Chart.lock b/stable/gaps/6.11.13/Chart.lock index 579941b0806..1cb49ddf234 100644 --- a/stable/gaps/6.11.13/Chart.lock +++ b/stable/gaps/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:43:30.352887968Z" +generated: "2021-09-06T12:03:22.310864306Z" diff --git a/stable/gonic/1.9.13/Chart.lock b/stable/gonic/1.9.13/Chart.lock index cc6f520ef0f..20a8564ceb4 100644 --- a/stable/gonic/1.9.13/Chart.lock +++ b/stable/gonic/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:43:35.025504804Z" +generated: "2021-09-06T12:03:26.580321048Z" diff --git a/stable/grocy/6.11.13/Chart.lock b/stable/grocy/6.11.13/Chart.lock index bd47755a9cc..f6e221b209b 100644 --- a/stable/grocy/6.11.13/Chart.lock +++ b/stable/grocy/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:43:39.635850377Z" +generated: "2021-09-06T12:03:30.890490784Z" diff --git a/stable/handbrake/6.11.13/Chart.lock b/stable/handbrake/6.11.13/Chart.lock index fbf590c124e..e2030a07b13 100644 --- a/stable/handbrake/6.11.13/Chart.lock +++ b/stable/handbrake/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:43:44.039540389Z" +generated: "2021-09-06T12:03:35.248323319Z" diff --git a/stable/haste-server/1.11.13/Chart.lock b/stable/haste-server/1.11.13/Chart.lock index 376e84da599..b83a0cf0f9b 100644 --- a/stable/haste-server/1.11.13/Chart.lock +++ b/stable/haste-server/1.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:43:48.394528902Z" +generated: "2021-09-06T12:03:39.628534276Z" diff --git a/stable/healthchecks/1.9.13/Chart.lock b/stable/healthchecks/1.9.13/Chart.lock index c6f1527bb30..85188326310 100644 --- a/stable/healthchecks/1.9.13/Chart.lock +++ b/stable/healthchecks/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:43:52.767670707Z" +generated: "2021-09-06T12:03:44.160717565Z" diff --git a/stable/heimdall/6.11.13/Chart.lock b/stable/heimdall/6.11.13/Chart.lock index 5b83fd423d7..e5b7a0a4338 100644 --- a/stable/heimdall/6.11.13/Chart.lock +++ b/stable/heimdall/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:43:57.156442625Z" +generated: "2021-09-06T12:03:48.757800385Z" diff --git a/stable/home-assistant/6.11.13/Chart.lock b/stable/home-assistant/6.11.13/Chart.lock index 93412897818..7f0205b959d 100644 --- a/stable/home-assistant/6.11.13/Chart.lock +++ b/stable/home-assistant/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:01.613939242Z" +generated: "2021-09-06T12:03:53.120208275Z" diff --git a/stable/hyperion-ng/1.9.13/Chart.lock b/stable/hyperion-ng/1.9.13/Chart.lock index c962b876856..6daa6762e17 100644 --- a/stable/hyperion-ng/1.9.13/Chart.lock +++ b/stable/hyperion-ng/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:44:06.094943898Z" +generated: "2021-09-06T12:03:57.458823905Z" diff --git a/stable/jackett/6.11.15/Chart.lock b/stable/jackett/6.11.15/Chart.lock index b45e63ffd65..7a890421906 100644 --- a/stable/jackett/6.11.15/Chart.lock +++ b/stable/jackett/6.11.15/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:10.525752469Z" +generated: "2021-09-06T12:04:01.890278775Z" diff --git a/stable/jdownloader2/1.0.3/Chart.lock b/stable/jdownloader2/1.0.3/Chart.lock index e9e4e26e5e6..f238a86722b 100644 --- a/stable/jdownloader2/1.0.3/Chart.lock +++ b/stable/jdownloader2/1.0.3/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:15.052284155Z" +generated: "2021-09-06T12:04:06.397933555Z" diff --git a/stable/jellyfin/6.11.13/Chart.lock b/stable/jellyfin/6.11.13/Chart.lock index 10bb4258aea..e5f527019e4 100644 --- a/stable/jellyfin/6.11.13/Chart.lock +++ b/stable/jellyfin/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:19.59631219Z" +generated: "2021-09-06T12:04:10.633944133Z" diff --git a/stable/k8s-gateway/1.0.8/Chart.lock b/stable/k8s-gateway/1.0.8/Chart.lock index a849a0e5739..d46def48ce9 100644 --- a/stable/k8s-gateway/1.0.8/Chart.lock +++ b/stable/k8s-gateway/1.0.8/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:24.01166213Z" +generated: "2021-09-06T12:04:14.90115761Z" diff --git a/stable/kms/6.11.13/Chart.lock b/stable/kms/6.11.13/Chart.lock index 36c8024d7a9..83f5046360b 100644 --- a/stable/kms/6.11.13/Chart.lock +++ b/stable/kms/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:28.529218337Z" +generated: "2021-09-06T12:04:19.137251132Z" diff --git a/stable/komga/1.9.16/Chart.lock b/stable/komga/1.9.16/Chart.lock index a2401e4f4a6..01fb53fca5b 100644 --- a/stable/komga/1.9.16/Chart.lock +++ b/stable/komga/1.9.16/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:44:32.950768564Z" +generated: "2021-09-06T12:04:23.481531305Z" diff --git a/stable/lazylibrarian/6.11.13/Chart.lock b/stable/lazylibrarian/6.11.13/Chart.lock index 00eb23adf86..f77ec81e600 100644 --- a/stable/lazylibrarian/6.11.13/Chart.lock +++ b/stable/lazylibrarian/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:37.413671816Z" +generated: "2021-09-06T12:04:27.745821117Z" diff --git a/stable/librespeed/1.9.13/Chart.lock b/stable/librespeed/1.9.13/Chart.lock index 7911f96e029..b4fa5b3b184 100644 --- a/stable/librespeed/1.9.13/Chart.lock +++ b/stable/librespeed/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:44:41.759094354Z" +generated: "2021-09-06T12:04:32.077975227Z" diff --git a/stable/lidarr/6.11.13/Chart.lock b/stable/lidarr/6.11.13/Chart.lock index 8ff1d6bccfd..e2704b90948 100644 --- a/stable/lidarr/6.11.13/Chart.lock +++ b/stable/lidarr/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:46.117712753Z" +generated: "2021-09-06T12:04:36.411846533Z" diff --git a/stable/littlelink/1.5.13/Chart.lock b/stable/littlelink/1.5.13/Chart.lock index 2992da82e34..06ec9e34d48 100644 --- a/stable/littlelink/1.5.13/Chart.lock +++ b/stable/littlelink/1.5.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:50.57774058Z" +generated: "2021-09-06T12:04:40.729148886Z" diff --git a/stable/lychee/6.11.13/Chart.lock b/stable/lychee/6.11.13/Chart.lock index 137cbab4aa2..74a46d6a2ad 100644 --- a/stable/lychee/6.11.13/Chart.lock +++ b/stable/lychee/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:54.929377724Z" +generated: "2021-09-06T12:04:45.076166931Z" diff --git a/stable/mealie/1.11.13/Chart.lock b/stable/mealie/1.11.13/Chart.lock index 8025d18844c..e7a45c0a374 100644 --- a/stable/mealie/1.11.13/Chart.lock +++ b/stable/mealie/1.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:44:59.336143753Z" +generated: "2021-09-06T12:04:49.580290255Z" diff --git a/stable/mosquitto/1.11.13/Chart.lock b/stable/mosquitto/1.11.13/Chart.lock index cef18e2a7a7..400589526a2 100644 --- a/stable/mosquitto/1.11.13/Chart.lock +++ b/stable/mosquitto/1.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:45:03.702674844Z" +generated: "2021-09-06T12:04:54.094098617Z" diff --git a/stable/mylar/1.9.13/Chart.lock b/stable/mylar/1.9.13/Chart.lock index 37dffa47928..19043a4c5fa 100644 --- a/stable/mylar/1.9.13/Chart.lock +++ b/stable/mylar/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:45:08.12771303Z" +generated: "2021-09-06T12:04:58.524762064Z" diff --git a/stable/navidrome/6.11.13/Chart.lock b/stable/navidrome/6.11.13/Chart.lock index 41ad5b36ca6..7615c5462da 100644 --- a/stable/navidrome/6.11.13/Chart.lock +++ b/stable/navidrome/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:45:12.529899533Z" +generated: "2021-09-06T12:05:03.024716299Z" diff --git a/stable/node-red/6.11.13/Chart.lock b/stable/node-red/6.11.13/Chart.lock index b6d98561bd7..764b63dd57b 100644 --- a/stable/node-red/6.11.13/Chart.lock +++ b/stable/node-red/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:45:16.978061619Z" +generated: "2021-09-06T12:05:07.352077793Z" diff --git a/stable/nullserv/1.9.13/Chart.lock b/stable/nullserv/1.9.13/Chart.lock index 4ab2034a48e..79b6b39efd1 100644 --- a/stable/nullserv/1.9.13/Chart.lock +++ b/stable/nullserv/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:45:21.497218255Z" +generated: "2021-09-06T12:05:11.647922976Z" diff --git a/stable/nzbget/6.11.13/Chart.lock b/stable/nzbget/6.11.13/Chart.lock index 6aa8fdaa3fc..ce4e48ddf27 100644 --- a/stable/nzbget/6.11.13/Chart.lock +++ b/stable/nzbget/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:45:26.032726301Z" +generated: "2021-09-06T12:05:15.986607003Z" diff --git a/stable/nzbhydra/6.11.13/Chart.lock b/stable/nzbhydra/6.11.13/Chart.lock index 7f60dadc1b8..74123c399ab 100644 --- a/stable/nzbhydra/6.11.13/Chart.lock +++ b/stable/nzbhydra/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:45:30.560020859Z" +generated: "2021-09-06T12:05:20.282436376Z" diff --git a/stable/octoprint/1.9.13/Chart.lock b/stable/octoprint/1.9.13/Chart.lock index e5361cc4dad..0295e9153f9 100644 --- a/stable/octoprint/1.9.13/Chart.lock +++ b/stable/octoprint/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:45:35.088266533Z" +generated: "2021-09-06T12:05:24.681628427Z" diff --git a/stable/omada-controller/1.9.13/Chart.lock b/stable/omada-controller/1.9.13/Chart.lock index 17ed9298666..1eb5eeeb170 100644 --- a/stable/omada-controller/1.9.13/Chart.lock +++ b/stable/omada-controller/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:45:39.487414159Z" +generated: "2021-09-06T12:05:29.248723664Z" diff --git a/stable/ombi/6.11.14/Chart.lock b/stable/ombi/6.11.14/Chart.lock index 615f444e782..718d46af12c 100644 --- a/stable/ombi/6.11.14/Chart.lock +++ b/stable/ombi/6.11.14/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:45:43.967481322Z" +generated: "2021-09-06T12:05:33.591654962Z" diff --git a/stable/openldap/1.7.17/Chart.lock b/stable/openldap/1.7.17/Chart.lock index aeb856c7513..459d39ac501 100644 --- a/stable/openldap/1.7.17/Chart.lock +++ b/stable/openldap/1.7.17/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:45:48.359922115Z" +generated: "2021-09-06T12:05:37.86862089Z" diff --git a/stable/organizr/6.11.13/Chart.lock b/stable/organizr/6.11.13/Chart.lock index 88ab27f3e80..7314598f0e7 100644 --- a/stable/organizr/6.11.13/Chart.lock +++ b/stable/organizr/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:45:52.791839169Z" +generated: "2021-09-06T12:05:42.160567325Z" diff --git a/stable/overseerr/1.9.13/Chart.lock b/stable/overseerr/1.9.13/Chart.lock index 55d3e273574..ce8746eea17 100644 --- a/stable/overseerr/1.9.13/Chart.lock +++ b/stable/overseerr/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:45:57.219930778Z" +generated: "2021-09-06T12:05:46.644083642Z" diff --git a/stable/owncast/1.9.13/Chart.lock b/stable/owncast/1.9.13/Chart.lock index 4cebc92bd5b..3251ffc865b 100644 --- a/stable/owncast/1.9.13/Chart.lock +++ b/stable/owncast/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:46:01.565614462Z" +generated: "2021-09-06T12:05:51.110231764Z" diff --git a/stable/owncloud-ocis/1.9.13/Chart.lock b/stable/owncloud-ocis/1.9.13/Chart.lock index 3f5c09382a2..25abe6ecf4e 100644 --- a/stable/owncloud-ocis/1.9.13/Chart.lock +++ b/stable/owncloud-ocis/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:46:05.988931977Z" +generated: "2021-09-06T12:05:55.496757478Z" diff --git a/stable/pgadmin/1.8.13/Chart.lock b/stable/pgadmin/1.8.13/Chart.lock index 0bf6fe9ce5c..8d6a22a711f 100644 --- a/stable/pgadmin/1.8.13/Chart.lock +++ b/stable/pgadmin/1.8.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:46:10.372557861Z" +generated: "2021-09-06T12:05:59.786664817Z" diff --git a/stable/photoprism/1.9.13/Chart.lock b/stable/photoprism/1.9.13/Chart.lock index b5cd1abe1d0..e4a3f13d2da 100644 --- a/stable/photoprism/1.9.13/Chart.lock +++ b/stable/photoprism/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:46:14.902340313Z" +generated: "2021-09-06T12:06:04.218565725Z" diff --git a/stable/phpldapadmin/1.8.13/Chart.lock b/stable/phpldapadmin/1.8.13/Chart.lock index 0f07963d1b2..531636c8626 100644 --- a/stable/phpldapadmin/1.8.13/Chart.lock +++ b/stable/phpldapadmin/1.8.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:46:19.311712408Z" +generated: "2021-09-06T12:06:08.594862266Z" diff --git a/stable/piaware/1.9.13/Chart.lock b/stable/piaware/1.9.13/Chart.lock index ecc357d4ecd..d14628813f6 100644 --- a/stable/piaware/1.9.13/Chart.lock +++ b/stable/piaware/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:46:23.701316049Z" +generated: "2021-09-06T12:06:12.80113513Z" diff --git a/stable/pihole/1.0.5/Chart.lock b/stable/pihole/1.0.5/Chart.lock index 0656090c0c8..99c3567a4bc 100644 --- a/stable/pihole/1.0.5/Chart.lock +++ b/stable/pihole/1.0.5/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:46:28.095938807Z" +generated: "2021-09-06T12:06:17.103485918Z" diff --git a/stable/plex/5.11.14/Chart.lock b/stable/plex/5.11.14/Chart.lock index 104f53bf6ce..f5830d7d6f3 100644 --- a/stable/plex/5.11.14/Chart.lock +++ b/stable/plex/5.11.14/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:46:32.476130228Z" +generated: "2021-09-06T12:06:21.404015319Z" diff --git a/stable/podgrab/4.11.13/Chart.lock b/stable/podgrab/4.11.13/Chart.lock index 7fe38e6a1d8..9855b448d2e 100644 --- a/stable/podgrab/4.11.13/Chart.lock +++ b/stable/podgrab/4.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:46:36.833985747Z" +generated: "2021-09-06T12:06:25.660680309Z" diff --git a/stable/postgresql/1.6.2/Chart.lock b/stable/postgresql/1.6.2/Chart.lock index a9dbaf88407..3c9ebaff11c 100644 --- a/stable/postgresql/1.6.2/Chart.lock +++ b/stable/postgresql/1.6.2/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:46:41.244776922Z" +generated: "2021-09-06T12:06:29.907846363Z" diff --git a/stable/pretend-youre-xyzzy/1.9.13/Chart.lock b/stable/pretend-youre-xyzzy/1.9.13/Chart.lock index 2b3980fe5d3..beaa4a5e0ab 100644 --- a/stable/pretend-youre-xyzzy/1.9.13/Chart.lock +++ b/stable/pretend-youre-xyzzy/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:46:45.872579296Z" +generated: "2021-09-06T12:06:34.184910329Z" diff --git a/stable/protonmail-bridge/1.9.13/Chart.lock b/stable/protonmail-bridge/1.9.13/Chart.lock index 9d35e4ce82b..1aae536c1e2 100644 --- a/stable/protonmail-bridge/1.9.13/Chart.lock +++ b/stable/protonmail-bridge/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:46:50.311919382Z" +generated: "2021-09-06T12:06:38.428720021Z" diff --git a/stable/prowlarr/1.11.15/Chart.lock b/stable/prowlarr/1.11.15/Chart.lock index 8ba87f23754..d6ae012532b 100644 --- a/stable/prowlarr/1.11.15/Chart.lock +++ b/stable/prowlarr/1.11.15/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:46:54.713864463Z" +generated: "2021-09-06T12:06:42.871168196Z" diff --git a/stable/pyload/1.9.13/Chart.lock b/stable/pyload/1.9.13/Chart.lock index c8e423c7c24..e89f9762206 100644 --- a/stable/pyload/1.9.13/Chart.lock +++ b/stable/pyload/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:46:59.145013217Z" +generated: "2021-09-06T12:06:47.347092094Z" diff --git a/stable/qbittorrent/6.11.13/Chart.lock b/stable/qbittorrent/6.11.13/Chart.lock index 9b68b0ff080..4f074baa277 100644 --- a/stable/qbittorrent/6.11.13/Chart.lock +++ b/stable/qbittorrent/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:47:03.682160305Z" +generated: "2021-09-06T12:06:51.924017074Z" diff --git a/stable/radarr/6.11.13/Chart.lock b/stable/radarr/6.11.13/Chart.lock index c15ec02efed..5988043fde0 100644 --- a/stable/radarr/6.11.13/Chart.lock +++ b/stable/radarr/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:47:08.151686082Z" +generated: "2021-09-06T12:06:56.465906119Z" diff --git a/stable/readarr/6.11.13/Chart.lock b/stable/readarr/6.11.13/Chart.lock index 6fa89432715..092f97091ba 100644 --- a/stable/readarr/6.11.13/Chart.lock +++ b/stable/readarr/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:47:12.577881744Z" +generated: "2021-09-06T12:07:00.966293641Z" diff --git a/stable/reg/1.11.13/Chart.lock b/stable/reg/1.11.13/Chart.lock index 8e5ce77019b..5aa42f631db 100644 --- a/stable/reg/1.11.13/Chart.lock +++ b/stable/reg/1.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:47:16.990825682Z" +generated: "2021-09-06T12:07:05.408396881Z" diff --git a/stable/resilio-sync/1.9.13/Chart.lock b/stable/resilio-sync/1.9.13/Chart.lock index d113fa4488a..11534d7f6ef 100644 --- a/stable/resilio-sync/1.9.13/Chart.lock +++ b/stable/resilio-sync/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:47:21.397644734Z" +generated: "2021-09-06T12:07:09.726372903Z" diff --git a/stable/sabnzbd/6.11.13/Chart.lock b/stable/sabnzbd/6.11.13/Chart.lock index 115a3a0bae7..137ff9e8b97 100644 --- a/stable/sabnzbd/6.11.13/Chart.lock +++ b/stable/sabnzbd/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:47:25.839177932Z" +generated: "2021-09-06T12:07:14.165420772Z" diff --git a/stable/ser2sock/1.9.13/Chart.lock b/stable/ser2sock/1.9.13/Chart.lock index 5a6877148a4..6c17a86db06 100644 --- a/stable/ser2sock/1.9.13/Chart.lock +++ b/stable/ser2sock/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:47:30.217987388Z" +generated: "2021-09-06T12:07:18.514261237Z" diff --git a/stable/sonarr/6.11.13/Chart.lock b/stable/sonarr/6.11.13/Chart.lock index 2f47ab291c3..0185a735182 100644 --- a/stable/sonarr/6.11.13/Chart.lock +++ b/stable/sonarr/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:47:34.664966789Z" +generated: "2021-09-06T12:07:22.993352508Z" diff --git a/stable/stash/1.9.14/Chart.lock b/stable/stash/1.9.14/Chart.lock index 7ab15781cc3..785e1977bde 100644 --- a/stable/stash/1.9.14/Chart.lock +++ b/stable/stash/1.9.14/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:47:39.190953433Z" +generated: "2021-09-06T12:07:27.325683376Z" diff --git a/stable/syncthing/6.11.13/Chart.lock b/stable/syncthing/6.11.13/Chart.lock index 62fd9cfb0fb..41c281c1b3a 100644 --- a/stable/syncthing/6.11.13/Chart.lock +++ b/stable/syncthing/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:47:43.760533036Z" +generated: "2021-09-06T12:07:31.675076736Z" diff --git a/stable/tautulli/6.11.13/Chart.lock b/stable/tautulli/6.11.13/Chart.lock index 7fc99383328..7d07648cf53 100644 --- a/stable/tautulli/6.11.13/Chart.lock +++ b/stable/tautulli/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:47:48.432703466Z" +generated: "2021-09-06T12:07:36.014323843Z" diff --git a/stable/thelounge/1.11.13/Chart.lock b/stable/thelounge/1.11.13/Chart.lock index 020d028dfda..7261b522acc 100644 --- a/stable/thelounge/1.11.13/Chart.lock +++ b/stable/thelounge/1.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:47:52.996727505Z" +generated: "2021-09-06T12:07:40.440879824Z" diff --git a/stable/traefik/7.0.8/Chart.lock b/stable/traefik/7.0.8/Chart.lock index ad53de961a9..1a6e869bb3b 100644 --- a/stable/traefik/7.0.8/Chart.lock +++ b/stable/traefik/7.0.8/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:47:57.774741218Z" +generated: "2021-09-06T12:07:44.921435667Z" diff --git a/stable/transmission/6.11.14/Chart.lock b/stable/transmission/6.11.14/Chart.lock index 845c6da208c..5a5736cf82c 100644 --- a/stable/transmission/6.11.14/Chart.lock +++ b/stable/transmission/6.11.14/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:48:02.246262076Z" +generated: "2021-09-06T12:07:49.478725372Z" diff --git a/stable/truecommand/6.11.14/Chart.lock b/stable/truecommand/6.11.14/Chart.lock index 8978acf0a9a..69b1ba47d68 100644 --- a/stable/truecommand/6.11.14/Chart.lock +++ b/stable/truecommand/6.11.14/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:48:06.701390947Z" +generated: "2021-09-06T12:07:53.855771066Z" diff --git a/stable/tvheadend/7.11.13/Chart.lock b/stable/tvheadend/7.11.13/Chart.lock index 96c1ce49910..3b636ff5142 100644 --- a/stable/tvheadend/7.11.13/Chart.lock +++ b/stable/tvheadend/7.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:48:11.083474337Z" +generated: "2021-09-06T12:07:58.173190535Z" diff --git a/stable/unifi/6.11.13/Chart.lock b/stable/unifi/6.11.13/Chart.lock index b74b7b21b3a..fb203b1e856 100644 --- a/stable/unifi/6.11.13/Chart.lock +++ b/stable/unifi/6.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:48:15.424184659Z" +generated: "2021-09-06T12:08:02.598191617Z" diff --git a/stable/unpackerr/1.11.13/Chart.lock b/stable/unpackerr/1.11.13/Chart.lock index 3ab796d3756..7c6fc4af189 100644 --- a/stable/unpackerr/1.11.13/Chart.lock +++ b/stable/unpackerr/1.11.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:48:19.79475139Z" +generated: "2021-09-06T12:08:07.085729763Z" diff --git a/stable/vaultwarden/6.1.10/Chart.lock b/stable/vaultwarden/6.1.10/Chart.lock index 717a82d3078..fc1d9f3d3bc 100644 --- a/stable/vaultwarden/6.1.10/Chart.lock +++ b/stable/vaultwarden/6.1.10/Chart.lock @@ -6,4 +6,4 @@ dependencies: repository: https://truecharts.org/ version: 1.6.1 digest: sha256:7d052f87287c75c33137e6e8a856ef71bb138717949069ee2102c0c11cad8a85 -generated: "2021-09-06T11:48:25.168413425Z" +generated: "2021-09-06T12:08:12.474581657Z" diff --git a/stable/xteve/1.9.13/Chart.lock b/stable/xteve/1.9.13/Chart.lock index 072d937597d..1ac62fe40b9 100644 --- a/stable/xteve/1.9.13/Chart.lock +++ b/stable/xteve/1.9.13/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org version: 6.13.7 digest: sha256:85cf82d19e7aaf78d62b80a6b9be4fe7b3d8eb5e50c1808c44b385ab2889f43d -generated: "2021-09-06T11:48:30.865580533Z" +generated: "2021-09-06T12:08:17.902630256Z" diff --git a/stable/zwavejs2mqtt/6.11.14/Chart.lock b/stable/zwavejs2mqtt/6.11.14/Chart.lock index eb8f43d44d8..425df7a0f5f 100644 --- a/stable/zwavejs2mqtt/6.11.14/Chart.lock +++ b/stable/zwavejs2mqtt/6.11.14/Chart.lock @@ -3,4 +3,4 @@ dependencies: repository: https://truecharts.org/ version: 6.13.7 digest: sha256:92d1d2f7152c1bb539698578569ed8a3b96363319ffeb6b890ca86b83d1fdb2d -generated: "2021-09-06T11:48:35.428608656Z" +generated: "2021-09-06T12:08:22.278524058Z"