fix(mautrix-bridge): add global (and improve docs)
This commit is contained in:
parent
042dc12131
commit
4428f5b600
4 changed files with 11 additions and 22 deletions
|
@ -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
|
||||
|
|
|
@ -7,7 +7,7 @@ description: "A Matrix puppeting bridge mautrix."
|
|||
|
||||
# mautrix-bridge
|
||||
|
||||
 
|
||||
 
|
||||
|
||||
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 | `""` | |
|
||||
|
|
|
@ -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
|
|
@ -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: ""
|
||||
|
|
Loading…
Add table
Reference in a new issue