Commit released Helm Chart and docs for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2021-10-01 12:23:35 +00:00
parent 51e6678dd7
commit d9e90e6c1f
12 changed files with 324 additions and 2 deletions

View File

@ -0,0 +1,5 @@
# Changelog<br>
<a name="gitea-0.0.1"></a>
### gitea-0.0.1 (2021-10-01)

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

@ -1,5 +1,5 @@
apiVersion: v2
appVersion: "1.15.3"
appVersion: "1.15.3-roo"
dependencies:
- name: common
repository: https://truecharts.org

View File

@ -0,0 +1,41 @@
# Introduction
Self hosted GIT repositories
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://gitea.com/gitea/helm-chart>
* <https://github.com/go-gitea/gitea>
* <https://hub.docker.com/r/gitea/gitea/>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://charts.bitnami.com/bitnami | memcached | 5.15.3 |
| https://truecharts.org/ | postgresql | 3.0.4 |
| https://truecharts.org | common | 8.0.13 |
## 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

View File

@ -0,0 +1,3 @@
<a name="gitea-0.0.1"></a>
### gitea-0.0.1 (2021-10-01)

View File

@ -0,0 +1,3 @@
Self hosted GIT repositories
This App is supplied by TrueCharts, for more information please visit https://truecharts.org

View File

@ -0,0 +1,83 @@
# 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 |
|-----|------|---------|-------------|
| admin.email | string | `"gitea@local.domain"` | |
| admin.password | string | `"r8sA8CPHD9!bt6d"` | |
| admin.username | string | `"giteaadmin"` | |
| config.APP_NAME | string | `"Gitea: Git with a cup of tea"` | |
| config.RUN_MODE | string | `"dev"` | |
| customConfig | list | `[]` | |
| envFrom[0].configMapRef.name | string | `"gitea-env"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"gitea/gitea"` | |
| image.tag | string | `"1.15.3-rootless"` | |
| initContainers.0-init-postgresdb.command[0] | string | `"sh"` | |
| initContainers.0-init-postgresdb.command[1] | string | `"-c"` | |
| initContainers.0-init-postgresdb.command[2] | string | `"until pg_isready -U gitea -h ${pghost} ; do sleep 2 ; done"` | |
| initContainers.0-init-postgresdb.env[0].name | string | `"pghost"` | |
| initContainers.0-init-postgresdb.env[0].valueFrom.secretKeyRef.key | string | `"plainhost"` | |
| initContainers.0-init-postgresdb.env[0].valueFrom.secretKeyRef.name | string | `"dbcreds"` | |
| initContainers.0-init-postgresdb.image | string | `"{{ .Values.postgresqlImage.repository}}:{{ .Values.postgresqlImage.tag }}"` | |
| initContainers.0-init-postgresdb.imagePullPolicy | string | `"IfNotPresent"` | |
| initContainers.1-init-directories.command[0] | string | `"/usr/sbin/init_directory_structure.sh"` | |
| initContainers.1-init-directories.envFrom[0].configMapRef.name | string | `"gitea-env"` | |
| initContainers.1-init-directories.image | string | `"{{ .Values.image.repository }}:{{ .Values.image.tag }}"` | |
| initContainers.1-init-directories.securityContext.runAsNonRoot | bool | `false` | |
| initContainers.1-init-directories.securityContext.runAsUser | int | `0` | |
| initContainers.1-init-directories.volumeMounts[0].mountPath | string | `"/usr/sbin"` | |
| initContainers.1-init-directories.volumeMounts[0].name | string | `"init"` | |
| initContainers.1-init-directories.volumeMounts[1].mountPath | string | `"/tmp"` | |
| initContainers.1-init-directories.volumeMounts[1].name | string | `"temp"` | |
| initContainers.1-init-directories.volumeMounts[2].mountPath | string | `"/etc/gitea/conf"` | |
| initContainers.1-init-directories.volumeMounts[2].name | string | `"config"` | |
| initContainers.1-init-directories.volumeMounts[3].mountPath | string | `"/data"` | |
| initContainers.1-init-directories.volumeMounts[3].name | string | `"data"` | |
| initContainers.2-configure-gitea.command[0] | string | `"/usr/sbin/configure_gitea.sh"` | |
| initContainers.2-configure-gitea.envFrom[0].configMapRef.name | string | `"gitea-env"` | |
| initContainers.2-configure-gitea.image | string | `"{{ .Values.image.repository }}:{{ .Values.image.tag }}"` | |
| initContainers.2-configure-gitea.volumeMounts[0].mountPath | string | `"/usr/sbin"` | |
| initContainers.2-configure-gitea.volumeMounts[0].name | string | `"init"` | |
| initContainers.2-configure-gitea.volumeMounts[1].mountPath | string | `"/tmp"` | |
| initContainers.2-configure-gitea.volumeMounts[1].name | string | `"temp"` | |
| initContainers.2-configure-gitea.volumeMounts[2].mountPath | string | `"/data"` | |
| initContainers.2-configure-gitea.volumeMounts[2].name | string | `"data"` | |
| ldap.enabled | bool | `false` | |
| memcached | object | `{"enabled":true}` | memcached dependency settings |
| metrics.enabled | bool | `false` | |
| metrics.serviceMonitor.enabled | bool | `false` | |
| oauth.enabled | bool | `false` | |
| persistence.data.accessMode | string | `"ReadWriteOnce"` | |
| persistence.data.enabled | bool | `true` | |
| persistence.data.mountPath | string | `"/data"` | |
| persistence.data.size | string | `"100Gi"` | |
| persistence.data.type | string | `"pvc"` | |
| persistence.temp.enabled | bool | `true` | |
| persistence.temp.mountPath | string | `"/tmp"` | |
| persistence.temp.type | string | `"emptyDir"` | |
| persistence.varlib.enabled | bool | `true` | |
| persistence.varlib.mountPath | string | `"/var/lib/gitea"` | |
| persistence.varlib.type | string | `"emptyDir"` | |
| postgresql.enabled | bool | `true` | |
| postgresql.existingSecret | string | `"dbcreds"` | |
| postgresql.postgresqlDatabase | string | `"gitea"` | |
| postgresql.postgresqlUsername | string | `"gitea"` | |
| postgresqlImage.pullPolicy | string | `"IfNotPresent"` | |
| postgresqlImage.repository | string | `"bitnami/postgresql"` | |
| postgresqlImage.tag | string | `"13.4.0@sha256:33c276dffe6140d32f357753993c4088cf945a2d02d4c20d310f5a5e9d6e4a36"` | |
| service.main.ports.main.port | int | `3000` | |
| service.ssh.ports.ssh.port | int | `2222` | |
| service.ssh.ports.ssh.targetPort | int | `2222` | |
| signing.enabled | bool | `true` | |
| signing.gpgHome | string | `"/data/git/.gnupg"` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,6 @@
# Changelog<br>
<a name="gitea-0.0.1"></a>
### gitea-0.0.1 (2021-10-01)

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,83 @@
# 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 |
|-----|------|---------|-------------|
| admin.email | string | `"gitea@local.domain"` | |
| admin.password | string | `"r8sA8CPHD9!bt6d"` | |
| admin.username | string | `"giteaadmin"` | |
| config.APP_NAME | string | `"Gitea: Git with a cup of tea"` | |
| config.RUN_MODE | string | `"dev"` | |
| customConfig | list | `[]` | |
| envFrom[0].configMapRef.name | string | `"gitea-env"` | |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"gitea/gitea"` | |
| image.tag | string | `"1.15.3-rootless"` | |
| initContainers.0-init-postgresdb.command[0] | string | `"sh"` | |
| initContainers.0-init-postgresdb.command[1] | string | `"-c"` | |
| initContainers.0-init-postgresdb.command[2] | string | `"until pg_isready -U gitea -h ${pghost} ; do sleep 2 ; done"` | |
| initContainers.0-init-postgresdb.env[0].name | string | `"pghost"` | |
| initContainers.0-init-postgresdb.env[0].valueFrom.secretKeyRef.key | string | `"plainhost"` | |
| initContainers.0-init-postgresdb.env[0].valueFrom.secretKeyRef.name | string | `"dbcreds"` | |
| initContainers.0-init-postgresdb.image | string | `"{{ .Values.postgresqlImage.repository}}:{{ .Values.postgresqlImage.tag }}"` | |
| initContainers.0-init-postgresdb.imagePullPolicy | string | `"IfNotPresent"` | |
| initContainers.1-init-directories.command[0] | string | `"/usr/sbin/init_directory_structure.sh"` | |
| initContainers.1-init-directories.envFrom[0].configMapRef.name | string | `"gitea-env"` | |
| initContainers.1-init-directories.image | string | `"{{ .Values.image.repository }}:{{ .Values.image.tag }}"` | |
| initContainers.1-init-directories.securityContext.runAsNonRoot | bool | `false` | |
| initContainers.1-init-directories.securityContext.runAsUser | int | `0` | |
| initContainers.1-init-directories.volumeMounts[0].mountPath | string | `"/usr/sbin"` | |
| initContainers.1-init-directories.volumeMounts[0].name | string | `"init"` | |
| initContainers.1-init-directories.volumeMounts[1].mountPath | string | `"/tmp"` | |
| initContainers.1-init-directories.volumeMounts[1].name | string | `"temp"` | |
| initContainers.1-init-directories.volumeMounts[2].mountPath | string | `"/etc/gitea/conf"` | |
| initContainers.1-init-directories.volumeMounts[2].name | string | `"config"` | |
| initContainers.1-init-directories.volumeMounts[3].mountPath | string | `"/data"` | |
| initContainers.1-init-directories.volumeMounts[3].name | string | `"data"` | |
| initContainers.2-configure-gitea.command[0] | string | `"/usr/sbin/configure_gitea.sh"` | |
| initContainers.2-configure-gitea.envFrom[0].configMapRef.name | string | `"gitea-env"` | |
| initContainers.2-configure-gitea.image | string | `"{{ .Values.image.repository }}:{{ .Values.image.tag }}"` | |
| initContainers.2-configure-gitea.volumeMounts[0].mountPath | string | `"/usr/sbin"` | |
| initContainers.2-configure-gitea.volumeMounts[0].name | string | `"init"` | |
| initContainers.2-configure-gitea.volumeMounts[1].mountPath | string | `"/tmp"` | |
| initContainers.2-configure-gitea.volumeMounts[1].name | string | `"temp"` | |
| initContainers.2-configure-gitea.volumeMounts[2].mountPath | string | `"/data"` | |
| initContainers.2-configure-gitea.volumeMounts[2].name | string | `"data"` | |
| ldap.enabled | bool | `false` | |
| memcached | object | `{"enabled":true}` | memcached dependency settings |
| metrics.enabled | bool | `false` | |
| metrics.serviceMonitor.enabled | bool | `false` | |
| oauth.enabled | bool | `false` | |
| persistence.data.accessMode | string | `"ReadWriteOnce"` | |
| persistence.data.enabled | bool | `true` | |
| persistence.data.mountPath | string | `"/data"` | |
| persistence.data.size | string | `"100Gi"` | |
| persistence.data.type | string | `"pvc"` | |
| persistence.temp.enabled | bool | `true` | |
| persistence.temp.mountPath | string | `"/tmp"` | |
| persistence.temp.type | string | `"emptyDir"` | |
| persistence.varlib.enabled | bool | `true` | |
| persistence.varlib.mountPath | string | `"/var/lib/gitea"` | |
| persistence.varlib.type | string | `"emptyDir"` | |
| postgresql.enabled | bool | `true` | |
| postgresql.existingSecret | string | `"dbcreds"` | |
| postgresql.postgresqlDatabase | string | `"gitea"` | |
| postgresql.postgresqlUsername | string | `"gitea"` | |
| postgresqlImage.pullPolicy | string | `"IfNotPresent"` | |
| postgresqlImage.repository | string | `"bitnami/postgresql"` | |
| postgresqlImage.tag | string | `"13.4.0@sha256:33c276dffe6140d32f357753993c4088cf945a2d02d4c20d310f5a5e9d6e4a36"` | |
| service.main.ports.main.port | int | `3000` | |
| service.ssh.ports.ssh.port | int | `2222` | |
| service.ssh.ports.ssh.targetPort | int | `2222` | |
| signing.enabled | bool | `true` | |
| signing.gpgHome | string | `"/data/git/.gnupg"` | |
All Rights Reserved - The TrueCharts Project

View File

@ -0,0 +1,41 @@
# Introduction
Self hosted GIT repositories
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://gitea.com/gitea/helm-chart>
* <https://github.com/go-gitea/gitea>
* <https://hub.docker.com/r/gitea/gitea/>
## Requirements
Kubernetes: `>=1.16.0-0`
## Dependencies
| Repository | Name | Version |
|------------|------|---------|
| https://charts.bitnami.com/bitnami | memcached | 5.15.3 |
| https://truecharts.org/ | postgresql | 3.0.4 |
| https://truecharts.org | common | 8.0.13 |
## 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

View File

@ -51664,6 +51664,47 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/gaps-3.1.5/gaps-3.1.5.tgz
version: 3.1.5
gitea:
- apiVersion: v2
appVersion: 1.15.3-roo
created: "2021-10-01T12:23:33.086193895Z"
dependencies:
- name: common
repository: https://truecharts.org
version: 8.0.13
- condition: postgresql.enabled
name: postgresql
repository: https://truecharts.org/
version: 3.0.4
- condition: memcached.enabled
name: memcached
repository: https://charts.bitnami.com/bitnami
version: 5.15.3
description: Self hosted GIT repositories
digest: 3734a4f1050a923b854d151766add26654fd100f49d10f9d5a0c86e34a9585a2
home: https://github.com/truecharts/apps/tree/master/charts/stable/gitea
icon: https://docs.gitea.io/images/gitea.png
keywords:
- git
- issue tracker
- code review
- wiki
- gitea
- gogs
kubeVersion: '>=1.16.0-0'
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: truecharts.org
name: gitea
sources:
- https://gitea.com/gitea/helm-chart
- https://github.com/go-gitea/gitea
- https://hub.docker.com/r/gitea/gitea/
type: application
urls:
- https://github.com/truecharts/apps/releases/download/gitea-0.0.1/gitea-0.0.1.tgz
version: 0.0.1
gonic:
- apiVersion: v2
appVersion: 0.13.1
@ -195357,4 +195398,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-09-29T16:23:25.622135883Z"
generated: "2021-10-01T12:23:33.149737011Z"