Commit released Helm Chart and docs for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot
2022-01-28 22:59:33 +00:00
parent 669abfd400
commit 413be16916
8 changed files with 4300 additions and 1 deletions

View File

@@ -1,6 +1,15 @@
# Changelog<br>
<a name="strapi-0.0.3"></a>
### [strapi-0.0.3](https://github.com/truecharts/apps/compare/strapi-0.0.2...strapi-0.0.3) (2022-01-28)
#### Chore
* Add NODE_ENV on GUI ([#1808](https://github.com/truecharts/apps/issues/1808))
<a name="strapi-0.0.2"></a>
### [strapi-0.0.2](https://github.com/truecharts/apps/compare/strapi-0.0.1...strapi-0.0.2) (2022-01-28)

View File

@@ -16,6 +16,7 @@ You will, however, be able to use all values referenced in the common chart here
| env.DATABASE_PORT | int | `5432` | |
| env.DATABASE_USERNAME | string | `"{{ .Values.postgresql.postgresqlUsername }}"` | |
| env.EXTRA_ARGS | string | `""` | |
| env.NODE_ENV | string | `"production"` | |
| env.TZ | string | `"UTC"` | |
| envValueFrom.DATABASE_HOST.secretKeyRef.key | string | `"plainhost"` | |
| envValueFrom.DATABASE_HOST.secretKeyRef.name | string | `"dbcreds"` | |

View File

@@ -0,0 +1,27 @@
# Changelog<br>
<a name="strapi-0.0.3"></a>
### [strapi-0.0.3](https://github.com/truecharts/apps/compare/strapi-0.0.2...strapi-0.0.3) (2022-01-28)
#### Chore
* Add NODE_ENV on GUI ([#1808](https://github.com/truecharts/apps/issues/1808))
<a name="strapi-0.0.2"></a>
### [strapi-0.0.2](https://github.com/truecharts/apps/compare/strapi-0.0.1...strapi-0.0.2) (2022-01-28)
#### Feat
* add admin portal ([#1803](https://github.com/truecharts/apps/issues/1803))
<a name="strapi-0.0.1"></a>
### strapi-0.0.1 (2022-01-27)
#### Feat
* Add strapi ([#1800](https://github.com/truecharts/apps/issues/1800))

View File

@@ -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.

View File

@@ -0,0 +1,41 @@
# 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 |
|-----|------|---------|-------------|
| env.DATABASE_CLIENT | string | `"postgres"` | |
| env.DATABASE_NAME | string | `"{{ .Values.postgresql.postgresqlDatabase }}"` | |
| env.DATABASE_PORT | int | `5432` | |
| env.DATABASE_USERNAME | string | `"{{ .Values.postgresql.postgresqlUsername }}"` | |
| env.EXTRA_ARGS | string | `""` | |
| env.NODE_ENV | string | `"production"` | |
| env.TZ | string | `"UTC"` | |
| envValueFrom.DATABASE_HOST.secretKeyRef.key | string | `"plainhost"` | |
| envValueFrom.DATABASE_HOST.secretKeyRef.name | string | `"dbcreds"` | |
| envValueFrom.DATABASE_PASSWORD.secretKeyRef.key | string | `"postgresql-password"` | |
| envValueFrom.DATABASE_PASSWORD.secretKeyRef.name | string | `"dbcreds"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"tccr.io/truecharts/strapi"` | |
| image.tag | string | `"v3.6.8@sha256:25d345a1787c5be5ef1771b069e0eeaeba5b244a62870cc2b9d5acba0eaedd89"` | |
| persistence.data.enabled | bool | `true` | |
| persistence.data.mountPath | string | `"/srv/app"` | |
| podSecurityContext.runAsGroup | int | `0` | |
| podSecurityContext.runAsUser | int | `0` | |
| postgresql.enabled | bool | `true` | |
| postgresql.existingSecret | string | `"dbcreds"` | |
| postgresql.postgresqlDatabase | string | `"strapi"` | |
| postgresql.postgresqlUsername | string | `"strapi"` | |
| securityContext.readOnlyRootFilesystem | bool | `false` | |
| securityContext.runAsNonRoot | bool | `false` | |
| service.main.ports.main.port | int | `1337` | |
| service.main.ports.main.targetPort | int | `1337` | |
All Rights Reserved - The TrueCharts Project

View File

@@ -0,0 +1,40 @@
# Introduction
Strapi is the leading open-source headless CMS. Its 100% JavaScript, fully customizable and developer-first.
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
* <https://hub.docker.com/r/strapi/strapi>
* <https://github.com/strapi/strapi>
* <https://docs.strapi.io/developer-docs/latest/setup-deployment-guides/installation/docker.html#creating-a-strapi-project>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://truecharts.org/ | postgresql | 6.0.58 |
| https://truecharts.org | common | 8.14.2 |
## 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

File diff suppressed because one or more lines are too long

View File

@@ -47149,6 +47149,43 @@ entries:
- https://github.com/truecharts/apps/releases/download/statping-4.0.12/statping-4.0.12.tgz
version: 4.0.12
strapi:
- annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
- media
truecharts.org/grade: U
apiVersion: v2
appVersion: 3.6.8
created: "2022-01-28T22:59:32.400813161Z"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.14.2
- condition: postgresql.enabled
name: postgresql
repository: https://truecharts.org/
version: 6.0.58
description: Strapi is the leading open-source headless CMS. Its 100% JavaScript,
fully customizable and developer-first.
digest: e24b3aaebbc0c9fbcb3151162568f3fd7a272c1a42500f854f184c60e80b2fbb
home: https://github.com/truecharts/apps/tree/master/charts/stable/strapi
icon: https://truecharts.org/_static/img/appicons/strapi-icon.png
keywords:
- strapi
- cms
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: strapi
sources:
- https://hub.docker.com/r/strapi/strapi
- https://github.com/strapi/strapi
- https://docs.strapi.io/developer-docs/latest/setup-deployment-guides/installation/docker.html#creating-a-strapi-project
urls:
- https://github.com/truecharts/apps/releases/download/strapi-0.0.3/strapi-0.0.3.tgz
version: 0.0.3
- annotations:
truecharts.org/SCALE-support: "true"
truecharts.org/catagories: |
@@ -53769,4 +53806,4 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/zwavejs2mqtt-9.0.24/zwavejs2mqtt-9.0.24.tgz
version: 9.0.24
generated: "2022-01-28T20:31:14.302082887Z"
generated: "2022-01-28T22:59:32.404290201Z"