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 14:51:35 +00:00
parent 049cb18b5c
commit 60a6de543b
7 changed files with 205 additions and 3 deletions
+5
View File
@@ -1,6 +1,11 @@
# Changelog<br>
<a name="gitea-1.0.0"></a>
### [gitea-1.0.0](https://github.com/truecharts/apps/compare/gitea-0.0.5...gitea-1.0.0) (2021-10-01)
<a name="gitea-0.0.5"></a>
### [gitea-0.0.5](https://github.com/truecharts/apps/compare/gitea-0.0.4...gitea-0.0.5) (2021-10-01)
+2 -2
View File
@@ -1,3 +1,3 @@
<a name="gitea-0.0.5"></a>
### [gitea-0.0.5](https://github.com/truecharts/apps/compare/gitea-0.0.4...gitea-0.0.5) (2021-10-01)
<a name="gitea-1.0.0"></a>
### [gitea-1.0.0](https://github.com/truecharts/apps/compare/gitea-0.0.5...gitea-1.0.0) (2021-10-01)
+25
View File
@@ -0,0 +1,25 @@
# Changelog<br>
<a name="gitea-1.0.0"></a>
### [gitea-1.0.0](https://github.com/truecharts/apps/compare/gitea-0.0.5...gitea-1.0.0) (2021-10-01)
<a name="gitea-0.0.5"></a>
### [gitea-0.0.5](https://github.com/truecharts/apps/compare/gitea-0.0.4...gitea-0.0.5) (2021-10-01)
<a name="gitea-0.0.4"></a>
### [gitea-0.0.4](https://github.com/truecharts/apps/compare/gitea-0.0.3...gitea-0.0.4) (2021-10-01)
<a name="gitea-0.0.2"></a>
### [gitea-0.0.2](https://github.com/truecharts/apps/compare/gitea-0.0.1...gitea-0.0.2) (2021-10-01)
<a name="gitea-0.0.1"></a>
### gitea-0.0.1 (2021-10-01)
+8
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.
+83
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
+41
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
+41 -1
View File
@@ -51665,6 +51665,46 @@ entries:
- 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
created: "2021-10-01T14:51:33.666416268Z"
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: b7507a198af8b26a9e560465f7597d3ec1644c4ed2c32f0e7f0074d7ffc7b2cf
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-1.0.0/gitea-1.0.0.tgz
version: 1.0.0
- apiVersion: v2
appVersion: 1.15.3
created: "2021-10-01T14:39:13.851254527Z"
@@ -195548,4 +195588,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-10-01T14:39:13.904495521Z"
generated: "2021-10-01T14:51:33.732871938Z"