Return errors instead of panic

This commit is contained in:
Sam Stoelinga 2022-07-21 14:47:26 -07:00
parent 75575b9f98
commit 872b97fc45
3 changed files with 33 additions and 25 deletions

View File

@ -42,7 +42,10 @@ var MigrateCmd = &cobra.Command{
Suggested Pod Security Standard for each namespace. In addition, it also
checks whether a PSP object is mutating pods in every namespace.`,
Run: func(cmd *cobra.Command, args []string) {
pods := GetPods()
pods, err := GetPods()
if err != nil {
log.Fatalln("Error getting pods", err.Error())
}
fmt.Println("Checking if any pods are being mutated by a PSP object")
mutatedPods := make([]v1.Pod, 0)
for _, pod := range pods.Items {
@ -71,7 +74,12 @@ var MigrateCmd = &cobra.Command{
fmt.Printf("Please re-run the tool again after you've modified your PodSpecs.\n")
os.Exit(1)
}
for _, namespace := range GetNamespaces().Items {
namespaces, err := GetNamespaces()
if err != nil {
log.Fatalln("Error getting namespaces:", err.Error())
}
for _, namespace := range namespaces.Items {
// Check if namespace already has psa labels
if NamespaceHasPSALabels(&namespace) {
log.Printf("The namespace %v already has PSA labels set. So skipping....\n", namespace.Name)
@ -80,7 +88,13 @@ var MigrateCmd = &cobra.Command{
continue
}
suggestions := make(map[string]bool)
pods := GetPodsByNamespace(namespace.Name).Items
podList, err := GetPodsByNamespace(namespace.Name)
if err != nil {
log.Printf("Error getting pods for namespace %v. Error: %v\n", namespace.Name, err.Error())
log.Println("Continuing with next namespace")
continue
}
pods := podList.Items
if len(pods) == 0 {
fmt.Printf("There are no pods running in namespace %v. Skipping and going to the next one.\n", namespace.Name)
continue
@ -121,7 +135,9 @@ var MigrateCmd = &cobra.Command{
if control == skipStr {
continue
}
ApplyPSSLevel(&namespace, suggested, control)
if err := ApplyPSSLevel(&namespace, suggested, control); err != nil {
log.Printf("Error applying %v on namespace %v. Error: %v\n", suggested, namespace.Name, err.Error())
}
fmt.Printf("Applied pod security level %v on namespace %v in %v control mode\n", suggested, namespace.Name, control)
fmt.Printf("Review the labels by running `kubectl get ns %v -o yaml`\n", namespace.Name)
}

View File

@ -88,7 +88,10 @@ func initMutating() {
Run: func(cmd *cobra.Command, args []string) {
table := tablewriter.NewWriter(os.Stdout)
table.SetHeader([]string{"Name", "Namespace", "Mutated", "PSP"})
pods := GetPods()
pods, err := GetPods()
if err != nil {
log.Fatalln("Error getting pods", err.Error())
}
fmt.Printf("There are %d pods in the cluster\n", len(pods.Items))
for _, pod := range pods.Items {
if pspName, ok := pod.ObjectMeta.Annotations["kubernetes.io/psp"]; ok {

View File

@ -35,39 +35,28 @@ func IgnoreNamespaceSelector(field string) string {
return fields.AndSelectors(selectors...).String()
}
func GetPods() *v1.PodList {
func GetPods() (*v1.PodList, error) {
listOptions := metav1.ListOptions{FieldSelector: IgnoreNamespaceSelector("metadata.namespace")}
pods, err := clientset.CoreV1().Pods("").List(context.TODO(), listOptions)
if err != nil {
panic(err.Error())
}
return pods
return pods, err
}
func GetPodsByNamespace(namespace string) *v1.PodList {
func GetPodsByNamespace(namespace string) (*v1.PodList, error) {
listOptions := metav1.ListOptions{}
pods, err := clientset.CoreV1().Pods(namespace).List(context.TODO(), listOptions)
if err != nil {
panic(err.Error())
}
return pods
return pods, err
}
func GetNamespaces() *v1.NamespaceList {
func GetNamespaces() (*v1.NamespaceList, error) {
listOptions := metav1.ListOptions{FieldSelector: IgnoreNamespaceSelector("metadata.name")}
namespaces, err := clientset.CoreV1().Namespaces().List(context.TODO(), listOptions)
if err != nil {
panic(err.Error())
}
return namespaces
return namespaces, err
}
func ApplyPSSLevel(namespace *v1.Namespace, level psaApi.Level, control string) {
func ApplyPSSLevel(namespace *v1.Namespace, level psaApi.Level, control string) error {
namespace.Labels["pod-security.kubernetes.io/"+control] = string(level)
namespace, err := clientset.CoreV1().Namespaces().Update(context.TODO(), namespace, metav1.UpdateOptions{})
if err != nil {
panic(err.Error())
}
_, err := clientset.CoreV1().Namespaces().Update(context.TODO(), namespace, metav1.UpdateOptions{})
return err
}
func NamespaceHasPSALabels(namespace *v1.Namespace) bool {