Skip to content

Commit

Permalink
fix: non required props
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurice Faber committed Nov 29, 2020
1 parent 85df7ee commit b6bac19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .demo/env/secrets.settings.yaml
Expand Up @@ -24,12 +24,12 @@ home:
slack:
url: https://hooks.slack.com/services/id
email:
criticals: admins@yourdoma.in
critical: admins@yourdoma.in
alerts:
slack:
url: https://hooks.slack.com/services/id
email:
smtp:
smarthost: some.smtp.host:587
nonCriticals: admins@yourdoma.in
criticals: admins@yourdoma.in
nonCritical: admins@yourdoma.in
critical: admins@yourdoma.in
5 changes: 3 additions & 2 deletions values-schema.yaml
Expand Up @@ -225,7 +225,6 @@ definitions:
type: string
default: mon-otomi
description: 'The Slack channel for critical notifications.'
required: [url]
msteams:
type: object
additionalProperties: false
Expand All @@ -236,9 +235,9 @@ definitions:
lowPrio:
type: string
description: The high prio web hook
required: [highPrio, lowPrio]
email:
type: object
additionalProperties: false
properties:
nonCritical:
description: One or more email addresses (comma separated) for non-critical events.
Expand All @@ -247,6 +246,8 @@ definitions:
description: One or more email addresses (comma separated) for critical events.
'$ref': '#/definitions/email'
smtp:
type: object
additionalProperties: false
properties:
from:
description: The "from" address. Defaults to alerts@$clusterDomain.
Expand Down

0 comments on commit b6bac19

Please sign in to comment.