diff --git a/charts/incubator/memcached/CHANGELOG.md b/charts/incubator/memcached/CHANGELOG.md
index cd8381e1f0d..b5ee5cf6b8b 100644
--- a/charts/incubator/memcached/CHANGELOG.md
+++ b/charts/incubator/memcached/CHANGELOG.md
@@ -7,4 +7,3 @@
#### Feat
* add memcached App ([#1307](https://github.com/truecharts/apps/issues/1307))
-
diff --git a/charts/incubator/minio/CHANGELOG.md b/charts/incubator/minio/CHANGELOG.md
new file mode 100644
index 00000000000..e0d887a371c
--- /dev/null
+++ b/charts/incubator/minio/CHANGELOG.md
@@ -0,0 +1,6 @@
+# Changelog
+
+
+
+### [minio-0.0.1](https://github.com/truecharts/apps/compare/minio-console-1.0.8...minio-0.0.1) (2021-11-12)
+
diff --git a/charts/incubator/minio/Chart.yaml b/charts/incubator/minio/Chart.yaml
index 7e5c968ea61..01c6fdc449c 100644
--- a/charts/incubator/minio/Chart.yaml
+++ b/charts/incubator/minio/Chart.yaml
@@ -1,5 +1,5 @@
apiVersion: v2
-appVersion: "0.12.2"
+appVersion: "RELEASE.20"
dependencies:
- name: common
repository: https://truecharts.org
diff --git a/charts/incubator/minio/README.md b/charts/incubator/minio/README.md
index 4946ad1ca84..688953ff10f 100644
--- a/charts/incubator/minio/README.md
+++ b/charts/incubator/minio/README.md
@@ -1,6 +1,6 @@
# Introduction
-Minio server with web console
+Minio is a self-hosted S3 storage server
TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
diff --git a/charts/incubator/minio/helm-values.md b/charts/incubator/minio/helm-values.md
index abbef135db0..587ef002e29 100644
--- a/charts/incubator/minio/helm-values.md
+++ b/charts/incubator/minio/helm-values.md
@@ -11,24 +11,21 @@ You will, however, be able to use all values referenced in the common chart here
| Key | Type | Default | Description |
|-----|------|---------|-------------|
-| args[0] | list | `["server"]` | Override the args for the default container. |
-| args[1] | list | `["/data"]` | Override the args for the default container. |
-| args[2] | list | `["--console-address"]` | Override the args for the default container. |
-| args[3] | list | `[":9001"]` | Override the args for the default container. |
-| env | object | See below | environment variables. See more environment variables in the [minio documentation](https://minio.io/docs). |
-| env.MINIO_ROOT_USER | string | `"minio"` | Required: Minio server root username |
+| args | list | `["server","/data","--console-address",":9001"]` | Override the args for the default container. |
+| env | object | See below | environment variables. See more environment variables in the [minio documentation](https://docs.min.io). |
+| env.MINIO_ROOT_USER | string | `"minio"` | Minio Username |
| env.TZ | string | `"UTC"` | Set the container timezone |
| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
| image.repository | string | `"minio/minio"` | image repository |
| image.tag | string | `"RELEASE.2021-11-05T09-16-26Z@sha256:da20138482f9c2ce1db2107c24bcc9a68382dd53e3d66a312cb668c88c500765"` | image tag |
+| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
| persistence.config.enabled | bool | `true` | |
| persistence.config.mountPath | string | `"/data"` | |
-| persistence.config.size | string | `"100Gi"` | |
| persistence.config.type | string | `"pvc"` | |
-| secret.MINIO_ROOT_PASSWORD | string | `"changeme"` | Required: Minio server root password |
-| securityContext.readOnlyRootFilesystem | bool | `false` | |
| probes.liveness.path | string | `"/minio/health/live"` | |
| probes.readiness.path | string | `"/minio/health/ready"` | |
+| secret.MINIO_ROOT_PASSWORD | string | `"changeme"` | Minio Password |
+| securityContext.readOnlyRootFilesystem | bool | `false` | |
| service | object | See values.yaml | Configures service settings for the chart. |
All Rights Reserved - The TrueCharts Project
diff --git a/charts/incubator/redis/CHANGELOG.md b/charts/incubator/redis/CHANGELOG.md
new file mode 100644
index 00000000000..7959892b507
--- /dev/null
+++ b/charts/incubator/redis/CHANGELOG.md
@@ -0,0 +1,10 @@
+# Changelog
+
+
+
+### redis-0.0.1 (2021-11-12)
+
+#### Feat
+
+* add redis App ([#1309](https://github.com/truecharts/apps/issues/1309))
+
diff --git a/charts/incubator/redis/CONFIG.md b/charts/incubator/redis/CONFIG.md
new file mode 100644
index 00000000000..fc9b2fa2d5f
--- /dev/null
+++ b/charts/incubator/redis/CONFIG.md
@@ -0,0 +1,8 @@
+# Configuration Options
+
+##### Connecting to other apps
+If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our "Linking Apps Internally" quick-start guide:
+https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
+
+##### Available config options
+In the future this page is going to contain an automated list of options available in the installation/edit UI.
diff --git a/charts/incubator/redis/Chart.yaml b/charts/incubator/redis/Chart.yaml
index 108367da834..ebf283e0513 100644
--- a/charts/incubator/redis/Chart.yaml
+++ b/charts/incubator/redis/Chart.yaml
@@ -1,5 +1,5 @@
apiVersion: v2
-appVersion: "14.0.0"
+appVersion: "6.2.6"
dependencies:
- name: common
repository: https://truecharts.org
diff --git a/charts/incubator/redis/README.md b/charts/incubator/redis/README.md
new file mode 100644
index 00000000000..91c273bfb73
--- /dev/null
+++ b/charts/incubator/redis/README.md
@@ -0,0 +1,38 @@
+# Introduction
+
+Open source, advanced key-value store.
+
+TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
+**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
+
+## Source Code
+
+*
+*
+
+## Requirements
+
+Kubernetes: `>=1.16.0-0`
+
+## Dependencies
+
+| Repository | Name | Version |
+|------------|------|---------|
+| https://truecharts.org | common | 8.5.4 |
+
+## Installing the Chart
+
+To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
+
+## Uninstalling the Chart
+
+To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
+
+## Support
+
+- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) first.
+- See the [Wiki](https://truecharts.org)
+- Check our [Discord](https://discord.gg/tVsPTHWTtr)
+- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
+---
+All Rights Reserved - The TrueCharts Project
diff --git a/charts/incubator/redis/helm-values.md b/charts/incubator/redis/helm-values.md
new file mode 100644
index 00000000000..dd8b02f370e
--- /dev/null
+++ b/charts/incubator/redis/helm-values.md
@@ -0,0 +1,59 @@
+# Default Helm-Values
+
+TrueCharts is primarily build to supply TrueNAS SCALE Apps.
+However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
+
+Most of our Apps also consume our "common" Helm Chart.
+If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
+You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
+
+## Values
+
+| Key | Type | Default | Description |
+|-----|------|---------|-------------|
+| controller.replicas | int | `1` | Number of desired pods |
+| controller.revisionHistoryLimit | int | `3` | ReplicaSet revision history limit |
+| controller.rollingUpdate.partition | string | `nil` | Set statefulset RollingUpdate partition |
+| controller.rollingUpdate.surge | string | `nil` | Set deployment RollingUpdate max surge |
+| controller.rollingUpdate.unavailable | int | `1` | Set deployment RollingUpdate max unavailable |
+| controller.strategy | string | `"RollingUpdate"` | Set the controller upgrade strategy For Deployments, valid values are Recreate (default) and RollingUpdate. For StatefulSets, valid values are OnDelete and RollingUpdate (default). DaemonSets ignore this. |
+| controller.type | string | `"statefulset"` | Set the controller type. Valid options are deployment, daemonset or statefulset |
+| envTpl.REDIS_PORT | string | `"{{ .Values.service.main.ports.main.targetPort }}"` | |
+| envValueFrom.REDIS_PASSWORD.secretKeyRef.key | string | `"redis-password"` | |
+| envValueFrom.REDIS_PASSWORD.secretKeyRef.name | string | `"{{ ( tpl .Values.existingSecret $ ) | default ( include \"common.names.fullname\" . ) }}"` | |
+| env[0].name | string | `"REDIS_REPLICATION_MODE"` | |
+| env[0].value | string | `"master"` | |
+| env[1].name | string | `"ALLOW_EMPTY_PASSWORD"` | |
+| env[1].value | string | `"yes"` | |
+| existingSecret | string | `""` | |
+| image.pullPolicy | string | `"IfNotPresent"` | |
+| image.repository | string | `"bitnami/redis"` | |
+| image.tag | string | `"6.2.6@sha256:cfbc3cf717ea121c3c40a841646280d326c68b4818e893139d2550c10827d4d5"` | |
+| persistence.redis-health | object | See below | redis-health configmap mount |
+| persistence.redis-health.mountPath | string | `"/health"` | Where to mount the volume in the main container. Defaults to `/`, setting to '-' creates the volume but disables the volumeMount. |
+| persistence.redis-health.readOnly | bool | `false` | Specify if the volume should be mounted read-only. |
+| persistence.redis-health.volumeSpec | object | `{"configMap":{"defaultMode":493,"name":"redis-health"}}` | Define the custom Volume spec here [[ref]](https://kubernetes.io/docs/concepts/storage/volumes/) |
+| podSecurityContext.runAsGroup | int | `0` | |
+| probes | object | See below | Probe configuration -- [[ref]](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/) |
+| probes.liveness | object | See below | Liveness probe configuration |
+| probes.liveness.custom | bool | `true` | Set this to `true` if you wish to specify your own livenessProbe |
+| probes.liveness.enabled | bool | `true` | Enable the liveness probe |
+| probes.liveness.spec | object | See below | The spec field contains the values for the default livenessProbe. If you selected `custom: true`, this field holds the definition of the livenessProbe. |
+| probes.readiness | object | See below | Redainess probe configuration |
+| probes.readiness.custom | bool | `true` | Set this to `true` if you wish to specify your own readinessProbe |
+| probes.readiness.enabled | bool | `true` | Enable the readiness probe |
+| probes.readiness.spec | object | See below | The spec field contains the values for the default readinessProbe. If you selected `custom: true`, this field holds the definition of the readinessProbe. |
+| probes.startup | object | See below | Startup probe configuration |
+| probes.startup.enabled | bool | `true` | Enable the startup probe |
+| probes.startup.spec | object | See below | The spec field contains the values for the default livenessProbe. If you selected `custom: true`, this field holds the definition of the livenessProbe. |
+| redisPassword | string | `"testpass"` | |
+| securityContext.readOnlyRootFilesystem | bool | `false` | |
+| service.main.ports.main.port | int | `6379` | |
+| service.main.ports.main.targetPort | int | `6379` | |
+| volumeClaimTemplates.data.accessMode | string | `"ReadWriteOnce"` | |
+| volumeClaimTemplates.data.enabled | bool | `true` | |
+| volumeClaimTemplates.data.mountPath | string | `"/bitnami/redis"` | |
+| volumeClaimTemplates.data.size | string | `"100Gi"` | |
+| volumeClaimTemplates.data.type | string | `"pvc"` | |
+
+All Rights Reserved - The TrueCharts Project
diff --git a/charts/library/common/CHANGELOG.md b/charts/library/common/CHANGELOG.md
index 1534e5e15ca..c4f972acc42 100644
--- a/charts/library/common/CHANGELOG.md
+++ b/charts/library/common/CHANGELOG.md
@@ -1,6 +1,15 @@
# Changelog
+
+### [common-8.5.6](https://github.com/truecharts/apps/compare/common-8.5.5...common-8.5.6) (2021-11-12)
+
+#### Feat
+
+* add redis App ([#1309](https://github.com/truecharts/apps/issues/1309))
+
+
+
### [common-8.5.5](https://github.com/truecharts/apps/compare/common-8.5.4...common-8.5.5) (2021-11-10)
diff --git a/charts/library/common/helm-values.md b/charts/library/common/helm-values.md
index 99eb3b03cab..9b6362f2429 100644
--- a/charts/library/common/helm-values.md
+++ b/charts/library/common/helm-values.md
@@ -198,6 +198,8 @@ This chart is used by a lot of our Apps to provide sane defaults and logic.
| rbac.enabled | bool | `false` | Enables or disables the ClusterRole and ClusterRoleBinding |
| rbac.rules | object | `{}` | Set Rules on the ClusterRole |
| rbac.subjects | object | `{}` | Add subjects to the ClusterRoleBinding. includes the above created serviceaccount |
+| redis | object | See below | Redis dependency configuration |
+| redis.url | object | `{}` | can be used to make an easy accessable note which URLS to use to access the DB. |
| resources | object | `{"limits":{"cpu":"4000m","memory":"8Gi"},"requests":{"cpu":"10m","memory":"50Mi"}}` | Set the resource requests / limits for the main container. |
| schedulerName | string | `nil` | Allows specifying a custom scheduler name |
| secret | object | `{}` | Use this to populate a secret with the values you specify. Be aware that these values are not encrypted by default, and could therefore visible to anybody with access to the values.yaml file. |
diff --git a/docs/apps/common/helm-values.md b/docs/apps/common/helm-values.md
index 99eb3b03cab..9b6362f2429 100644
--- a/docs/apps/common/helm-values.md
+++ b/docs/apps/common/helm-values.md
@@ -198,6 +198,8 @@ This chart is used by a lot of our Apps to provide sane defaults and logic.
| rbac.enabled | bool | `false` | Enables or disables the ClusterRole and ClusterRoleBinding |
| rbac.rules | object | `{}` | Set Rules on the ClusterRole |
| rbac.subjects | object | `{}` | Add subjects to the ClusterRoleBinding. includes the above created serviceaccount |
+| redis | object | See below | Redis dependency configuration |
+| redis.url | object | `{}` | can be used to make an easy accessable note which URLS to use to access the DB. |
| resources | object | `{"limits":{"cpu":"4000m","memory":"8Gi"},"requests":{"cpu":"10m","memory":"50Mi"}}` | Set the resource requests / limits for the main container. |
| schedulerName | string | `nil` | Allows specifying a custom scheduler name |
| secret | object | `{}` | Use this to populate a secret with the values you specify. Be aware that these values are not encrypted by default, and could therefore visible to anybody with access to the values.yaml file. |
diff --git a/docs/apps/incubator/memcached/CHANGELOG.md b/docs/apps/incubator/memcached/CHANGELOG.md
index cd8381e1f0d..b5ee5cf6b8b 100644
--- a/docs/apps/incubator/memcached/CHANGELOG.md
+++ b/docs/apps/incubator/memcached/CHANGELOG.md
@@ -7,4 +7,3 @@
#### Feat
* add memcached App ([#1307](https://github.com/truecharts/apps/issues/1307))
-
diff --git a/docs/apps/incubator/minio/CHANGELOG.md b/docs/apps/incubator/minio/CHANGELOG.md
new file mode 100644
index 00000000000..e0d887a371c
--- /dev/null
+++ b/docs/apps/incubator/minio/CHANGELOG.md
@@ -0,0 +1,6 @@
+# Changelog
+
+
+
+### [minio-0.0.1](https://github.com/truecharts/apps/compare/minio-console-1.0.8...minio-0.0.1) (2021-11-12)
+
diff --git a/docs/apps/incubator/minio/CONFIG.md b/docs/apps/incubator/minio/CONFIG.md
new file mode 100644
index 00000000000..fc9b2fa2d5f
--- /dev/null
+++ b/docs/apps/incubator/minio/CONFIG.md
@@ -0,0 +1,8 @@
+# Configuration Options
+
+##### Connecting to other apps
+If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our "Linking Apps Internally" quick-start guide:
+https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
+
+##### Available config options
+In the future this page is going to contain an automated list of options available in the installation/edit UI.
diff --git a/docs/apps/incubator/minio/helm-values.md b/docs/apps/incubator/minio/helm-values.md
new file mode 100644
index 00000000000..587ef002e29
--- /dev/null
+++ b/docs/apps/incubator/minio/helm-values.md
@@ -0,0 +1,31 @@
+# Default Helm-Values
+
+TrueCharts is primarily build to supply TrueNAS SCALE Apps.
+However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
+
+Most of our Apps also consume our "common" Helm Chart.
+If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
+You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
+
+## Values
+
+| Key | Type | Default | Description |
+|-----|------|---------|-------------|
+| args | list | `["server","/data","--console-address",":9001"]` | Override the args for the default container. |
+| env | object | See below | environment variables. See more environment variables in the [minio documentation](https://docs.min.io). |
+| env.MINIO_ROOT_USER | string | `"minio"` | Minio Username |
+| env.TZ | string | `"UTC"` | Set the container timezone |
+| image.pullPolicy | string | `"IfNotPresent"` | image pull policy |
+| image.repository | string | `"minio/minio"` | image repository |
+| image.tag | string | `"RELEASE.2021-11-05T09-16-26Z@sha256:da20138482f9c2ce1db2107c24bcc9a68382dd53e3d66a312cb668c88c500765"` | image tag |
+| persistence.config.accessMode | string | `"ReadWriteOnce"` | |
+| persistence.config.enabled | bool | `true` | |
+| persistence.config.mountPath | string | `"/data"` | |
+| persistence.config.type | string | `"pvc"` | |
+| probes.liveness.path | string | `"/minio/health/live"` | |
+| probes.readiness.path | string | `"/minio/health/ready"` | |
+| secret.MINIO_ROOT_PASSWORD | string | `"changeme"` | Minio Password |
+| securityContext.readOnlyRootFilesystem | bool | `false` | |
+| service | object | See values.yaml | Configures service settings for the chart. |
+
+All Rights Reserved - The TrueCharts Project
diff --git a/docs/apps/incubator/minio/index.md b/docs/apps/incubator/minio/index.md
new file mode 100644
index 00000000000..688953ff10f
--- /dev/null
+++ b/docs/apps/incubator/minio/index.md
@@ -0,0 +1,37 @@
+# Introduction
+
+Minio is a self-hosted S3 storage server
+
+TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
+**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
+
+## Source Code
+
+*
+
+## Requirements
+
+Kubernetes: `>=1.16.0-0`
+
+## Dependencies
+
+| Repository | Name | Version |
+|------------|------|---------|
+| https://truecharts.org | common | 8.5.4 |
+
+## Installing the Chart
+
+To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
+
+## Uninstalling the Chart
+
+To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
+
+## Support
+
+- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) first.
+- See the [Wiki](https://truecharts.org)
+- Check our [Discord](https://discord.gg/tVsPTHWTtr)
+- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
+---
+All Rights Reserved - The TrueCharts Project
diff --git a/docs/apps/incubator/redis/CHANGELOG.md b/docs/apps/incubator/redis/CHANGELOG.md
new file mode 100644
index 00000000000..7959892b507
--- /dev/null
+++ b/docs/apps/incubator/redis/CHANGELOG.md
@@ -0,0 +1,10 @@
+# Changelog
+
+
+
+### redis-0.0.1 (2021-11-12)
+
+#### Feat
+
+* add redis App ([#1309](https://github.com/truecharts/apps/issues/1309))
+
diff --git a/docs/apps/incubator/redis/CONFIG.md b/docs/apps/incubator/redis/CONFIG.md
new file mode 100644
index 00000000000..fc9b2fa2d5f
--- /dev/null
+++ b/docs/apps/incubator/redis/CONFIG.md
@@ -0,0 +1,8 @@
+# Configuration Options
+
+##### Connecting to other apps
+If you need to connect this App to other Apps on TrueNAS SCALE, please refer to our "Linking Apps Internally" quick-start guide:
+https://truecharts.org/manual/Quick-Start%20Guides/14-linking-apps/
+
+##### Available config options
+In the future this page is going to contain an automated list of options available in the installation/edit UI.
diff --git a/docs/apps/incubator/redis/helm-values.md b/docs/apps/incubator/redis/helm-values.md
new file mode 100644
index 00000000000..dd8b02f370e
--- /dev/null
+++ b/docs/apps/incubator/redis/helm-values.md
@@ -0,0 +1,59 @@
+# Default Helm-Values
+
+TrueCharts is primarily build to supply TrueNAS SCALE Apps.
+However, we also supply all Apps as standard Helm-Charts. In this document we aim to document the default values in our values.yaml file.
+
+Most of our Apps also consume our "common" Helm Chart.
+If this is the case, this means that all values.yaml values are set to the common chart values.yaml by default. This values.yaml file will only contain values that deviate from the common chart.
+You will, however, be able to use all values referenced in the common chart here, besides the values listed in this document.
+
+## Values
+
+| Key | Type | Default | Description |
+|-----|------|---------|-------------|
+| controller.replicas | int | `1` | Number of desired pods |
+| controller.revisionHistoryLimit | int | `3` | ReplicaSet revision history limit |
+| controller.rollingUpdate.partition | string | `nil` | Set statefulset RollingUpdate partition |
+| controller.rollingUpdate.surge | string | `nil` | Set deployment RollingUpdate max surge |
+| controller.rollingUpdate.unavailable | int | `1` | Set deployment RollingUpdate max unavailable |
+| controller.strategy | string | `"RollingUpdate"` | Set the controller upgrade strategy For Deployments, valid values are Recreate (default) and RollingUpdate. For StatefulSets, valid values are OnDelete and RollingUpdate (default). DaemonSets ignore this. |
+| controller.type | string | `"statefulset"` | Set the controller type. Valid options are deployment, daemonset or statefulset |
+| envTpl.REDIS_PORT | string | `"{{ .Values.service.main.ports.main.targetPort }}"` | |
+| envValueFrom.REDIS_PASSWORD.secretKeyRef.key | string | `"redis-password"` | |
+| envValueFrom.REDIS_PASSWORD.secretKeyRef.name | string | `"{{ ( tpl .Values.existingSecret $ ) | default ( include \"common.names.fullname\" . ) }}"` | |
+| env[0].name | string | `"REDIS_REPLICATION_MODE"` | |
+| env[0].value | string | `"master"` | |
+| env[1].name | string | `"ALLOW_EMPTY_PASSWORD"` | |
+| env[1].value | string | `"yes"` | |
+| existingSecret | string | `""` | |
+| image.pullPolicy | string | `"IfNotPresent"` | |
+| image.repository | string | `"bitnami/redis"` | |
+| image.tag | string | `"6.2.6@sha256:cfbc3cf717ea121c3c40a841646280d326c68b4818e893139d2550c10827d4d5"` | |
+| persistence.redis-health | object | See below | redis-health configmap mount |
+| persistence.redis-health.mountPath | string | `"/health"` | Where to mount the volume in the main container. Defaults to `/`, setting to '-' creates the volume but disables the volumeMount. |
+| persistence.redis-health.readOnly | bool | `false` | Specify if the volume should be mounted read-only. |
+| persistence.redis-health.volumeSpec | object | `{"configMap":{"defaultMode":493,"name":"redis-health"}}` | Define the custom Volume spec here [[ref]](https://kubernetes.io/docs/concepts/storage/volumes/) |
+| podSecurityContext.runAsGroup | int | `0` | |
+| probes | object | See below | Probe configuration -- [[ref]](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/) |
+| probes.liveness | object | See below | Liveness probe configuration |
+| probes.liveness.custom | bool | `true` | Set this to `true` if you wish to specify your own livenessProbe |
+| probes.liveness.enabled | bool | `true` | Enable the liveness probe |
+| probes.liveness.spec | object | See below | The spec field contains the values for the default livenessProbe. If you selected `custom: true`, this field holds the definition of the livenessProbe. |
+| probes.readiness | object | See below | Redainess probe configuration |
+| probes.readiness.custom | bool | `true` | Set this to `true` if you wish to specify your own readinessProbe |
+| probes.readiness.enabled | bool | `true` | Enable the readiness probe |
+| probes.readiness.spec | object | See below | The spec field contains the values for the default readinessProbe. If you selected `custom: true`, this field holds the definition of the readinessProbe. |
+| probes.startup | object | See below | Startup probe configuration |
+| probes.startup.enabled | bool | `true` | Enable the startup probe |
+| probes.startup.spec | object | See below | The spec field contains the values for the default livenessProbe. If you selected `custom: true`, this field holds the definition of the livenessProbe. |
+| redisPassword | string | `"testpass"` | |
+| securityContext.readOnlyRootFilesystem | bool | `false` | |
+| service.main.ports.main.port | int | `6379` | |
+| service.main.ports.main.targetPort | int | `6379` | |
+| volumeClaimTemplates.data.accessMode | string | `"ReadWriteOnce"` | |
+| volumeClaimTemplates.data.enabled | bool | `true` | |
+| volumeClaimTemplates.data.mountPath | string | `"/bitnami/redis"` | |
+| volumeClaimTemplates.data.size | string | `"100Gi"` | |
+| volumeClaimTemplates.data.type | string | `"pvc"` | |
+
+All Rights Reserved - The TrueCharts Project
diff --git a/docs/apps/incubator/redis/index.md b/docs/apps/incubator/redis/index.md
new file mode 100644
index 00000000000..91c273bfb73
--- /dev/null
+++ b/docs/apps/incubator/redis/index.md
@@ -0,0 +1,38 @@
+# Introduction
+
+Open source, advanced key-value store.
+
+TrueCharts are designed to be installed as TrueNAS SCALE app only. We can not guarantee this charts works as a stand-alone helm installation.
+**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/apps/issues/new/choose)**
+
+## Source Code
+
+*
+*
+
+## Requirements
+
+Kubernetes: `>=1.16.0-0`
+
+## Dependencies
+
+| Repository | Name | Version |
+|------------|------|---------|
+| https://truecharts.org | common | 8.5.4 |
+
+## Installing the Chart
+
+To install this App on TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/03-Installing-an-App/).
+
+## Uninstalling the Chart
+
+To remove this App from TrueNAS SCALE check our [Quick-Start Guide](https://truecharts.org/manual/Quick-Start%20Guides/07-Deleting-an-App/).
+
+## Support
+
+- Please check our [quick-start guides](https://truecharts.org/manual/Quick-Start%20Guides/01-Open-Apps/) first.
+- See the [Wiki](https://truecharts.org)
+- Check our [Discord](https://discord.gg/tVsPTHWTtr)
+- Open a [issue](https://github.com/truecharts/apps/issues/new/choose)
+---
+All Rights Reserved - The TrueCharts Project
diff --git a/docs/index.yaml b/docs/index.yaml
index 6f08834df30..82177235b1f 100644
--- a/docs/index.yaml
+++ b/docs/index.yaml
@@ -23500,6 +23500,27 @@ entries:
- https://github.com/truecharts/apps/releases/download/collabora-online-3.1.5/collabora-online-3.1.5.tgz
version: 3.1.5
common:
+ - apiVersion: v2
+ appVersion: latest
+ created: "2021-11-12T17:35:10.915426948Z"
+ description: Function library for TrueCharts
+ digest: be6350b2cb8a56dd15a9645d6b444a8adde6b0e167eda77937d7e07ec1cb8b80
+ home: https://github.com/truecharts/apps/tree/master/charts/common
+ icon: https://avatars.githubusercontent.com/u/76400755
+ keywords:
+ - truecharts
+ - library-chart
+ - common
+ kubeVersion: '>=1.16.0-0'
+ maintainers:
+ - email: info@truecharts.org
+ name: TrueCharts
+ url: truecharts.org
+ name: common
+ type: library
+ urls:
+ - https://github.com/truecharts/apps/releases/download/common-8.5.6/common-8.5.6.tgz
+ version: 8.5.6
- apiVersion: v2
appVersion: latest
created: "2021-11-10T23:18:51.0427341Z"
@@ -114529,6 +114550,38 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/miniflux-0.0.1/miniflux-0.0.1.tgz
version: 0.0.1
+ minio:
+ - annotations:
+ truecharts.org/SCALE-support: "true"
+ truecharts.org/catagories: |
+ - media
+ truecharts.org/grade: U
+ apiVersion: v2
+ appVersion: RELEASE.20
+ created: "2021-11-12T17:35:11.153960311Z"
+ dependencies:
+ - name: common
+ repository: https://truecharts.org
+ version: 8.5.4
+ description: Minio is a self-hosted S3 storage server
+ digest: 722aedfecc7f0b76119772fa0124737c5712c66b53372aa1799f79a2206161c9
+ home: https://github.com/truecharts/apps/tree/master/charts/incubator/minio
+ icon: https://min.io/resources/img/logo/MINIO_wordmark.png
+ keywords:
+ - minio
+ - s3
+ - storage
+ kubeVersion: '>=1.16.0-0'
+ maintainers:
+ - email: info@truecharts.org
+ name: TrueCharts
+ url: truecharts.org
+ name: minio
+ sources:
+ - https://github.com/minio/minio
+ urls:
+ - https://github.com/truecharts/apps/releases/download/minio-0.0.1/minio-0.0.1.tgz
+ version: 0.0.1
minio-console:
- annotations:
truecharts.org/SCALE-support: "true"
@@ -189692,6 +189745,41 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/recipes-0.0.1/recipes-0.0.1.tgz
version: 0.0.1
+ redis:
+ - annotations:
+ truecharts.org/SCALE-support: "true"
+ truecharts.org/catagories: |
+ - database
+ - cache
+ truecharts.org/grade: U
+ apiVersion: v2
+ appVersion: 6.2.6
+ created: "2021-11-12T17:35:11.358971655Z"
+ dependencies:
+ - name: common
+ repository: https://truecharts.org
+ version: 8.5.4
+ description: Open source, advanced key-value store.
+ digest: 9379e4a57bcaf2a705d1130f8052eee53953d3b0b96ebed57c5b3e5674a375ff
+ home: https://github.com/truecharts/apps/tree/master/stable/redis
+ icon: https://bitnami.com/assets/stacks/redis/img/redis-stack-220x234.png
+ keywords:
+ - redis
+ - keyvalue
+ - database
+ kubeVersion: '>=1.16.0-0'
+ maintainers:
+ - email: info@truecharts.org
+ name: TrueCharts
+ url: truecharts.org
+ name: redis
+ sources:
+ - https://github.com/bitnami/bitnami-docker-redis
+ - http://redis.io/
+ type: application
+ urls:
+ - https://github.com/truecharts/apps/releases/download/redis-0.0.1/redis-0.0.1.tgz
+ version: 0.0.1
reg:
- annotations:
truecharts.org/SCALE-support: "true"
@@ -244360,4 +244448,4 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/zwavejs2mqtt-3.1.5/zwavejs2mqtt-3.1.5.tgz
version: 3.1.5
-generated: "2021-11-11T21:02:15.134890511Z"
+generated: "2021-11-12T17:35:11.445855725Z"