-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add sample config referenced in the docs (#190)
Signed-off-by: Prasad Ghangal <prasad.ghangal@gmail.com>
- Loading branch information
1 parent
dc29e0c
commit 302f58c
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
config: | ||
## Resources you want to watch | ||
resources: | ||
- name: pod # Name of the resources e.g pod, deployment, ingress, etc. | ||
namespaces: # List of namespaces, "all" will watch all the namespaces | ||
include: | ||
- all | ||
ignore: | ||
- kube-system | ||
events: # List of lifecycle events you want to receive, e.g create, update, delete, error OR all | ||
- create | ||
- update | ||
- delete | ||
- error | ||
- name: job | ||
namespaces: | ||
include: | ||
- all | ||
ignore: | ||
- kube-system | ||
events: | ||
- all | ||
- name: service | ||
namespaces: | ||
include: | ||
- all | ||
ignore: | ||
- kube-system | ||
events: | ||
- create | ||
- delete | ||
- error | ||
- name: deployment | ||
namespaces: | ||
include: | ||
- all | ||
events: | ||
- create | ||
- delete | ||
- error | ||
- name: statefulset | ||
namespaces: | ||
include: | ||
- all | ||
events: | ||
- create | ||
- delete | ||
- error | ||
- name: ingress | ||
namespaces: | ||
include: | ||
- all | ||
events: | ||
- create | ||
- delete | ||
- error |