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
|
name: mautrix-bridge
|
||||||
description: A Matrix puppeting bridge mautrix.
|
description: A Matrix puppeting bridge mautrix.
|
||||||
type: application
|
type: application
|
||||||
version: 0.0.18
|
version: "0.0.19"
|
||||||
maintainers:
|
maintainers:
|
||||||
- name: WrenIX
|
- name: WrenIX
|
||||||
url: https://wrenix.eu
|
url: https://wrenix.eu
|
||||||
|
|
|
@ -7,7 +7,7 @@ description: "A Matrix puppeting bridge mautrix."
|
||||||
|
|
||||||
# mautrix-bridge
|
# mautrix-bridge
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
A Matrix puppeting bridge mautrix.
|
A Matrix puppeting bridge mautrix.
|
||||||
|
|
||||||
|
@ -174,10 +174,10 @@ helm uninstall mautrix-bridge-release
|
||||||
| fullnameOverride | string | `""` | |
|
| fullnameOverride | string | `""` | |
|
||||||
| global.image.pullPolicy | string | `nil` | if set it will overwrite all pullPolicy |
|
| 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 |
|
| global.image.registry | string | `nil` | if set it will overwrite all registry entries |
|
||||||
| 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 | `"dock.mau.dev"` | |
|
| image.registry | string | `"dock.mau.dev"` | image registry (could be overwritten by global.image.registry) |
|
||||||
| image.repository | string | `""` | |
|
| image.repository | string | `""` | image repository |
|
||||||
| image.tag | string | `""` | |
|
| image.tag | string | `""` | image tag |
|
||||||
| imagePullSecrets | list | `[]` | |
|
| imagePullSecrets | list | `[]` | |
|
||||||
| ingress.annotations | object | `{}` | |
|
| ingress.annotations | object | `{}` | |
|
||||||
| ingress.className | string | `""` | |
|
| 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
|
replicaCount: 1
|
||||||
|
|
||||||
image:
|
image:
|
||||||
|
# -- image registry (could be overwritten by global.image.registry)
|
||||||
registry: dock.mau.dev
|
registry: dock.mau.dev
|
||||||
|
# -- image repository
|
||||||
repository: ""
|
repository: ""
|
||||||
tag: ""
|
# -- This sets the pull policy for images. (could be overwritten by global.image.pullPolicy)
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
# -- image tag
|
||||||
|
tag: ""
|
||||||
|
|
||||||
imagePullSecrets: []
|
imagePullSecrets: []
|
||||||
nameOverride: ""
|
nameOverride: ""
|
||||||
|
|
Loading…
Add table
Reference in a new issue