forked from MirrorHub/mautrix-whatsapp
Fix values.yaml in helm chart
This commit is contained in:
parent
0fba1db6aa
commit
0b51d84646
1 changed files with 26 additions and 21 deletions
|
@ -34,7 +34,8 @@ affinity: {}
|
||||||
# Postgres pod configs
|
# Postgres pod configs
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: true
|
enabled: true
|
||||||
postgresqlDatabase: mxtg
|
postgresqlDatabase: mxwa
|
||||||
|
postgresqlPassword: SET TO RANDOM STRING
|
||||||
persistence:
|
persistence:
|
||||||
size: 2Gi
|
size: 2Gi
|
||||||
resources:
|
resources:
|
||||||
|
@ -59,7 +60,7 @@ appservice:
|
||||||
botDisplayname: WhatsApp bridge bot
|
botDisplayname: WhatsApp bridge bot
|
||||||
botAvatar: mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr
|
botAvatar: mxc://maunium.net/NeXNQarUbrlYBiPCpprYsRqr
|
||||||
|
|
||||||
# Authentication tokens for AS <-> HS communication. Autogenerated; do not modify.
|
# Authentication tokens for AS <-> HS communication.
|
||||||
asToken: SET TO RANDOM STRING
|
asToken: SET TO RANDOM STRING
|
||||||
hsToken: SET TO RANDOM STRING
|
hsToken: SET TO RANDOM STRING
|
||||||
|
|
||||||
|
@ -111,22 +112,26 @@ bridge:
|
||||||
"example.com": user
|
"example.com": user
|
||||||
"@admin:example.com": admin
|
"@admin:example.com": admin
|
||||||
|
|
||||||
relaybot:
|
relaybot:
|
||||||
# Whether or not relaybot support is enabled.
|
# Whether or not relaybot support is enabled.
|
||||||
enabled: false
|
enabled: false
|
||||||
# The management room for the bot. This is where all status notifications are posted and
|
# The management room for the bot. This is where all status notifications are posted and
|
||||||
# in this room, you can use `!wa <command>` instead of `!wa relaybot <command>`. Omitting
|
# in this room, you can use `!wa <command>` instead of `!wa relaybot <command>`. Omitting
|
||||||
# the command prefix completely like in user management rooms is not possible.
|
# the command prefix completely like in user management rooms is not possible.
|
||||||
management: !foo:example.com
|
management: !foo:example.com
|
||||||
# List of users to invite to all created rooms that include the relaybot.
|
# List of users to invite to all created rooms that include the relaybot.
|
||||||
invites: []
|
invites: []
|
||||||
# The formats to use when sending messages to WhatsApp via the relaybot.
|
# The formats to use when sending messages to WhatsApp via the relaybot.
|
||||||
message_formats:
|
message_formats:
|
||||||
m.text: "<b>{{ .Sender.Displayname }}</b>: {{ .Message }}"
|
m.text: "<b>{{ .Sender.Displayname }}</b>: {{ .Message }}"
|
||||||
m.notice: "<b>{{ .Sender.Displayname }}</b>: {{ .Message }}"
|
m.notice: "<b>{{ .Sender.Displayname }}</b>: {{ .Message }}"
|
||||||
m.emote: "* <b>{{ .Sender.Displayname }}</b> {{ .Message }}"
|
m.emote: "* <b>{{ .Sender.Displayname }}</b> {{ .Message }}"
|
||||||
m.file: "<b>{{ .Sender.Displayname }}</b> sent a file"
|
m.file: "<b>{{ .Sender.Displayname }}</b> sent a file"
|
||||||
m.image: "<b>{{ .Sender.Displayname }}</b> sent an image"
|
m.image: "<b>{{ .Sender.Displayname }}</b> sent an image"
|
||||||
m.audio: "<b>{{ .Sender.Displayname }}</b> sent an audio file"
|
m.audio: "<b>{{ .Sender.Displayname }}</b> sent an audio file"
|
||||||
m.video: "<b>{{ .Sender.Displayname }}</b> sent a video"
|
m.video: "<b>{{ .Sender.Displayname }}</b> sent a video"
|
||||||
m.location: "<b>{{ .Sender.Displayname }}</b> sent a location"
|
m.location: "<b>{{ .Sender.Displayname }}</b> sent a location"
|
||||||
|
|
||||||
|
logging:
|
||||||
|
timestamp_format: Jan _2, 2006 15:04:05
|
||||||
|
print_level: debug
|
||||||
|
|
Loading…
Reference in a new issue