fix(mautrix-bridge): add global (and improve docs)

This commit is contained in:
WrenIX 2025-03-21 23:06:13 +01:00
parent 042dc12131
commit 4428f5b600
Signed by: wrenix
GPG key ID: 7AFDB012974B1BB5
4 changed files with 11 additions and 22 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v2
name: mautrix-bridge
description: A Matrix puppeting bridge mautrix.
type: application
version: 0.0.18
version: "0.0.19"
maintainers:
- name: WrenIX
url: https://wrenix.eu

View file

@ -7,7 +7,7 @@ description: "A Matrix puppeting bridge mautrix."
# mautrix-bridge
![Version: 0.0.18](https://img.shields.io/badge/Version-0.0.18-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.0.19](https://img.shields.io/badge/Version-0.0.19-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
A Matrix puppeting bridge mautrix.
@ -174,10 +174,10 @@ helm uninstall mautrix-bridge-release
| fullnameOverride | string | `""` | |
| global.image.pullPolicy | string | `nil` | if set it will overwrite all pullPolicy |
| global.image.registry | string | `nil` | if set it will overwrite all registry entries |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.registry | string | `"dock.mau.dev"` | |
| image.repository | string | `""` | |
| image.tag | string | `""` | |
| image.pullPolicy | string | `"IfNotPresent"` | This sets the pull policy for images. (could be overwritten by global.image.pullPolicy) |
| image.registry | string | `"dock.mau.dev"` | image registry (could be overwritten by global.image.registry) |
| image.repository | string | `""` | image repository |
| image.tag | string | `""` | image tag |
| imagePullSecrets | list | `[]` | |
| ingress.annotations | object | `{}` | |
| ingress.className | string | `""` | |

View file

@ -1,15 +0,0 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "mautrix-bridge.fullname" . }}-test-connection"
labels:
{{- include "mautrix-bridge.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "mautrix-bridge.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never

View file

@ -8,10 +8,14 @@ global:
replicaCount: 1
image:
# -- image registry (could be overwritten by global.image.registry)
registry: dock.mau.dev
# -- image repository
repository: ""
tag: ""
# -- This sets the pull policy for images. (could be overwritten by global.image.pullPolicy)
pullPolicy: IfNotPresent
# -- image tag
tag: ""
imagePullSecrets: []
nameOverride: ""