Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Granular and Extended Event Alerting #3

Closed
wants to merge 2 commits into from

Conversation

davidpristovnik
Copy link
Owner

fixes vmware-archive#105

This feature adds support to alert on specific event type per resource.
For example, to watch only create and update events on deployment resource, kubewatch.yaml should be
resource:
deployment:
watch: true
events:
create: true
update: true
delete: false
This also adds custom event type 'loadbalancercreate' to notify when there is a loadbalancer created for a service.
resource:
services:
watch: true
events:
create: true
update: true
delete: true
loadbalancercreate: true

fixes vmware-archive#105

This feature adds support to alert on specific event type per resource.
For example, to watch only create and update events on deployment resource, kubewatch.yaml should be
 resource:
  deployment:
    watch: true
    events:
      create: true
      update: true
      delete: false
This also adds custom event type 'loadbalancercreate' to notify when there is a loadbalancer created for a service.
 resource:
  services:
    watch: true
    events:
      create: true
      update: true
      delete: true
      loadbalancercreate: true
davidpristovnik pushed a commit that referenced this pull request Sep 19, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Granular and Extended Event Alerting
2 participants