fix(gotosocial): add global (and improve docs)

This commit is contained in:
WrenIX 2025-02-27 10:54:36 +01:00
parent 6445458cd1
commit 39b928f93c
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
3 changed files with 12 additions and 12 deletions

View file

@ -3,7 +3,7 @@ name: gotosocial
description: With GoToSocial, you can keep in touch with your friends, post, read, and share images and articles. All without being tracked or advertised to! description: With GoToSocial, you can keep in touch with your friends, post, read, and share images and articles. All without being tracked or advertised to!
icon: https://docs.gotosocial.org/en/latest/assets/sloth.png icon: https://docs.gotosocial.org/en/latest/assets/sloth.png
type: application type: application
version: "0.2.13" version: "0.2.14"
# renovate: image=docker.io/superseriousbusiness/gotosocial # renovate: image=docker.io/superseriousbusiness/gotosocial
appVersion: "0.18.1" appVersion: "0.18.1"
maintainers: maintainers:

View file

@ -7,7 +7,7 @@ description: "With GoToSocial, you can keep in touch with your friends, post, re
# gotosocial # gotosocial
![Version: 0.2.13](https://img.shields.io/badge/Version-0.2.13-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.18.1](https://img.shields.io/badge/AppVersion-0.18.1-informational?style=flat-square) ![Version: 0.2.14](https://img.shields.io/badge/Version-0.2.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.18.1](https://img.shields.io/badge/AppVersion-0.18.1-informational?style=flat-square)
With GoToSocial, you can keep in touch with your friends, post, read, and share images and articles. All without being tracked or advertised to! With GoToSocial, you can keep in touch with your friends, post, read, and share images and articles. All without being tracked or advertised to!
@ -113,10 +113,10 @@ helm uninstall gotosocial-release
| gotosocial.trustedProxies[1] | string | `"127.0.0.1/32"` | | | gotosocial.trustedProxies[1] | string | `"127.0.0.1/32"` | |
| gotosocial.trustedProxies[2] | string | `"::1"` | | | gotosocial.trustedProxies[2] | string | `"::1"` | |
| gotosocial.tz | string | `"UTC"` | | | gotosocial.tz | string | `"UTC"` | |
| image.pullPolicy | string | `"IfNotPresent"` | | | image.pullPolicy | string | `"IfNotPresent"` | This sets the pull policy for images. (could be overwritten by global.image.pullPolicy) |
| image.registry | string | `"docker.io"` | | | image.registry | string | `"docker.io"` | image registry (could be overwritten by global.image.registry) |
| image.repository | string | `"superseriousbusiness/gotosocial"` | | | image.repository | string | `"superseriousbusiness/gotosocial"` | image repository |
| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. | | image.tag | string | `""` | image tag - Overrides the image tag whose default is the chart appVersion. |
| imagePullSecrets | list | `[]` | | | imagePullSecrets | list | `[]` | |
| ingress.annotations | object | `{}` | | | ingress.annotations | object | `{}` | |
| ingress.className | string | `""` | | | ingress.className | string | `""` | |
@ -139,7 +139,7 @@ helm uninstall gotosocial-release
| podSecurityContext | object | `{}` | | | podSecurityContext | object | `{}` | |
| prometheus.servicemonitor.enabled | bool | `false` | | | prometheus.servicemonitor.enabled | bool | `false` | |
| prometheus.servicemonitor.labels | object | `{}` | | | prometheus.servicemonitor.labels | object | `{}` | |
| replicaCount | int | `1` | | | replicaCount | int | `1` | replicas |
| resources | object | `{}` | | | resources | object | `{}` | |
| securityContext | object | `{}` | | | securityContext | object | `{}` | |
| service.port | int | `8080` | | | service.port | int | `8080` | |

View file

@ -1,7 +1,3 @@
# Default values for gotosocial.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
global: global:
image: image:
# -- if set it will overwrite all registry entries # -- if set it will overwrite all registry entries
@ -9,13 +5,17 @@ global:
# -- if set it will overwrite all pullPolicy # -- if set it will overwrite all pullPolicy
pullPolicy: pullPolicy:
# -- replicas
replicaCount: 1 replicaCount: 1
image: image:
# -- image registry (could be overwritten by global.image.registry)
registry: docker.io registry: docker.io
# -- image repository
repository: superseriousbusiness/gotosocial repository: superseriousbusiness/gotosocial
# -- This sets the pull policy for images. (could be overwritten by global.image.pullPolicy)
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# -- Overrides the image tag whose default is the chart appVersion. # -- image tag - Overrides the image tag whose default is the chart appVersion.
tag: "" tag: ""
imagePullSecrets: [] imagePullSecrets: []