mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
* initial commit * background policy validation * correct message * skip non-background policy process for add/update * add Generate Request CR * generate Request Generator Initial * test generate request CR generation * initial commit gr generator * generate controller initial framework * add crd for generate request * gr cleanup controller initial commit * cleanup controller initial * generate mid-commit * generate rule processing * create PV on generate error * embed resource type * testing phase 1- generate resources with variable substitution * fix tests * comment broken test #586 * add printer column for state * return if existing resource for clone * set resync time to 2 mins & remove resource version check in update handler for gr * generate events for reporting * fix logs * cleanup * CR fixes * fix logs
30 lines
891 B
Go
30 lines
891 B
Go
package policy
|
|
|
|
import (
|
|
"github.com/golang/glog"
|
|
"k8s.io/apimachinery/pkg/labels"
|
|
)
|
|
|
|
func (pc *PolicyController) removeResourceWebhookConfiguration() error {
|
|
var err error
|
|
// get all existing policies
|
|
policies, err := pc.pLister.List(labels.NewSelector())
|
|
if err != nil {
|
|
glog.V(4).Infof("failed to list policies: %v", err)
|
|
return err
|
|
}
|
|
|
|
if len(policies) == 0 {
|
|
glog.V(4).Info("no policies loaded, removing resource webhook configuration if one exists")
|
|
return pc.resourceWebhookWatcher.RemoveResourceWebhookConfiguration()
|
|
}
|
|
|
|
glog.V(4).Info("no policies with mutating or validating webhook configurations, remove resource webhook configuration if one exists")
|
|
return pc.resourceWebhookWatcher.RemoveResourceWebhookConfiguration()
|
|
|
|
return nil
|
|
}
|
|
|
|
func (pc *PolicyController) registerResourceWebhookConfiguration() {
|
|
pc.resourceWebhookWatcher.RegisterResourceWebhook()
|
|
}
|