mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-31 03:45:17 +00:00
add best_practices scenario_mutate_safe-to-evict
This commit is contained in:
parent
764d0fede2
commit
489e55d6c3
5 changed files with 98 additions and 3 deletions
|
@ -69,7 +69,7 @@ func processOverlay(rule kyverno.Rule, resource unstructured.Unstructured) (resp
|
||||||
|
|
||||||
// rule application succesfuly
|
// rule application succesfuly
|
||||||
response.Success = true
|
response.Success = true
|
||||||
response.Message = fmt.Sprintf("succesfully process overlay")
|
response.Message = fmt.Sprintf("successfully processed overlay")
|
||||||
response.Patches = patches
|
response.Patches = patches
|
||||||
// apply the patches to the resource
|
// apply the patches to the resource
|
||||||
return response, patchedResource
|
return response, patchedResource
|
||||||
|
|
|
@ -947,3 +947,96 @@ func TestProcessOverlayPatches_insertWithCondition(t *testing.T) {
|
||||||
|
|
||||||
compareJSONAsMap(t, expectedResult, doc)
|
compareJSONAsMap(t, expectedResult, doc)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestProcessOverlayPatches_InsertIfNotPresentWithConditions(t *testing.T) {
|
||||||
|
overlayRaw := []byte(`
|
||||||
|
{
|
||||||
|
"metadata": {
|
||||||
|
"annotations": {
|
||||||
|
"+(cluster-autoscaler.kubernetes.io/safe-to-evict)": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"volumes": [
|
||||||
|
{
|
||||||
|
"(emptyDir)": {}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}`)
|
||||||
|
|
||||||
|
resourceRaw := []byte(`
|
||||||
|
{
|
||||||
|
"apiVersion": "v1",
|
||||||
|
"kind": "Pod",
|
||||||
|
"metadata": {
|
||||||
|
"name": "pod-with-emptydir"
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"containers": [
|
||||||
|
{
|
||||||
|
"image": "k8s.gcr.io/test-webserver",
|
||||||
|
"name": "test-container",
|
||||||
|
"volumeMounts": [
|
||||||
|
{
|
||||||
|
"mountPath": "/cache",
|
||||||
|
"name": "cache-volume"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"volumes": [
|
||||||
|
{
|
||||||
|
"name": "cache-volume",
|
||||||
|
"emptyDir": {}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}`)
|
||||||
|
|
||||||
|
var resource, overlay interface{}
|
||||||
|
|
||||||
|
json.Unmarshal(resourceRaw, &resource)
|
||||||
|
json.Unmarshal(overlayRaw, &overlay)
|
||||||
|
|
||||||
|
patches, err := processOverlayPatches(resource, overlay)
|
||||||
|
assert.NilError(t, err)
|
||||||
|
assert.Assert(t, len(patches) != 0)
|
||||||
|
|
||||||
|
doc, err := ApplyPatches(resourceRaw, patches)
|
||||||
|
assert.NilError(t, err)
|
||||||
|
|
||||||
|
expectedResult := []byte(`
|
||||||
|
{
|
||||||
|
"apiVersion": "v1",
|
||||||
|
"kind": "Pod",
|
||||||
|
"metadata": {
|
||||||
|
"name": "pod-with-emptydir",
|
||||||
|
"annotations": {
|
||||||
|
"cluster-autoscaler.kubernetes.io/safe-to-evict": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"spec": {
|
||||||
|
"containers": [
|
||||||
|
{
|
||||||
|
"image": "k8s.gcr.io/test-webserver",
|
||||||
|
"name": "test-container",
|
||||||
|
"volumeMounts": [
|
||||||
|
{
|
||||||
|
"mountPath": "/cache",
|
||||||
|
"name": "cache-volume"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"volumes": [
|
||||||
|
{
|
||||||
|
"name": "cache-volume",
|
||||||
|
"emptyDir": {}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}`)
|
||||||
|
|
||||||
|
compareJSONAsMap(t, expectedResult, doc)
|
||||||
|
}
|
||||||
|
|
|
@ -2,6 +2,8 @@ apiVersion: v1
|
||||||
kind: Pod
|
kind: Pod
|
||||||
metadata:
|
metadata:
|
||||||
name: pod-with-emptydir
|
name: pod-with-emptydir
|
||||||
|
annotations:
|
||||||
|
cluster-autoscaler.kubernetes.io/safe-to-evict: true
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- image: k8s.gcr.io/test-webserver
|
- image: k8s.gcr.io/test-webserver
|
||||||
|
|
|
@ -16,7 +16,7 @@ expected:
|
||||||
- name: add-memory-limit
|
- name: add-memory-limit
|
||||||
type: Mutation
|
type: Mutation
|
||||||
success: true
|
success: true
|
||||||
message: succesfully process overlay
|
message: successfully processed overlay
|
||||||
validation:
|
validation:
|
||||||
policyresponse:
|
policyresponse:
|
||||||
policy: policy-qos
|
policy: policy-qos
|
||||||
|
|
|
@ -16,4 +16,4 @@ expected:
|
||||||
- name: add-safe-to-evict-annotation
|
- name: add-safe-to-evict-annotation
|
||||||
type: Mutation
|
type: Mutation
|
||||||
success: true
|
success: true
|
||||||
message: "succesfully processed overlay"
|
message: "successfully processed overlay"
|
Loading…
Add table
Reference in a new issue