mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
fix: use PodControllersAnnotation constant (#3448)
Signed-off-by: Charles-Edouard Brétéché <charled.breteche@gmail.com>
This commit is contained in:
parent
e5679bc6ff
commit
f263cbedca
2 changed files with 5 additions and 5 deletions
|
@ -220,22 +220,22 @@ func Test_GetRequestedControllers(t *testing.T) {
|
|||
},
|
||||
{
|
||||
name: "annotation-empty",
|
||||
meta: metav1.ObjectMeta{Annotations: map[string]string{"pod-policies.kyverno.io/autogen-controllers": ""}},
|
||||
meta: metav1.ObjectMeta{Annotations: map[string]string{kyverno.PodControllersAnnotation: ""}},
|
||||
expectedControllers: nil,
|
||||
},
|
||||
{
|
||||
name: "annotation-none",
|
||||
meta: metav1.ObjectMeta{Annotations: map[string]string{"pod-policies.kyverno.io/autogen-controllers": "none"}},
|
||||
meta: metav1.ObjectMeta{Annotations: map[string]string{kyverno.PodControllersAnnotation: "none"}},
|
||||
expectedControllers: []string{},
|
||||
},
|
||||
{
|
||||
name: "annotation-job",
|
||||
meta: metav1.ObjectMeta{Annotations: map[string]string{"pod-policies.kyverno.io/autogen-controllers": "Job"}},
|
||||
meta: metav1.ObjectMeta{Annotations: map[string]string{kyverno.PodControllersAnnotation: "Job"}},
|
||||
expectedControllers: []string{"Job"},
|
||||
},
|
||||
{
|
||||
name: "annotation-job-deployment",
|
||||
meta: metav1.ObjectMeta{Annotations: map[string]string{"pod-policies.kyverno.io/autogen-controllers": "Job,Deployment"}},
|
||||
meta: metav1.ObjectMeta{Annotations: map[string]string{kyverno.PodControllersAnnotation: "Job,Deployment"}},
|
||||
expectedControllers: []string{"Job", "Deployment"},
|
||||
},
|
||||
}
|
||||
|
|
|
@ -1246,7 +1246,7 @@ func jsonPatchOnPod(rule kyverno.Rule) bool {
|
|||
|
||||
func podControllerAutoGenExclusion(policy *kyverno.ClusterPolicy) bool {
|
||||
annotations := policy.GetAnnotations()
|
||||
val, ok := annotations["pod-policies.kyverno.io/autogen-controllers"]
|
||||
val, ok := annotations[kyverno.PodControllersAnnotation]
|
||||
reorderVal := strings.Split(strings.ToLower(val), ",")
|
||||
sort.Slice(reorderVal, func(i, j int) bool { return reorderVal[i] < reorderVal[j] })
|
||||
if ok && strings.ToLower(val) == "none" || reflect.DeepEqual(reorderVal, []string{"cronjob", "daemonset", "deployment", "job", "statefulset"}) == false {
|
||||
|
|
Loading…
Add table
Reference in a new issue