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

wip: bulk k8saudit plugins update #582

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions plugins/k8saudit-eks/pkg/k8sauditeks/k8sauditeks.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: Apache-2.0
/*
Copyright (C) 2024 The Falco Authors.
Copyright (C) 2025 The Falco Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -63,7 +63,7 @@ func (k *Plugin) Info() *plugins.Info {
Name: pluginName,
Description: "Read Kubernetes Audit Events for EKS from Cloudwatch Logs",
Contact: "github.com/falcosecurity/plugins",
Version: "0.6.0",
Version: "0.7.0",
EventSource: "k8s_audit",
}
}
Expand Down
4 changes: 2 additions & 2 deletions plugins/k8saudit-gke/pkg/k8sauditgke/k8sauditgke.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: Apache-2.0
/*
Copyright (C) 2024 The Falco Authors.
Copyright (C) 2025 The Falco Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -34,7 +34,7 @@ const (
PluginName = "k8saudit-gke"
PluginDescription = "Read Kubernetes Audit Events for GKE from a Pub/Sub subscription"
PluginContact = "github.com/falcosecurity/plugins"
PluginVersion = "0.4.1"
PluginVersion = "0.5.0"
PluginEventSource = "k8s_audit"
)

Expand Down
2 changes: 1 addition & 1 deletion plugins/k8saudit/pkg/k8saudit/k8saudit.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (k *Plugin) Info() *plugins.Info {
Name: pluginName,
Description: "Read Kubernetes Audit Events and monitor Kubernetes Clusters",
Contact: "github.com/falcosecurity/plugins",
Version: "0.11.0",
Version: "0.12.0",
EventSource: "k8s_audit",
}
}
Expand Down
Loading
Loading