stackspout/apps/status/gatus/gatus-values-configmap.yaml

38 lines
1.1 KiB
YAML
Raw Normal View History

2024-02-20 10:50:05 +00:00
apiVersion: v1
kind: ConfigMap
metadata:
name: stackspin-gatus-values
namespace: stackspout
data:
values.yaml: |
# https://github.com/minicloudlabs/helm-charts/blob/main/charts/gatus/values.yaml
# TODO verify structure matches chart
ingress:
enabled: true
annotations:
kubernetes.io/tls-acme: "true"
hosts: [ "${gatus_domain}" ]
tls:
- secretName: gatus-tls
hosts:
- "${gatus_domain}"
security:
oidc:
issuer-url: "https://${hydra_domain}"
redirect-url: "https://${gatus_domain}/authorization-code/callback"
client-id: "${client_id}"
client-secret: "${client_secret}"
scopes: ["openid"]
#autoDiscoverUrl: 'https://${hydra_domain}/.well-known/openid-configuration'
# TODO Adjust gatus Mailing config
# mailer:
# enabled: "${outgoing_mail_enabled}"
# host: "${outgoing_mail_smtp_host}"
# port: "${outgoing_mail_smtp_port}"
# username: "${outgoing_mail_smtp_user}"
# password: "${outgoing_mail_smtp_password}"
# fromemail: "${outgoing_mail_from_address}"