This PR contains the following updates: | Package | Update | Change | |---|---|---| | [twinproduction/gatus](https://redirect.github.com/TwiN/gatus) | minor | `9752556` -> `1236257` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes <details> <summary>TwiN/gatus (twinproduction/gatus)</summary> ### [`v5.19.0`](https://redirect.github.com/TwiN/gatus/releases/tag/v5.19.0) [Compare Source](https://redirect.github.com/TwiN/gatus/compare/v5.18.1...v5.19.0) #### What's Changed - feat(alerting): Add HomeAssistant support by [@​volodimyr](https://redirect.github.com/volodimyr) in [https://github.com/TwiN/gatus/pull/1125](https://redirect.github.com/TwiN/gatus/pull/1125) - feat(alerting): Add ilert alert provider by [@​DaTiMy](https://redirect.github.com/DaTiMy) in [https://github.com/TwiN/gatus/pull/1082](https://redirect.github.com/TwiN/gatus/pull/1082) - docs: Add NixOS example by [@​pizzapim](https://redirect.github.com/pizzapim) in [https://github.com/TwiN/gatus/pull/1131](https://redirect.github.com/TwiN/gatus/pull/1131) #### New Contributors - [@​pizzapim](https://redirect.github.com/pizzapim) made their first contribution in [https://github.com/TwiN/gatus/pull/1131](https://redirect.github.com/TwiN/gatus/pull/1131) - [@​volodimyr](https://redirect.github.com/volodimyr) made their first contribution in [https://github.com/TwiN/gatus/pull/1125](https://redirect.github.com/TwiN/gatus/pull/1125) - [@​DaTiMy](https://redirect.github.com/DaTiMy) made their first contribution in [https://github.com/TwiN/gatus/pull/1082](https://redirect.github.com/TwiN/gatus/pull/1082) **Full Changelog**: https://github.com/TwiN/gatus/compare/v5.18.1...v5.19.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
46 lines
988 B
YAML
46 lines
988 B
YAML
image:
|
|
repository: twinproduction/gatus
|
|
pullPolicy: IfNotPresent
|
|
tag: v5.19.0@sha256:12362572b78c1bb6f234248de33392a393f7e604d94779e3086ec2dbba1bedf3
|
|
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 8080
|
|
targetPort: 8080
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
mountPath: /config/config.yaml
|
|
subPath: config.yaml
|
|
readOnly: true
|
|
type: "configmap"
|
|
objectName: config
|
|
|
|
configmap:
|
|
config:
|
|
enabled: true
|
|
data:
|
|
config.yaml: |
|
|
{{- if .Values.cnpg.main.enabled }}
|
|
storage:
|
|
type: postgres
|
|
path: {{ (printf "%s?client_encoding=utf8" (.Values.cnpg.main.creds.std | trimAll "\"")) | quote }}
|
|
{{- end }}
|
|
|
|
endpoints:
|
|
- name: example
|
|
url: https://example.org
|
|
interval: 60s
|
|
conditions:
|
|
- "[STATUS] == 200"
|
|
- "[BODY] == pat(*<h1>Example Domain</h1>*)"
|
|
|
|
cnpg:
|
|
main:
|
|
enabled: true
|
|
user: gatus
|
|
database: gatus
|