Breaking changes
The events api is updated to the newer k8s api events object (released in k8s v1.19)
Make sure to add this to your service account for kubewatch to access the new events API
- apiGroups:
- "events.k8s.io"
resources:
- events
verbs:
- get
- list
- watch
To use the old events object add the following changes in your values file:
coreevent: true
event: false
What's Changed
- updated events object for newer k8s support by @Avi-Robusta in #45
New Contributors
- @Avi-Robusta made their first contribution in #45
Full Changelog: v2.4.0...v2.5.0