mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00
70 lines
1.9 KiB
Go
70 lines
1.9 KiB
Go
/*
|
|
Copyright 2018 The CDI 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 controller
|
|
|
|
import (
|
|
"context"
|
|
|
|
secv1 "github.com/openshift/api/security/v1"
|
|
|
|
"k8s.io/apimachinery/pkg/api/meta"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/controller"
|
|
"sigs.k8s.io/controller-runtime/pkg/handler"
|
|
"sigs.k8s.io/controller-runtime/pkg/reconcile"
|
|
"sigs.k8s.io/controller-runtime/pkg/source"
|
|
|
|
cdiv1alpha1 "kubevirt.io/containerized-data-importer/pkg/apis/core/v1alpha1"
|
|
)
|
|
|
|
func (r *ReconcileCDI) watchSecurityContextConstraints(c controller.Controller) error {
|
|
err := c.Watch(
|
|
&source.Kind{Type: &secv1.SecurityContextConstraints{}},
|
|
&handler.EnqueueRequestsFromMapFunc{
|
|
ToRequests: handler.ToRequestsFunc(func(obj handler.MapObject) []reconcile.Request {
|
|
var rrs []reconcile.Request
|
|
cdiList := &cdiv1alpha1.CDIList{}
|
|
|
|
if err := r.client.List(context.TODO(), &client.ListOptions{}, cdiList); err != nil {
|
|
log.Error(err, "Error listing all CDI objects")
|
|
return nil
|
|
}
|
|
|
|
for _, cdi := range cdiList.Items {
|
|
rr := reconcile.Request{
|
|
NamespacedName: types.NamespacedName{Namespace: cdi.Namespace, Name: cdi.Name},
|
|
}
|
|
rrs = append(rrs, rr)
|
|
}
|
|
|
|
return rrs
|
|
}),
|
|
})
|
|
if err != nil {
|
|
if meta.IsNoMatchError(err) {
|
|
log.Info("Not watching SecurityContextConstraints")
|
|
return nil
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|