From 39b928f93cfb20513e19141f347639421363f98f Mon Sep 17 00:00:00 2001 From: WrenIX Date: Thu, 27 Feb 2025 10:54:36 +0100 Subject: [PATCH] fix(gotosocial): add global (and improve docs) --- gotosocial/Chart.yaml | 2 +- gotosocial/README.md | 12 ++++++------ gotosocial/values.yaml | 10 +++++----- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/gotosocial/Chart.yaml b/gotosocial/Chart.yaml index a715d6f..fb4dc61 100644 --- a/gotosocial/Chart.yaml +++ b/gotosocial/Chart.yaml @@ -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! icon: https://docs.gotosocial.org/en/latest/assets/sloth.png type: application -version: "0.2.13" +version: "0.2.14" # renovate: image=docker.io/superseriousbusiness/gotosocial appVersion: "0.18.1" maintainers: diff --git a/gotosocial/README.md b/gotosocial/README.md index e771210..d148a3d 100644 --- a/gotosocial/README.md +++ b/gotosocial/README.md @@ -7,7 +7,7 @@ description: "With GoToSocial, you can keep in touch with your friends, post, re # 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! @@ -113,10 +113,10 @@ helm uninstall gotosocial-release | gotosocial.trustedProxies[1] | string | `"127.0.0.1/32"` | | | gotosocial.trustedProxies[2] | string | `"::1"` | | | gotosocial.tz | string | `"UTC"` | | -| image.pullPolicy | string | `"IfNotPresent"` | | -| image.registry | string | `"docker.io"` | | -| image.repository | string | `"superseriousbusiness/gotosocial"` | | -| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. | +| 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 (could be overwritten by global.image.registry) | +| image.repository | string | `"superseriousbusiness/gotosocial"` | image repository | +| image.tag | string | `""` | image tag - Overrides the image tag whose default is the chart appVersion. | | imagePullSecrets | list | `[]` | | | ingress.annotations | object | `{}` | | | ingress.className | string | `""` | | @@ -139,7 +139,7 @@ helm uninstall gotosocial-release | podSecurityContext | object | `{}` | | | prometheus.servicemonitor.enabled | bool | `false` | | | prometheus.servicemonitor.labels | object | `{}` | | -| replicaCount | int | `1` | | +| replicaCount | int | `1` | replicas | | resources | object | `{}` | | | securityContext | object | `{}` | | | service.port | int | `8080` | | diff --git a/gotosocial/values.yaml b/gotosocial/values.yaml index 9ce2b9c..fddaaaf 100644 --- a/gotosocial/values.yaml +++ b/gotosocial/values.yaml @@ -1,7 +1,3 @@ -# Default values for gotosocial. -# This is a YAML-formatted file. -# Declare variables to be passed into your templates. - global: image: # -- if set it will overwrite all registry entries @@ -9,13 +5,17 @@ global: # -- if set it will overwrite all pullPolicy pullPolicy: +# -- replicas replicaCount: 1 image: + # -- image registry (could be overwritten by global.image.registry) registry: docker.io + # -- image repository repository: superseriousbusiness/gotosocial + # -- This sets the pull policy for images. (could be overwritten by global.image.pullPolicy) 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: "" imagePullSecrets: []