Skip to content

New Kubernetes events support

Compare
Choose a tag to compare
@Avi-Robusta Avi-Robusta released this 16 May 06:59
· 28 commits to master since this release
7ba4d56

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

New Contributors

Full Changelog: v2.4.0...v2.5.0