-
Notifications
You must be signed in to change notification settings - Fork 683
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Validating/Mutating webhook analyzer (#548)
* feat: add Validating/Mutating webhook analyzer Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com> * change conditions Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com> * fix: use GetClient to get pods and mask pod name Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com> * fix: add new cases in util.GetParent Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com> --------- Signed-off-by: Rakshit Gondwal <rakshitgondwal3@gmail.com> Co-authored-by: Aris Boutselis <aris.boutselis@senseon.io>
- Loading branch information
1 parent
9dcab94
commit 750a10d
Showing
5 changed files
with
246 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
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,111 @@ | ||
/* | ||
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" | ||
"fmt" | ||
|
||
"github.com/k8sgpt-ai/k8sgpt/pkg/common" | ||
"github.com/k8sgpt-ai/k8sgpt/pkg/kubernetes" | ||
"github.com/k8sgpt-ai/k8sgpt/pkg/util" | ||
v1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
) | ||
|
||
type MutatingWebhookAnalyzer struct{} | ||
|
||
func (MutatingWebhookAnalyzer) Analyze(a common.Analyzer) ([]common.Result, error) { | ||
|
||
kind := "MutatingWebhookConfiguration" | ||
apiDoc := kubernetes.K8sApiReference{ | ||
Kind: kind, | ||
ApiVersion: schema.GroupVersion{ | ||
Group: "apps", | ||
Version: "v1", | ||
}, | ||
OpenapiSchema: a.OpenapiSchema, | ||
} | ||
|
||
AnalyzerErrorsMetric.DeletePartialMatch(map[string]string{ | ||
"analyzer_name": kind, | ||
}) | ||
|
||
mutatingWebhooks, err := a.Client.GetClient().AdmissionregistrationV1().MutatingWebhookConfigurations().List(context.Background(), v1.ListOptions{}) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
var preAnalysis = map[string]common.PreAnalysis{} | ||
|
||
for _, webhookConfig := range mutatingWebhooks.Items { | ||
for _, webhook := range webhookConfig.Webhooks { | ||
var failures []common.Failure | ||
|
||
svc := webhook.ClientConfig.Service | ||
pods, err := a.Client.GetClient().CoreV1().Pods(a.Namespace).List(context.Background(), v1.ListOptions{}) | ||
if err != nil { | ||
return nil, err | ||
} | ||
for _, pod := range pods.Items { | ||
if pod.Name != svc.Name || pod.Namespace != svc.Namespace || pod.Status.Phase != "Running" { | ||
doc := apiDoc.GetApiDocV2("spec.webhook") | ||
|
||
failures = append(failures, common.Failure{ | ||
Text: fmt.Sprintf( | ||
"Mutating Webhook (%s) is pointing to an inactive receiver pod (%s)", | ||
webhook.Name, | ||
pod.Name, | ||
), | ||
KubernetesDoc: doc, | ||
Sensitive: []common.Sensitive{ | ||
{ | ||
Unmasked: webhookConfig.Namespace, | ||
Masked: util.MaskString(webhookConfig.Namespace), | ||
}, | ||
{ | ||
Unmasked: webhook.Name, | ||
Masked: util.MaskString(webhook.Name), | ||
}, | ||
{ | ||
Unmasked: pod.Name, | ||
Masked: util.MaskString(pod.Name), | ||
}, | ||
}, | ||
}) | ||
} | ||
if len(failures) > 0 { | ||
preAnalysis[fmt.Sprintf("%s/%s", webhookConfig.Namespace, webhook.Name)] = common.PreAnalysis{ | ||
MutatingWebhook: webhookConfig, | ||
FailureDetails: failures, | ||
} | ||
AnalyzerErrorsMetric.WithLabelValues(kind, webhook.Name, webhookConfig.Namespace).Set(float64(len(failures))) | ||
} | ||
} | ||
} | ||
} | ||
for key, value := range preAnalysis { | ||
var currentAnalysis = common.Result{ | ||
Kind: kind, | ||
Name: key, | ||
Error: value.FailureDetails, | ||
} | ||
|
||
parent, _ := util.GetParent(a.Client, value.MutatingWebhook.ObjectMeta) | ||
currentAnalysis.ParentObject = parent | ||
a.Results = append(a.Results, currentAnalysis) | ||
} | ||
|
||
return a.Results, nil | ||
} |
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,110 @@ | ||
/* | ||
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" | ||
"fmt" | ||
|
||
"github.com/k8sgpt-ai/k8sgpt/pkg/common" | ||
"github.com/k8sgpt-ai/k8sgpt/pkg/kubernetes" | ||
"github.com/k8sgpt-ai/k8sgpt/pkg/util" | ||
v1 "k8s.io/apimachinery/pkg/apis/meta/v1" | ||
"k8s.io/apimachinery/pkg/runtime/schema" | ||
) | ||
|
||
type ValidatingWebhookAnalyzer struct{} | ||
|
||
func (ValidatingWebhookAnalyzer) Analyze(a common.Analyzer) ([]common.Result, error) { | ||
|
||
kind := "ValidatingWebhookConfgiguration" | ||
apiDoc := kubernetes.K8sApiReference{ | ||
Kind: kind, | ||
ApiVersion: schema.GroupVersion{ | ||
Group: "apps", | ||
Version: "v1", | ||
}, | ||
OpenapiSchema: a.OpenapiSchema, | ||
} | ||
|
||
AnalyzerErrorsMetric.DeletePartialMatch(map[string]string{ | ||
"analyzer_name": kind, | ||
}) | ||
|
||
validatingWebhooks, err := a.Client.GetClient().AdmissionregistrationV1().ValidatingWebhookConfigurations().List(context.Background(), v1.ListOptions{}) | ||
if err != nil { | ||
return nil, err | ||
} | ||
var preAnalysis = map[string]common.PreAnalysis{} | ||
|
||
for _, webhookConfig := range validatingWebhooks.Items { | ||
for _, webhook := range webhookConfig.Webhooks { | ||
var failures []common.Failure | ||
|
||
svc := webhook.ClientConfig.Service | ||
pods, err := a.Client.GetClient().CoreV1().Pods(a.Namespace).List(context.Background(), v1.ListOptions{}) | ||
if err != nil { | ||
return nil, err | ||
} | ||
for _, pod := range pods.Items { | ||
if pod.Name != svc.Name || pod.Namespace != svc.Namespace || pod.Status.Phase != "Running" { | ||
doc := apiDoc.GetApiDocV2("spec.webhook") | ||
|
||
failures = append(failures, common.Failure{ | ||
Text: fmt.Sprintf( | ||
"Validating Webhook (%s) is pointing to an inactive receiver pod (%s)", | ||
webhook.Name, | ||
pod.Name, | ||
), | ||
KubernetesDoc: doc, | ||
Sensitive: []common.Sensitive{ | ||
{ | ||
Unmasked: webhookConfig.Namespace, | ||
Masked: util.MaskString(webhookConfig.Namespace), | ||
}, | ||
{ | ||
Unmasked: webhook.Name, | ||
Masked: util.MaskString(webhook.Name), | ||
}, | ||
{ | ||
Unmasked: pod.Name, | ||
Masked: util.MaskString(pod.Name), | ||
}, | ||
}, | ||
}) | ||
} | ||
if len(failures) > 0 { | ||
preAnalysis[fmt.Sprintf("%s/%s", webhookConfig.Namespace, webhook.Name)] = common.PreAnalysis{ | ||
ValidatingWebhook: webhookConfig, | ||
FailureDetails: failures, | ||
} | ||
AnalyzerErrorsMetric.WithLabelValues(kind, webhook.Name, webhookConfig.Namespace).Set(float64(len(failures))) | ||
} | ||
} | ||
} | ||
} | ||
for key, value := range preAnalysis { | ||
var currentAnalysis = common.Result{ | ||
Kind: kind, | ||
Name: key, | ||
Error: value.FailureDetails, | ||
} | ||
|
||
parent, _ := util.GetParent(a.Client, value.ValidatingWebhook.ObjectMeta) | ||
currentAnalysis.ParentObject = parent | ||
a.Results = append(a.Results, currentAnalysis) | ||
} | ||
|
||
return a.Results, nil | ||
} |
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
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