I'm building a Kubernetes deployment for the aprise api.
Where should I add settings like global parameters? so I can change verify_cert to False, etc?
I made a apprise configmap and mount it at /etc/apprise.yaml but it does not seem to change the behaviour of (for instance) cert_verify ?
the content of that file is:
version: 1
asset:
c#
# Branding
#
# A shortened identify to describe the application
app_id: Apprise
# A default description of the notification (used in some upstream services)
app_desc: Apprise Notifications
# Where can people go to get more information on your application?
app_url: https://github.com/caronc/apprise
#
# Behaviour defaults
#
cert_verify: False
# notifications are issued sequentially if this is set to false (default = true)
async_mode: true
# Convert \r or \n into their actual <CR> and <LF> characters when processing body string
# (default = false)
interpret_escapes: false
# credentials are protected when written to logging (default = true)
secure_logging: true
# Encoding used when reading configuration from disk
encoding: utf-8
#
# Themes
#
# The default theme used when resolving icons
theme: default
# Optionaly override icon URL paths (advanced)
# Defaults are pullled from:
# http://github.com/caronc/apprise/tree/master/apprise/assets/themes/default
image_url_mask: https://example.local/assets/themes/{THEME}/apprise-{TYPE}-{XY}{EXTENSION}
image_url_logo: https://example.local/assets/themes/{THEME}/apprise-logo.png
image_path_mask: /apprise/installation/assets/themes/{THEME}/apprise-{TYPE}-{XY}{EXTENSION}
# Let Apprise know in advance what you will be feeding it;
# Values are:
# - null: (default) pass content along as is
# - "text": content being passed in is in a "text" format (default for CLI tool)
# - "html": content being passed in is HTML
# - "markdown": content being provided is in Markdown format.
body_format: null
urls:
- mosts://host/token
tag: mthing
I'm building a Kubernetes deployment for the aprise api.
Where should I add settings like global parameters? so I can change
verify_certto False, etc?I made a apprise configmap and mount it at
/etc/apprise.yamlbut it does not seem to change the behaviour of (for instance)cert_verify?the content of that file is: