mirror of
https://github.com/k8sgpt-ai/k8sgpt.git
synced 2025-05-11 09:34:43 +00:00
* chore: change license to Apache-2 Signed-off-by: Thomas Schuetz <thomas.schuetz@t-sc.eu>
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
/*
|
|
Copyright 2023 The K8sGPT Authors.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package analyzer
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/k8sgpt-ai/k8sgpt/pkg/kubernetes"
|
|
v1 "k8s.io/api/core/v1"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
)
|
|
|
|
func FetchLatestEvent(ctx context.Context, kubernetesClient *kubernetes.Client, namespace string, name string) (*v1.Event, error) {
|
|
|
|
// get the list of events
|
|
events, err := kubernetesClient.GetClient().CoreV1().Events(namespace).List(ctx,
|
|
metav1.ListOptions{
|
|
FieldSelector: "involvedObject.name=" + name,
|
|
})
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
// find most recent event
|
|
var latestEvent *v1.Event
|
|
for _, event := range events.Items {
|
|
if latestEvent == nil {
|
|
latestEvent = &event
|
|
}
|
|
if event.LastTimestamp.After(latestEvent.LastTimestamp.Time) {
|
|
latestEvent = &event
|
|
}
|
|
}
|
|
return latestEvent, nil
|
|
}
|