Commit released Helm Chart and docs for TrueCharts
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
@@ -1,6 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="sogo-3.0.1"></a>
|
||||
### [sogo-3.0.1](https://github.com/truecharts/apps/compare/sogo-2.0.3...sogo-3.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* Use bitnami instead of stock postgresql container ([#960](https://github.com/truecharts/apps/issues/960))
|
||||
* update non-major
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
|
||||
|
||||
<a name="sogo-2.0.3"></a>
|
||||
### [sogo-2.0.3](https://github.com/truecharts/apps/compare/sogo-2.0.2...sogo-2.0.3) (2021-09-10)
|
||||
|
||||
|
||||
@@ -13,15 +13,15 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
|-----|------|---------|-------------|
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"ghcr.io/truecharts/sogo"` | |
|
||||
| image.tag | string | `"v5.2.0"` | |
|
||||
| image.tag | string | `"v5.2.0@sha256:8fc7bb87b77d76d929bcd36403d4f27878fa3e99f5448fb05ed64829078665a4"` | |
|
||||
| initContainers | object | `{"init-postgresdb":{"command":["sh","-c","until pg_isready -U sogo -h ${pghost} ; do sleep 2 ; done"],"env":[{"name":"pghost","valueFrom":{"secretKeyRef":{"key":"plainhost","name":"dbcreds"}}}],"image":"{{ .Values.postgresqlImage.repository }}:{{ .Values.postgresqlImage.tag }}","imagePullPolicy":"IfNotPresent"}}` | initcontainers |
|
||||
| initContainers.init-postgresdb | object | `{"command":["sh","-c","until pg_isready -U sogo -h ${pghost} ; do sleep 2 ; done"],"env":[{"name":"pghost","valueFrom":{"secretKeyRef":{"key":"plainhost","name":"dbcreds"}}}],"image":"{{ .Values.postgresqlImage.repository }}:{{ .Values.postgresqlImage.tag }}","imagePullPolicy":"IfNotPresent"}` | wait for database before starting sogo |
|
||||
| memcached | object | `{"enabled":true}` | memcached dependency settings |
|
||||
| persistence | object | `{"data":{"accessMode":"ReadWriteOnce","enabled":true,"mountPath":"/data/conf/sogo/","size":"100Gi","type":"pvc"},"drafts":{"accessMode":"ReadWriteOnce","enabled":true,"mountPath":"/var/spool/sogo","size":"100Gi","type":"pvc"},"mimetmp":{"enabled":true,"mountPath":"/mimetmp","type":"emptyDir"}}` | persistence settings |
|
||||
| postgresql | object | `{"enabled":true,"existingSecret":"dbcreds","postgresqlDatabase":"sogo","postgresqlUsername":"sogo"}` | postgres dependency settings |
|
||||
| postgresqlImage.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| postgresqlImage.repository | string | `"postgres"` | |
|
||||
| postgresqlImage.tag | string | `"13.4-alpine"` | |
|
||||
| postgresqlImage.repository | string | `"bitnami/postgresql"` | |
|
||||
| postgresqlImage.tag | string | `"13.4.0@sha256:8dd9c609de6a960d65285f56106e00bd06ee0ce74fad4876ca7f8d847d10b2e2"` | |
|
||||
| service | object | `{"main":{"ports":{"main":{"port":80}}}}` | services |
|
||||
| sogo | object | `{"auth":{"SOGoPasswordChangeEnabled":true},"custom":[],"debug":{"ImapDebugEnabled":false,"LDAPDebugEnabled":false,"MySQL4DebugEnabled":false,"PGDebugEnabled":false,"SOGoDebugRequests":false,"SOGoUIxDebugEnabled":false,"SoDebugBaseURL":false,"WODontZipResponse":false,"WOLogFile":"/var/log/sogo/sogo.log"},"general":{"SOGoLanguage":"English","SOGoSuperUsernames":"","SxVMemLimit":"384"},"mail":{"NGMimeBuildMimeTempDirectory":"/mimetmp","SOGoDraftsFolderName":"Drafts","SOGoForceExternalLoginWithEmail":false,"SOGoIMAPServer":"localhost","SOGoMailDomain":"example.com","SOGoMailSpoolPath":"/var/spool/sogo","SOGoMailingMechanism":"smtp","SOGoSMTPServer":"smtp://domain:port","SOGoSentFolderName":"Sent","SOGoSieveServer":"","SOGoTrashFolderName":"Trash"},"notifications":{"SOGoACLsSendEMailNotifications":false,"SOGoAppointmentSendEMailNotifications":false,"SOGoFoldersSendEMailNotifications":false},"usersources":[],"webui":{"SOGoForwardEnabled":true,"SOGoMailAuxiliaryUserAccountsEnabled":true,"SOGoPageTitle":"SOGo","SOGoSieveScriptsEnabled":true,"SOGoTrustProxyAuthentication":false,"SOGoVacationEnabled":true,"SOGoXSRFValidationEnabled":true}}` | Sogo settings |
|
||||
| sogo.auth | object | `{"SOGoPasswordChangeEnabled":true}` | Pre-configured Sogo authentication settings |
|
||||
|
||||
@@ -18,8 +18,8 @@ Kubernetes: `>=1.16.0-0`
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://charts.bitnami.com/bitnami | memcached | 5.14.2 |
|
||||
| https://truecharts.org/ | common | 7.0.1 |
|
||||
| https://truecharts.org/ | postgresql | 1.6.6 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
| https://truecharts.org/ | postgresql | 2.2.0 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,20 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="airsonic-2.0.1"></a>
|
||||
### [airsonic-2.0.1](https://github.com/truecharts/apps/compare/airsonic-1.11.15...airsonic-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move all LSIO containers to github registry ([#957](https://github.com/truecharts/apps/issues/957))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
<a name="airsonic-1.11.15"></a>
|
||||
## [airsonic-1.11.15](https://github.com/truecharts/apps/compare/airsonic-1.11.14...airsonic-1.11.15) (2021-09-08)
|
||||
|
||||
@@ -18,8 +18,8 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.PUID | string | `"1001"` | Specify the user ID the application will run as |
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"linuxserver/airsonic"` | image repository |
|
||||
| image.tag | string | `"version-v10.6.2"` | image tag |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/airsonic"` | image repository |
|
||||
| image.tag | string | `"version-v10.6.2@sha256:531bdcbb5362bbd72d13ea91f11d386542f04a6cced1d8614e2091685c262057"` | image tag |
|
||||
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. Normally this does not need to be modified. |
|
||||
|
||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="appdaemon-4.0.1"></a>
|
||||
### [appdaemon-4.0.1](https://github.com/truecharts/apps/compare/appdaemon-3.11.15...appdaemon-4.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major
|
||||
* update non-major
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="appdaemon-3.11.15"></a>
|
||||
## [appdaemon-3.11.15](https://github.com/truecharts/apps/compare/appdaemon-3.11.14...appdaemon-3.11.15) (2021-09-08)
|
||||
|
||||
@@ -23,18 +23,22 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| hostPathMounts[0].size | string | `"100Gi"` | |
|
||||
| hostPathMounts[0].type | string | `"pvc"` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"ghcr.io/k8s-at-home/appdaemon"` | |
|
||||
| image.tag | string | `"v4.0.8"` | |
|
||||
| podSecurityContext.fsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsNonRoot | bool | `true` | |
|
||||
| podSecurityContext.runAsUser | int | `568` | |
|
||||
| image.repository | string | `"docker.io/acockburn/appdaemon"` | |
|
||||
| image.tag | string | `"v4.1.0@sha256:209ee1c83b4c0794dd6f50333f60a212d0df7c4205e7e374ac78d988ffc3d8fd"` | |
|
||||
| podSecurityContext.fsGroup | int | `0` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
||||
| podSecurityContext.runAsUser | int | `0` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `false` | |
|
||||
| service.main.ports.main.port | int | `5050` | |
|
||||
| service.tcp.enabled | bool | `true` | |
|
||||
| service.tcp.ports.tcp.enabled | bool | `true` | |
|
||||
| service.tcp.ports.tcp.port | int | `51050` | |
|
||||
| service.tcp.ports.tcp.protocol | string | `"TCP"` | |
|
||||
| service.tcp.type | string | `"ClusterIP"` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -17,7 +17,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,6 +1,28 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="authelia-3.0.1"></a>
|
||||
### [authelia-3.0.1](https://github.com/truecharts/apps/compare/authelia-2.0.2...authelia-3.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* Use bitnami instead of stock postgresql container ([#960](https://github.com/truecharts/apps/issues/960))
|
||||
* update non-major
|
||||
* update non-major
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
|
||||
|
||||
<a name="authelia-2.0.2"></a>
|
||||
### [authelia-2.0.2](https://github.com/truecharts/apps/compare/authelia-2.0.1...authelia-2.0.2) (2021-09-10)
|
||||
|
||||
|
||||
@@ -63,14 +63,14 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| identity_providers.oidc.refresh_token_lifespan | string | `"90m"` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"ghcr.io/authelia/authelia"` | |
|
||||
| image.tag | string | `"4.30.4"` | |
|
||||
| image.tag | string | `"4.30.4@sha256:956a7577adeb3d430bb1fc00b08baa8aecddec3949dd767363a43fcc6465d34a"` | |
|
||||
| initContainers.init-postgresdb.command[0] | string | `"sh"` | |
|
||||
| initContainers.init-postgresdb.command[1] | string | `"-c"` | |
|
||||
| initContainers.init-postgresdb.command[2] | string | `"until pg_isready -U authelia -h ${pghost} ; do sleep 2 ; done"` | |
|
||||
| initContainers.init-postgresdb.env[0].name | string | `"pghost"` | |
|
||||
| initContainers.init-postgresdb.env[0].valueFrom.secretKeyRef.key | string | `"plainhost"` | |
|
||||
| initContainers.init-postgresdb.env[0].valueFrom.secretKeyRef.name | string | `"dbcreds"` | |
|
||||
| initContainers.init-postgresdb.image | string | `"postgres:13.1"` | |
|
||||
| initContainers.init-postgresdb.image | string | `"{{ .Values.postgresqlImage.repository}}:{{ .Values.postgresqlImage.tag }}"` | |
|
||||
| initContainers.init-postgresdb.imagePullPolicy | string | `"IfNotPresent"` | |
|
||||
| log.format | string | `"text"` | |
|
||||
| log.level | string | `"trace"` | |
|
||||
@@ -105,12 +105,17 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| persistence.redismaster.size | string | `"100Gi"` | |
|
||||
| persistence.redismaster.type | string | `"pvc"` | |
|
||||
| podSecurityContext.fsGroup | int | `568` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsUser | int | `568` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| postgresql.enabled | bool | `true` | |
|
||||
| postgresql.existingSecret | string | `"dbcreds"` | |
|
||||
| postgresql.postgresqlDatabase | string | `"authelia"` | |
|
||||
| postgresql.postgresqlUsername | string | `"authelia"` | |
|
||||
| postgresqlImage.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| postgresqlImage.repository | string | `"bitnami/postgresql"` | |
|
||||
| postgresqlImage.tag | string | `"13.4.0@sha256:8dd9c609de6a960d65285f56106e00bd06ee0ce74fad4876ca7f8d847d10b2e2"` | |
|
||||
| probes.liveness.path | string | `"/api/health\""` | |
|
||||
| probes.liveness.type | string | `"HTTP"` | |
|
||||
| probes.readiness.path | string | `"/api/health"` | |
|
||||
@@ -149,6 +154,7 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| securityContext.allowPrivilegeEscalation | bool | `false` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `true` | |
|
||||
| securityContext.runAsNonRoot | bool | `true` | |
|
||||
| server.path | string | `""` | |
|
||||
| server.port | int | `9091` | |
|
||||
| server.read_buffer_size | int | `4096` | |
|
||||
@@ -164,7 +170,6 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| storage.postgres.sslmode | string | `"disable"` | |
|
||||
| storage.postgres.timeout | string | `"5s"` | |
|
||||
| storage.postgres.username | string | `"authelia"` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
| theme | string | `"light"` | |
|
||||
| totp.issuer | string | `""` | |
|
||||
| totp.period | int | `30` | |
|
||||
|
||||
@@ -18,9 +18,9 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://charts.bitnami.com/bitnami | redis | 15.3.1 |
|
||||
| https://truecharts.org/ | common | 7.0.1 |
|
||||
| https://truecharts.org/ | postgresql | 2.0.0 |
|
||||
| https://charts.bitnami.com/bitnami | redis | 15.3.2 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
| https://truecharts.org/ | postgresql | 2.2.0 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="bazarr-7.0.1"></a>
|
||||
### [bazarr-7.0.1](https://github.com/truecharts/apps/compare/bazarr-6.11.16...bazarr-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="bazarr-6.11.16"></a>
|
||||
## [bazarr-6.11.16](https://github.com/truecharts/apps/compare/bazarr-6.11.15...bazarr-6.11.16) (2021-09-08)
|
||||
|
||||
@@ -14,13 +14,21 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env | object | `{}` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"ghcr.io/k8s-at-home/bazarr"` | |
|
||||
| image.tag | string | `"v0.9.8"` | |
|
||||
| image.tag | string | `"v0.9.9@sha256:889f97670f5af6b39896a89c76652e346693b446bc9097988ff8eb32141fc38f"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
||||
| persistence.config.size | string | `"100Gi"` | |
|
||||
| persistence.config.type | string | `"pvc"` | |
|
||||
| podSecurityContext.fsGroup | int | `568` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsUser | int | `568` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `true` | |
|
||||
| service.main.ports.main.port | int | `6767` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,19 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="booksonic-air-2.0.1"></a>
|
||||
### [booksonic-air-2.0.1](https://github.com/truecharts/apps/compare/booksonic-air-1.9.15...booksonic-air-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
<a name="booksonic-air-1.9.15"></a>
|
||||
## [booksonic-air-1.9.15](https://github.com/truecharts/apps/compare/booksonic-air-1.9.14...booksonic-air-1.9.15) (2021-09-08)
|
||||
|
||||
@@ -16,7 +16,7 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/booksonic-air"` | image repository |
|
||||
| image.tag | string | `"version-v2009.1.0"` | image tag |
|
||||
| image.tag | string | `"version-v2009.1.0@sha256:0b02c0a3d3c3d24aa7c8da2171406c8c0a59935e314111db0640773722ba6377"` | image tag |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="calibre-web-7.0.1"></a>
|
||||
### [calibre-web-7.0.1](https://github.com/truecharts/apps/compare/calibre-web-6.11.15...calibre-web-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move all LSIO containers to github registry ([#957](https://github.com/truecharts/apps/issues/957))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="calibre-web-6.11.15"></a>
|
||||
## [calibre-web-6.11.15](https://github.com/truecharts/apps/compare/calibre-web-6.11.14...calibre-web-6.11.15) (2021-09-08)
|
||||
|
||||
@@ -13,14 +13,13 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
|-----|------|---------|-------------|
|
||||
| env | object | `{}` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"linuxserver/calibre-web"` | |
|
||||
| image.tag | string | `"version-0.6.12"` | |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/calibre-web"` | |
|
||||
| image.tag | string | `"version-0.6.12@sha256:d2e3980e7d0257c28d1e06a10d7f9cb0b3de6865a8d987e10af590fa6c4ebb77"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
||||
| persistence.config.size | string | `"100Gi"` | |
|
||||
| persistence.config.type | string | `"pvc"` | |
|
||||
| service.main.ports.main.port | int | `8083` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,20 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="calibre-2.0.1"></a>
|
||||
### [calibre-2.0.1](https://github.com/truecharts/apps/compare/calibre-1.9.15...calibre-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move all LSIO containers to github registry ([#957](https://github.com/truecharts/apps/issues/957))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
<a name="calibre-1.9.15"></a>
|
||||
## [calibre-1.9.15](https://github.com/truecharts/apps/compare/calibre-1.9.14...calibre-1.9.15) (2021-09-08)
|
||||
|
||||
@@ -20,8 +20,8 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| env.UMASK_SET | string | `"022"` | for umask setting of Calibre, default if left unset is 022. |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"linuxserver/calibre"` | image repository |
|
||||
| image.tag | string | `"version-v5.26.0"` | image tag |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/calibre"` | image repository |
|
||||
| image.tag | string | `"version-v5.26.0@sha256:b5ab76091fedea53422e0f4ab57c9a672f23599e0c6c003d11df1f6161a7006e"` | image tag |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="collabora-online-7.0.1"></a>
|
||||
### [collabora-online-7.0.1](https://github.com/truecharts/apps/compare/collabora-online-6.11.15...collabora-online-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move most remaining Apps to GHCR mirror ([#959](https://github.com/truecharts/apps/issues/959))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="collabora-online-6.11.15"></a>
|
||||
## [collabora-online-6.11.15](https://github.com/truecharts/apps/compare/collabora-online-6.11.14...collabora-online-6.11.15) (2021-09-08)
|
||||
|
||||
@@ -18,10 +18,9 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.server_name | string | `"collabora\\.domain\\.tld"` | |
|
||||
| env.username | string | `"admin"` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"collabora/code"` | |
|
||||
| image.tag | string | `"6.4.10.10"` | |
|
||||
| image.repository | string | `"ghcr.io/truecharts/collabora"` | |
|
||||
| image.tag | string | `"v6.4.10.10@sha256:9b44b62b0d7894b4bdd6db6c4a5be66b4a2b14920f2d6401252e57641975d911"` | |
|
||||
| service.main.ports.main.port | int | `9980` | |
|
||||
| service.main.type | string | `"NodePort"` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,6 +1,20 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="custom-app-1.0.1"></a>
|
||||
### [custom-app-1.0.1](https://github.com/truecharts/apps/compare/custom-app-0.2.22...custom-app-1.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
|
||||
|
||||
|
||||
<a name="custom-app-0.2.22"></a>
|
||||
### [custom-app-0.2.22](https://github.com/truecharts/apps/compare/custom-app-0.2.21...custom-app-0.2.22) (2021-09-12)
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env | object | `{}` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"ghcr.io/k8s-at-home/jackett"` | |
|
||||
| image.tag | string | `"v0.18.729@sha256:7b814d426af9f3329edeb17cedab01217f7eee638f12e32f91c56d27aba48b6c"` | |
|
||||
| image.tag | string | `"v0.18.746@sha256:4caa9f57a10c07cca49935b6e039aa4c15eb20f28add18983bb62b028e245edd"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
||||
|
||||
@@ -17,7 +17,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,20 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="deconz-2.0.1"></a>
|
||||
### [deconz-2.0.1](https://github.com/truecharts/apps/compare/deconz-1.9.15...deconz-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move most remaining Apps to GHCR mirror ([#959](https://github.com/truecharts/apps/issues/959))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
<a name="deconz-1.9.15"></a>
|
||||
## [deconz-1.9.15](https://github.com/truecharts/apps/compare/deconz-1.9.14...deconz-1.9.15) (2021-09-08)
|
||||
|
||||
@@ -21,8 +21,8 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.DECONZ_WS_PORT | int | `443` | Websocket listen port |
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"marthoc/deconz"` | image repository |
|
||||
| image.tag | string | `"2.12.06"` | image tag |
|
||||
| image.repository | string | `"ghcr.io/truecharts/deconz"` | image repository |
|
||||
| image.tag | string | `"v2.12.06@sha256:738ebf8eb35c8025c070a4feeb7d7a48b15739dfe71cf338e80a03f932c1cf52"` | image tag |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| securityContext.privileged | bool | `nil` | Privileged securityContext may be required if USB controller is accessed directly through the host machine |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,23 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="deepstack-cpu-5.0.1"></a>
|
||||
### [deepstack-cpu-5.0.1](https://github.com/truecharts/apps/compare/deepstack-cpu-4.11.15...deepstack-cpu-5.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="deepstack-cpu-4.11.15"></a>
|
||||
## [deepstack-cpu-4.11.15](https://github.com/truecharts/apps/compare/deepstack-cpu-4.11.14...deepstack-cpu-4.11.15) (2021-09-08)
|
||||
|
||||
@@ -22,7 +22,7 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| envTpl.USER_ID | string | `"{{ .Values.env.PUID }}"` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"deepquestai/deepstack"` | |
|
||||
| image.tag | string | `"cpu-2021.02.1"` | |
|
||||
| image.tag | string | `"cpu-2021.02.1@sha256:db1876e7a5c73111e0cd18e26b2401c20997afdea3f8f9f9116ef951b49ba5be"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/datastore"` | |
|
||||
@@ -30,6 +30,5 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| persistence.config.type | string | `"pvc"` | |
|
||||
| service.main.enabled | bool | `true` | |
|
||||
| service.main.ports.main.port | int | `5000` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="deluge-7.0.1"></a>
|
||||
### [deluge-7.0.1](https://github.com/truecharts/apps/compare/deluge-6.11.15...deluge-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move all LSIO containers to github registry ([#957](https://github.com/truecharts/apps/issues/957))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="deluge-6.11.15"></a>
|
||||
## [deluge-6.11.15](https://github.com/truecharts/apps/compare/deluge-6.11.14...deluge-6.11.15) (2021-09-08)
|
||||
|
||||
@@ -12,8 +12,8 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| Key | Type | Default | Description |
|
||||
|-----|------|---------|-------------|
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"linuxserver/deluge"` | |
|
||||
| image.tag | string | `"version-2.0.3-2201906121747ubuntu18.04.1"` | |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/deluge"` | |
|
||||
| image.tag | string | `"version-2.0.3-2201906121747ubuntu18.04.1@sha256:a32d8680e315932b799c8267e2c0d630185aaf8b542d56a134c74c9a5c957c36"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
||||
@@ -28,6 +28,5 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| service.torrent.ports.udp.port | int | `51413` | |
|
||||
| service.torrent.ports.udp.protocol | string | `"UDP"` | |
|
||||
| service.torrent.type | string | `"ClusterIP"` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -17,7 +17,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,20 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="dizquetv-2.0.1"></a>
|
||||
### [dizquetv-2.0.1](https://github.com/truecharts/apps/compare/dizquetv-1.9.15...dizquetv-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move most remaining Apps to GHCR mirror ([#959](https://github.com/truecharts/apps/issues/959))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
<a name="dizquetv-1.9.15"></a>
|
||||
## [dizquetv-1.9.15](https://github.com/truecharts/apps/compare/dizquetv-1.9.14...dizquetv-1.9.15) (2021-09-08)
|
||||
|
||||
@@ -16,8 +16,8 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.PUID | int | `1001` | Specify the user ID the application will run as |
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"vexorian/dizquetv"` | image repository |
|
||||
| image.tag | string | `"1.4.3"` | image tag |
|
||||
| image.repository | string | `"ghcr.io/truecharts/dizquetv"` | image repository |
|
||||
| image.tag | string | `"v1.4.3@sha256:25c9ed2581550fe15fffeae8a791dabf4119969dbb39b62c45bc8e18c31a52e0"` | image tag |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,19 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="duplicati-2.0.1"></a>
|
||||
### [duplicati-2.0.1](https://github.com/truecharts/apps/compare/duplicati-1.9.15...duplicati-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
<a name="duplicati-1.9.15"></a>
|
||||
## [duplicati-1.9.15](https://github.com/truecharts/apps/compare/duplicati-1.9.14...duplicati-1.9.15) (2021-09-08)
|
||||
|
||||
@@ -16,7 +16,7 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/duplicati"` | image repository |
|
||||
| image.tag | string | `"latest"` | image tag |
|
||||
| image.tag | string | `"latest@sha256:9ab28cc15af085072ed3f0872355c72bf7daa1bd8a8205322571e0e351b2d522"` | image tag |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,23 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="emby-7.0.1"></a>
|
||||
### [emby-7.0.1](https://github.com/truecharts/apps/compare/emby-6.11.15...emby-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="emby-6.11.15"></a>
|
||||
## [emby-6.11.15](https://github.com/truecharts/apps/compare/emby-6.11.14...emby-6.11.15) (2021-09-08)
|
||||
|
||||
@@ -13,19 +13,22 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
|-----|------|---------|-------------|
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"ghcr.io/k8s-at-home/emby"` | |
|
||||
| image.tag | string | `"v4.6.4.0"` | |
|
||||
| image.tag | string | `"v4.6.4.0@sha256:3921a37cfd43abbc5be6fd6a2141488573c64f70d628b4a4731415713cbb12cd"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
||||
| persistence.config.size | string | `"100Gi"` | |
|
||||
| persistence.config.type | string | `"pvc"` | |
|
||||
| podSecurityContext.fsGroup | int | `568` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsNonRoot | bool | `true` | |
|
||||
| podSecurityContext.runAsUser | int | `568` | |
|
||||
| podSecurityContext.supplementalGroups[0] | int | `44` | |
|
||||
| podSecurityContext.supplementalGroups[1] | int | `107` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `true` | |
|
||||
| service.main.ports.main.port | int | `8096` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="esphome-7.0.1"></a>
|
||||
### [esphome-7.0.1](https://github.com/truecharts/apps/compare/esphome-6.11.15...esphome-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move more dockerhub containers to GHCR mirror ([#958](https://github.com/truecharts/apps/issues/958))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="esphome-6.11.15"></a>
|
||||
## [esphome-6.11.15](https://github.com/truecharts/apps/compare/esphome-6.11.14...esphome-6.11.15) (2021-09-08)
|
||||
|
||||
@@ -13,14 +13,22 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
|-----|------|---------|-------------|
|
||||
| env | object | `{}` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"esphome/esphome"` | |
|
||||
| image.tag | string | `"2021.8.2"` | |
|
||||
| image.repository | string | `"ghcr.io/truecharts/esphome"` | |
|
||||
| image.tag | string | `"v2021.8.2@sha256:09e69633ab9fd4441cd3dbc086418981891ebeea775cfacfd26b0bc201403c13"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
||||
| persistence.config.size | string | `"100Gi"` | |
|
||||
| persistence.config.type | string | `"pvc"` | |
|
||||
| podSecurityContext.fsGroup | int | `568` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsUser | int | `568` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `true` | |
|
||||
| service.main.ports.main.port | int | `6052` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,15 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="external-service-2.0.1"></a>
|
||||
### [external-service-2.0.1](https://github.com/truecharts/apps/compare/external-service-1.4.15...external-service-2.0.1) (2021-09-13)
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
<a name="external-service-1.4.15"></a>
|
||||
## [external-service-1.4.15](https://github.com/truecharts/apps/compare/external-service-1.4.14...external-service-1.4.15) (2021-09-08)
|
||||
|
||||
@@ -14,7 +14,7 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| controller.enabled | bool | `false` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"ghcr.io/truecharts/bs"` | |
|
||||
| image.tag | string | `"v0.66.6"` | |
|
||||
| image.tag | string | `"v0.66.6@sha256:666"` | |
|
||||
| service.main.enabled | bool | `true` | |
|
||||
| service.main.externalIP | string | `"1.1.1.1"` | |
|
||||
| service.main.ports.main.Type | string | `"HTTPS"` | |
|
||||
|
||||
@@ -17,7 +17,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,6 +1,28 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="fireflyiii-8.0.1"></a>
|
||||
### [fireflyiii-8.0.1](https://github.com/truecharts/apps/compare/fireflyiii-7.0.2...fireflyiii-8.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* Use bitnami instead of stock postgresql container ([#960](https://github.com/truecharts/apps/issues/960))
|
||||
* update non-major
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
|
||||
|
||||
<a name="fireflyiii-7.0.2"></a>
|
||||
### [fireflyiii-7.0.2](https://github.com/truecharts/apps/compare/fireflyiii-7.0.1...fireflyiii-7.0.2) (2021-09-10)
|
||||
|
||||
|
||||
@@ -22,14 +22,14 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| envValueFrom.DB_PASSWORD.secretKeyRef.name | string | `"dbcreds"` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"fireflyiii/core"` | |
|
||||
| image.tag | string | `"version-5.5.12"` | |
|
||||
| image.tag | string | `"version-5.5.12@sha256:9a1f87a8ad38694675390756be9686fe9d8ba941fe1f145641626135c7eb5e4b"` | |
|
||||
| initContainers.init-postgresdb.command[0] | string | `"sh"` | |
|
||||
| initContainers.init-postgresdb.command[1] | string | `"-c"` | |
|
||||
| initContainers.init-postgresdb.command[2] | string | `"until pg_isready -U authelia -h ${pghost} ; do sleep 2 ; done"` | |
|
||||
| initContainers.init-postgresdb.env[0].name | string | `"pghost"` | |
|
||||
| initContainers.init-postgresdb.env[0].valueFrom.secretKeyRef.key | string | `"plainhost"` | |
|
||||
| initContainers.init-postgresdb.env[0].valueFrom.secretKeyRef.name | string | `"dbcreds"` | |
|
||||
| initContainers.init-postgresdb.image | string | `"postgres:13.1"` | |
|
||||
| initContainers.init-postgresdb.image | string | `"{{ .Values.postgresqlImage.repository}}:{{ .Values.postgresqlImage.tag }}"` | |
|
||||
| initContainers.init-postgresdb.imagePullPolicy | string | `"IfNotPresent"` | |
|
||||
| persistence.data.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.data.enabled | bool | `true` | |
|
||||
@@ -37,17 +37,24 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| persistence.data.size | string | `"100Gi"` | |
|
||||
| persistence.data.type | string | `"pvc"` | |
|
||||
| podSecurityContext.fsGroup | int | `0` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
||||
| podSecurityContext.runAsNonRoot | bool | `false` | |
|
||||
| podSecurityContext.runAsUser | int | `0` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| postgresql.enabled | bool | `true` | |
|
||||
| postgresql.existingSecret | string | `"dbcreds"` | |
|
||||
| postgresql.postgresqlDatabase | string | `"firefly"` | |
|
||||
| postgresql.postgresqlUsername | string | `"firefly"` | |
|
||||
| postgresqlImage.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| postgresqlImage.repository | string | `"bitnami/postgresql"` | |
|
||||
| postgresqlImage.tag | string | `"13.4.0@sha256:8dd9c609de6a960d65285f56106e00bd06ee0ce74fad4876ca7f8d847d10b2e2"` | |
|
||||
| probes.liveness.path | string | `"/login"` | |
|
||||
| probes.readiness.path | string | `"/login"` | |
|
||||
| probes.startup.path | string | `"/login"` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `false` | |
|
||||
| service.main.ports.main.port | int | `8080` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -17,8 +17,8 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 7.0.1 |
|
||||
| https://truecharts.org/ | postgresql | 2.0.0 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
| https://truecharts.org/ | postgresql | 2.2.0 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,23 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="flaresolverr-2.0.1"></a>
|
||||
### [flaresolverr-2.0.1](https://github.com/truecharts/apps/compare/flaresolverr-1.9.15...flaresolverr-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="flaresolverr-1.9.15"></a>
|
||||
## [flaresolverr-1.9.15](https://github.com/truecharts/apps/compare/flaresolverr-1.9.14...flaresolverr-1.9.15) (2021-09-08)
|
||||
|
||||
@@ -15,7 +15,16 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"ghcr.io/flaresolverr/flaresolverr"` | image repository |
|
||||
| image.tag | string | `"v1.2.9"` | image tag |
|
||||
| image.tag | string | `"v1.2.9@sha256:6f93f3359a8b2cbd268286ce460ff5ffa79a6f1d8c19097ed49097fbfab6a786"` | image tag |
|
||||
| podSecurityContext.fsGroup | int | `568` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsUser | int | `568` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `true` | |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="flood-2.0.1"></a>
|
||||
### [flood-2.0.1](https://github.com/truecharts/apps/compare/flood-1.9.15...flood-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move more dockerhub containers to GHCR mirror ([#958](https://github.com/truecharts/apps/issues/958))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="flood-1.9.15"></a>
|
||||
## [flood-1.9.15](https://github.com/truecharts/apps/compare/flood-1.9.14...flood-1.9.15) (2021-09-08)
|
||||
|
||||
@@ -14,9 +14,18 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env | object | See below | environment variables. See more environment variables in the [flood documentation] (https://github.com/jesec/flood/blob/v4.6.0/config.ts) Note: The environmental variables are not case sensitive (e.g. FLOOD_OPTION_port=FLOOD_OPTION_PORT). |
|
||||
| env.FLOOD_OPTION_RUNDIR | string | `"/data"` | Where to store Flood's runtime files (eg. database) |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"jesec/flood"` | image repository |
|
||||
| image.tag | string | `"4.6.1"` | image tag |
|
||||
| image.repository | string | `"ghcr.io/truecharts/flood"` | image repository |
|
||||
| image.tag | string | `"v4.6.1@sha256:268dc4b4eff08c6c5563b779a1b41370c5c509ff190fe38886a65f65c4174f85"` | image tag |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| podSecurityContext.fsGroup | int | `568` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsUser | int | `568` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `true` | |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="focalboard-2.0.1"></a>
|
||||
### [focalboard-2.0.1](https://github.com/truecharts/apps/compare/focalboard-1.9.15...focalboard-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move more dockerhub containers to GHCR mirror ([#958](https://github.com/truecharts/apps/issues/958))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="focalboard-1.9.15"></a>
|
||||
## [focalboard-1.9.15](https://github.com/truecharts/apps/compare/focalboard-1.9.14...focalboard-1.9.15) (2021-09-08)
|
||||
|
||||
@@ -13,9 +13,18 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
|-----|------|---------|-------------|
|
||||
| env | object | See below | environment variables. See more environment variables in the [image entrypoint script](https://github.com/FlipEnergy/container-images/blob/main/focalboard/entrypoint.sh) |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"flipenergy/focalboard"` | image repository |
|
||||
| image.tag | string | `"0.8.0"` | image tag |
|
||||
| image.repository | string | `"ghcr.io/truecharts/focalboard"` | image repository |
|
||||
| image.tag | string | `"v0.8.0@sha256:c8a81de85722b1d8ce728222cd5b77ea9f8e4ca33c91787a8a3eb0a49f6fa432"` | image tag |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| podSecurityContext.fsGroup | int | `568` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsUser | int | `568` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `true` | |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,19 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="freeradius-2.0.1"></a>
|
||||
### [freeradius-2.0.1](https://github.com/truecharts/apps/compare/freeradius-1.7.18...freeradius-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
<a name="freeradius-1.7.18"></a>
|
||||
## [freeradius-1.7.18](https://github.com/truecharts/apps/compare/freeradius-1.7.17...freeradius-1.7.18) (2021-09-08)
|
||||
|
||||
@@ -14,7 +14,7 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env | object | `{}` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"ghcr.io/truecharts/freeradius"` | |
|
||||
| image.tag | string | `"v3.0.23"` | |
|
||||
| image.tag | string | `"v3.0.23@sha256:21454da0a4f4950dd9b97e82de5b56556fdf2bf38f60ae427852b74a2622c972"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/etc/raddb"` | |
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="freshrss-7.0.1"></a>
|
||||
### [freshrss-7.0.1](https://github.com/truecharts/apps/compare/freshrss-6.11.15...freshrss-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move all LSIO containers to github registry ([#957](https://github.com/truecharts/apps/issues/957))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="freshrss-6.11.15"></a>
|
||||
## [freshrss-6.11.15](https://github.com/truecharts/apps/compare/freshrss-6.11.14...freshrss-6.11.15) (2021-09-08)
|
||||
|
||||
@@ -13,14 +13,13 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
|-----|------|---------|-------------|
|
||||
| env | object | `{}` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"linuxserver/freshrss"` | |
|
||||
| image.tag | string | `"version-1.18.1"` | |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/freshrss"` | |
|
||||
| image.tag | string | `"version-1.18.1@sha256:2f41e81cafbfb1ac99a6cbca1140ced5cb3faf18287a6610623bf28dbad3d74c"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
||||
| persistence.config.size | string | `"100Gi"` | |
|
||||
| persistence.config.type | string | `"pvc"` | |
|
||||
| service.main.ports.main.port | int | `80` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="gaps-7.0.1"></a>
|
||||
### [gaps-7.0.1](https://github.com/truecharts/apps/compare/gaps-6.11.15...gaps-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move more dockerhub containers to GHCR mirror ([#958](https://github.com/truecharts/apps/issues/958))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="gaps-6.11.15"></a>
|
||||
## [gaps-6.11.15](https://github.com/truecharts/apps/compare/gaps-6.11.14...gaps-6.11.15) (2021-09-08)
|
||||
|
||||
@@ -13,14 +13,22 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
|-----|------|---------|-------------|
|
||||
| env | object | `{}` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"housewrecker/gaps"` | |
|
||||
| image.tag | string | `"v0.8.8"` | |
|
||||
| image.repository | string | `"ghcr.io/truecharts/gaps"` | |
|
||||
| image.tag | string | `"v0.8.8@sha256:2e4b3b4e677be68b947517b0077aec719db8c382dad2952421b746060bbd6513"` | |
|
||||
| persistence.data.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.data.enabled | bool | `true` | |
|
||||
| persistence.data.mountPath | string | `"/usr/data"` | |
|
||||
| persistence.data.size | string | `"100Gi"` | |
|
||||
| persistence.data.type | string | `"pvc"` | |
|
||||
| podSecurityContext.fsGroup | int | `568` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsUser | int | `568` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `true` | |
|
||||
| service.main.ports.main.port | int | `8484` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -17,7 +17,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="gonic-2.0.1"></a>
|
||||
### [gonic-2.0.1](https://github.com/truecharts/apps/compare/gonic-1.9.15...gonic-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move more dockerhub containers to GHCR mirror ([#958](https://github.com/truecharts/apps/issues/958))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="gonic-1.9.15"></a>
|
||||
## [gonic-1.9.15](https://github.com/truecharts/apps/compare/gonic-1.9.14...gonic-1.9.15) (2021-09-08)
|
||||
|
||||
@@ -14,9 +14,18 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env | object | See below | environment variables. See more environment variables in the [gonic documentation](https://github.com/sentriz/gonic#configuration-options) |
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"sentriz/gonic"` | image repository |
|
||||
| image.tag | string | `"v0.13.1"` | image tag |
|
||||
| image.repository | string | `"ghcr.io/truecharts/gonic"` | image repository |
|
||||
| image.tag | string | `"v0.13.1@sha256:14d01b4a1a90991097656975d0c8643a755323961bc5b5c657a5c96372024d5c"` | image tag |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| podSecurityContext.fsGroup | int | `0` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
||||
| podSecurityContext.runAsUser | int | `0` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `false` | |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="grocy-7.0.1"></a>
|
||||
### [grocy-7.0.1](https://github.com/truecharts/apps/compare/grocy-6.11.15...grocy-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move all LSIO containers to github registry ([#957](https://github.com/truecharts/apps/issues/957))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="grocy-6.11.15"></a>
|
||||
## [grocy-6.11.15](https://github.com/truecharts/apps/compare/grocy-6.11.14...grocy-6.11.15) (2021-09-08)
|
||||
|
||||
@@ -13,14 +13,13 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
|-----|------|---------|-------------|
|
||||
| env | object | `{}` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"linuxserver/grocy"` | |
|
||||
| image.tag | string | `"version-v3.1.1"` | |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/grocy"` | |
|
||||
| image.tag | string | `"version-v3.1.1@sha256:0c57f3b4b8020f51305394a5d4b9824bc41cab92fc3c2df76f7212d2588ad9bf"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
||||
| persistence.config.size | string | `"100Gi"` | |
|
||||
| persistence.config.type | string | `"pvc"` | |
|
||||
| service.main.ports.main.port | int | `80` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -17,7 +17,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="handbrake-7.0.1"></a>
|
||||
### [handbrake-7.0.1](https://github.com/truecharts/apps/compare/handbrake-6.11.15...handbrake-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move more dockerhub containers to GHCR mirror ([#958](https://github.com/truecharts/apps/issues/958))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="handbrake-6.11.15"></a>
|
||||
## [handbrake-6.11.15](https://github.com/truecharts/apps/compare/handbrake-6.11.14...handbrake-6.11.15) (2021-09-08)
|
||||
|
||||
@@ -26,8 +26,8 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| envTpl.GROUP_ID | string | `"{{ .Values.env.PGID }}"` | |
|
||||
| envTpl.USER_ID | string | `"{{ .Values.env.PUID }}"` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"jlesage/handbrake"` | |
|
||||
| image.tag | string | `"v1.24.1"` | |
|
||||
| image.repository | string | `"ghcr.io/truecharts/handbrake"` | |
|
||||
| image.tag | string | `"v1.24.1@sha256:465f3116359c0b40497f0f2249cb1326047208d2aa70c0822df73e3d6e49eee7"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
||||
@@ -39,6 +39,5 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| service.vnc.ports.vnc.port | int | `5900` | |
|
||||
| service.vnc.ports.vnc.protocol | string | `"TCP"` | |
|
||||
| service.vnc.type | string | `"ClusterIP"` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -19,7 +19,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,23 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="haste-server-2.0.1"></a>
|
||||
### [haste-server-2.0.1](https://github.com/truecharts/apps/compare/haste-server-1.11.15...haste-server-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="haste-server-1.11.15"></a>
|
||||
## [haste-server-1.11.15](https://github.com/truecharts/apps/compare/haste-server-1.11.14...haste-server-1.11.15) (2021-09-08)
|
||||
|
||||
@@ -16,13 +16,18 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.STORAGE_TYPE | string | `"file"` | sets backend |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"ghcr.io/k8s-at-home/haste-server"` | image repository |
|
||||
| image.tag | string | `"latest"` | image tag |
|
||||
| image.tag | string | `"latest@sha256:827aa2f2389d94a522e333080fa8cbc0e0a487c5681173caca785b3b6b9e5b01"` | image tag |
|
||||
| ingress.main | object | See values.yaml | Enable and configure ingress settings for the chart under this key. |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| podSecurityContext.fsGroup | int | `568` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `568` | |
|
||||
| podSecurityContext.runAsNonRoot | bool | `true` | |
|
||||
| podSecurityContext.runAsUser | int | `568` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `true` | |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. Normally this does not need to be modified. |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,21 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="healthchecks-2.0.1"></a>
|
||||
### [healthchecks-2.0.1](https://github.com/truecharts/apps/compare/healthchecks-1.9.15...healthchecks-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move all LSIO containers to github registry ([#957](https://github.com/truecharts/apps/issues/957))
|
||||
* update non-major
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
<a name="healthchecks-1.9.15"></a>
|
||||
## [healthchecks-1.9.15](https://github.com/truecharts/apps/compare/healthchecks-1.9.14...healthchecks-1.9.15) (2021-09-08)
|
||||
|
||||
@@ -19,8 +19,8 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.SUPERUSER_PASSWORD | string | `"myVeryStrongPassword"` | Superuser password |
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"linuxserver/healthchecks"` | image repository |
|
||||
| image.tag | string | `"version-v1.22.0"` | image tag |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/healthchecks"` | image repository |
|
||||
| image.tag | string | `"version-v1.22.0@sha256:f2e6865c909a1eeebf8bbe2736c0a3145ed5e9fa1bddde0809993a74963bc14a"` | image tag |
|
||||
| persistence | object | See values.yaml | Configure persistence settings for the chart under this key. |
|
||||
| persistence.config | object | `{"accessMode":"ReadWriteOnce","enabled":true,"mountpath":"/config","size":"100Gi","type":"pvc"}` | Volume used for configuration |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,24 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="heimdall-7.0.1"></a>
|
||||
### [heimdall-7.0.1](https://github.com/truecharts/apps/compare/heimdall-6.11.15...heimdall-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move all LSIO containers to github registry ([#957](https://github.com/truecharts/apps/issues/957))
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="heimdall-6.11.15"></a>
|
||||
## [heimdall-6.11.15](https://github.com/truecharts/apps/compare/heimdall-6.11.14...heimdall-6.11.15) (2021-09-08)
|
||||
|
||||
@@ -13,8 +13,8 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
|-----|------|---------|-------------|
|
||||
| env | object | `{}` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"linuxserver/heimdall"` | |
|
||||
| image.tag | string | `"version-2.2.2"` | |
|
||||
| image.repository | string | `"ghcr.io/linuxserver/heimdall"` | |
|
||||
| image.tag | string | `"version-2.2.2@sha256:f27eb3bb634df8370d5d96496e53c31174252d68e6bb792dddea2e80fb703213"` | |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/config"` | |
|
||||
@@ -22,6 +22,5 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| persistence.config.type | string | `"pvc"` | |
|
||||
| probes.startup.enabled | bool | `true` | |
|
||||
| service.main.ports.main.port | int | `80` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -13,7 +13,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,25 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="home-assistant-7.0.1"></a>
|
||||
### [home-assistant-7.0.1](https://github.com/truecharts/apps/compare/home-assistant-6.11.16...home-assistant-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* move more dockerhub containers to GHCR mirror ([#958](https://github.com/truecharts/apps/issues/958))
|
||||
* update non-major
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="home-assistant-6.11.16"></a>
|
||||
## [home-assistant-6.11.16](https://github.com/truecharts/apps/compare/home-assistant-6.11.15...home-assistant-6.11.16) (2021-09-08)
|
||||
|
||||
@@ -15,8 +15,8 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| git.deployKey | string | `""` | |
|
||||
| git.deployKeyBase64 | string | `""` | |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | |
|
||||
| image.repository | string | `"homeassistant/home-assistant"` | |
|
||||
| image.tag | string | `"2021.9.4"` | |
|
||||
| image.repository | string | `"ghcr.io/truecharts/home-assistant"` | |
|
||||
| image.tag | string | `"v2021.9.6@sha256:74644684cd6d96bdeab87586e21235ee48d0dac44285cd0b68b12ce0e11895db"` | |
|
||||
| influxdb.architecture | string | `"standalone"` | |
|
||||
| influxdb.authEnabled | bool | `false` | |
|
||||
| influxdb.database | string | `"home_assistant"` | |
|
||||
@@ -34,6 +34,5 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| postgresql.postgresqlUsername | string | `"home-assistant"` | |
|
||||
| prometheus.serviceMonitor.enabled | bool | `false` | |
|
||||
| service.main.ports.main.port | int | `8123` | |
|
||||
| strategy.type | string | `"Recreate"` | |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org/ | common | 6.13.8 |
|
||||
| https://truecharts.org/ | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,3 +1,23 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="hyperion-ng-2.0.1"></a>
|
||||
### [hyperion-ng-2.0.1](https://github.com/truecharts/apps/compare/hyperion-ng-1.9.16...hyperion-ng-2.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major ([#962](https://github.com/truecharts/apps/issues/962))
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
* pin all container references to digests ([#963](https://github.com/truecharts/apps/issues/963))
|
||||
* Move some common containers to our own containers
|
||||
|
||||
#### Fix
|
||||
|
||||
* make sure podSecurityContext is included in both SCALE and Helm installs ([#956](https://github.com/truecharts/apps/issues/956))
|
||||
|
||||
<a name="hyperion-ng-1.9.15"></a>
|
||||
## [hyperion-ng-1.9.15](https://github.com/truecharts/apps/compare/hyperion-ng-1.9.14...hyperion-ng-1.9.15) (2021-09-07)
|
||||
|
||||
@@ -17,12 +17,21 @@ You will, however, be able to use all values referenced in the common chart here
|
||||
| env.TZ | string | `"UTC"` | Set the container timezone |
|
||||
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
|
||||
| image.repository | string | `"sirfragalot/hyperion.ng"` | image repository |
|
||||
| image.tag | string | `"2.0.0-alpha.10-x86_64"` | image tag |
|
||||
| image.tag | string | `"2.0.0-alpha.9-x86_64@sha256:34577843cb7b64a27b2e772a54886b54d8e0393230b18c6502309ab8221095a0"` | image tag |
|
||||
| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
|
||||
| persistence.config.enabled | bool | `true` | |
|
||||
| persistence.config.mountPath | string | `"/root/.hyperion"` | |
|
||||
| persistence.config.size | string | `"100Gi"` | |
|
||||
| persistence.config.type | string | `"pvc"` | |
|
||||
| podSecurityContext.fsGroup | int | `0` | |
|
||||
| podSecurityContext.fsGroupChangePolicy | string | `"OnRootMismatch"` | |
|
||||
| podSecurityContext.runAsGroup | int | `0` | |
|
||||
| podSecurityContext.runAsUser | int | `0` | |
|
||||
| podSecurityContext.supplementalGroups | list | `[]` | |
|
||||
| securityContext.allowPrivilegeEscalation | bool | `true` | |
|
||||
| securityContext.privileged | bool | `false` | |
|
||||
| securityContext.readOnlyRootFilesystem | bool | `false` | |
|
||||
| securityContext.runAsNonRoot | bool | `false` | |
|
||||
| service | object | See values.yaml | Configures service settings for the chart. |
|
||||
|
||||
All Rights Reserved - The TrueCharts Project
|
||||
|
||||
@@ -18,7 +18,7 @@ Kubernetes: `>=1.16.0-0`
|
||||
|
||||
| Repository | Name | Version |
|
||||
|------------|------|---------|
|
||||
| https://truecharts.org | common | 6.13.8 |
|
||||
| https://truecharts.org | common | 7.0.12 |
|
||||
|
||||
## Installing the Chart
|
||||
|
||||
|
||||
@@ -1,6 +1,20 @@
|
||||
# Changelog<br>
|
||||
|
||||
|
||||
<a name="jackett-7.0.1"></a>
|
||||
### [jackett-7.0.1](https://github.com/truecharts/apps/compare/jackett-6.11.21...jackett-7.0.1) (2021-09-13)
|
||||
|
||||
#### Chore
|
||||
|
||||
* update non-major
|
||||
|
||||
#### Feat
|
||||
|
||||
* add new GUI and VPN support to all Apps ([#977](https://github.com/truecharts/apps/issues/977))
|
||||
* Add VPN addon and move some config to includes ([#973](https://github.com/truecharts/apps/issues/973))
|
||||
|
||||
|
||||
|
||||
<a name="jackett-6.11.21"></a>
|
||||
### [jackett-6.11.21](https://github.com/truecharts/apps/compare/jackett-6.11.20...jackett-6.11.21) (2021-09-12)
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user