From 60a6de543b4c9a9f4dd1388b932d4b9f96044fd6 Mon Sep 17 00:00:00 2001 From: TrueCharts-Bot Date: Fri, 1 Oct 2021 14:51:35 +0000 Subject: [PATCH] Commit released Helm Chart and docs for TrueCharts Signed-off-by: TrueCharts-Bot --- charts/stable/gitea/CHANGELOG.md | 5 ++ charts/stable/gitea/SCALE/CHANGELOG.md | 4 +- docs/apps/stable/gitea/CHANGELOG.md | 25 ++++++++ docs/apps/stable/gitea/CONFIG.md | 8 +++ docs/apps/stable/gitea/helm-values.md | 83 ++++++++++++++++++++++++++ docs/apps/stable/gitea/index.md | 41 +++++++++++++ docs/index.yaml | 42 ++++++++++++- 7 files changed, 205 insertions(+), 3 deletions(-) create mode 100644 docs/apps/stable/gitea/CHANGELOG.md create mode 100644 docs/apps/stable/gitea/CONFIG.md create mode 100644 docs/apps/stable/gitea/helm-values.md create mode 100644 docs/apps/stable/gitea/index.md diff --git a/charts/stable/gitea/CHANGELOG.md b/charts/stable/gitea/CHANGELOG.md index 2d5940f208d..17cbb134d61 100644 --- a/charts/stable/gitea/CHANGELOG.md +++ b/charts/stable/gitea/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog
+ +### [gitea-1.0.0](https://github.com/truecharts/apps/compare/gitea-0.0.5...gitea-1.0.0) (2021-10-01) + + + ### [gitea-0.0.5](https://github.com/truecharts/apps/compare/gitea-0.0.4...gitea-0.0.5) (2021-10-01) diff --git a/charts/stable/gitea/SCALE/CHANGELOG.md b/charts/stable/gitea/SCALE/CHANGELOG.md index c5020f6a85c..df84b5b24b5 100644 --- a/charts/stable/gitea/SCALE/CHANGELOG.md +++ b/charts/stable/gitea/SCALE/CHANGELOG.md @@ -1,3 +1,3 @@ - -### [gitea-0.0.5](https://github.com/truecharts/apps/compare/gitea-0.0.4...gitea-0.0.5) (2021-10-01) + +### [gitea-1.0.0](https://github.com/truecharts/apps/compare/gitea-0.0.5...gitea-1.0.0) (2021-10-01) diff --git a/docs/apps/stable/gitea/CHANGELOG.md b/docs/apps/stable/gitea/CHANGELOG.md new file mode 100644 index 00000000000..17cbb134d61 --- /dev/null +++ b/docs/apps/stable/gitea/CHANGELOG.md @@ -0,0 +1,25 @@ +# Changelog
+ + + +### [gitea-1.0.0](https://github.com/truecharts/apps/compare/gitea-0.0.5...gitea-1.0.0) (2021-10-01) + + + + +### [gitea-0.0.5](https://github.com/truecharts/apps/compare/gitea-0.0.4...gitea-0.0.5) (2021-10-01) + + + + +### [gitea-0.0.4](https://github.com/truecharts/apps/compare/gitea-0.0.3...gitea-0.0.4) (2021-10-01) + + + + +### [gitea-0.0.2](https://github.com/truecharts/apps/compare/gitea-0.0.1...gitea-0.0.2) (2021-10-01) + + + + +### gitea-0.0.1 (2021-10-01) diff --git a/docs/apps/stable/gitea/CONFIG.md b/docs/apps/stable/gitea/CONFIG.md new file mode 100644 index 00000000000..fc9b2fa2d5f --- /dev/null +++ b/docs/apps/stable/gitea/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/stable/gitea/helm-values.md b/docs/apps/stable/gitea/helm-values.md new file mode 100644 index 00000000000..8233210f237 --- /dev/null +++ b/docs/apps/stable/gitea/helm-values.md @@ -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 diff --git a/docs/apps/stable/gitea/index.md b/docs/apps/stable/gitea/index.md new file mode 100644 index 00000000000..b165f4b9a68 --- /dev/null +++ b/docs/apps/stable/gitea/index.md @@ -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 + +* +* +* + +## 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 diff --git a/docs/index.yaml b/docs/index.yaml index 7f5483044d0..1febc3eafd3 100644 --- a/docs/index.yaml +++ b/docs/index.yaml @@ -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"