-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug: ACM-5052, Policy gets shortly into non-compliant state
Solution: decode automatically converted stringData prior to evaluation Signed-off-by: Jeffrey Luo <jeluo@redhat.com>
- Loading branch information
Showing
3 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
// Copyright Contributors to the Open Cluster Management project | ||
|
||
package e2e | ||
|
||
import ( | ||
"strconv" | ||
|
||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
|
||
"open-cluster-management.io/config-policy-controller/test/utils" | ||
) | ||
|
||
const ( | ||
case32ConfigPolicyName string = "case32config" | ||
case32CreatePolicyYaml string = "../resources/case32_secret_stringdata/case32_create_secret.yaml" | ||
) | ||
|
||
var _ = Describe("Test converted stringData being decoded before comparison for Secrets", Ordered, func() { | ||
It("Config should be created properly on the managed cluster", func() { | ||
By("Creating " + case32ConfigPolicyName + " on managed") | ||
utils.Kubectl("apply", "-f", case32CreatePolicyYaml, "-n", testNamespace) | ||
cfg := utils.GetWithTimeout(clientManagedDynamic, gvrConfigPolicy, | ||
case32ConfigPolicyName, testNamespace, true, defaultTimeoutSeconds) | ||
Expect(cfg).NotTo(BeNil()) | ||
}) | ||
|
||
It("Verifies the config policy is initially compliant "+case32ConfigPolicyName+" in "+testNamespace, func() { | ||
By("Waiting for " + case32ConfigPolicyName + " to become Compliant for up to " + | ||
strconv.Itoa(defaultTimeoutSeconds) + " seconds") | ||
Eventually(func() interface{} { | ||
cfgplc := utils.GetWithTimeout( | ||
clientManagedDynamic, gvrConfigPolicy, | ||
case32ConfigPolicyName, testNamespace, | ||
true, defaultTimeoutSeconds, | ||
) | ||
|
||
return utils.GetComplianceState(cfgplc) | ||
}, defaultTimeoutSeconds, 1).Should(Equal("Compliant")) | ||
}) | ||
|
||
It("Verifies that a secret is created by "+case32ConfigPolicyName+" in openshift-config", func() { | ||
By("Grabbing " + "htpasswd-secret from namespace openshift-config") | ||
scrt := utils.GetWithTimeout( | ||
clientManagedDynamic, gvrSecret, "htpasswd-secret", testNamespace, true, defaultTimeoutSeconds, | ||
) | ||
|
||
Expect(scrt).NotTo(BeNil()) | ||
}) | ||
|
||
It("Verifies the config policy stays compliant "+case32ConfigPolicyName+" in "+testNamespace, func() { | ||
By("Checking the events on the configuration policy" + case32ConfigPolicyName) | ||
Consistently(func() int { | ||
eventlen := len(utils.GetMatchingEvents( | ||
clientManaged, testNamespace, | ||
case32ConfigPolicyName, case32ConfigPolicyName, | ||
"NonCompliant;", defaultTimeoutSeconds)) | ||
|
||
return eventlen | ||
}, defaultTimeoutSeconds, 5).Should(BeNumerically("<", 3)) | ||
}) | ||
|
||
AfterAll(func() { | ||
utils.Kubectl("delete", "configurationpolicy", case32ConfigPolicyName, "-n", testNamespace) | ||
utils.Kubectl("delete", "secret", "htpasswd-secret", "-n", testNamespace) | ||
utils.Kubectl("delete", "event", | ||
"--field-selector=involvedObject.name="+case32ConfigPolicyName, "-n", "managed") | ||
}) | ||
}) |
21 changes: 21 additions & 0 deletions
21
test/resources/case32_secret_stringdata/case32_create_secret.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
apiVersion: policy.open-cluster-management.io/v1 | ||
kind: ConfigurationPolicy | ||
metadata: | ||
name: case32config | ||
spec: | ||
object-templates: | ||
- complianceType: musthave | ||
objectDefinition: | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: htpasswd-secret | ||
namespace: managed | ||
stringData: | ||
htpasswd: | | ||
alice:$QGJM$2qku.rrSEWRFD/tjOf.dZQ1q.RaR5tTmfNyZn0$1uI6eDx/Ont37ws | ||
bob:S1KPovd0N/iDb9$dlTBH7weXG5rQV$5EPf9KrbJjw2HXy35ujhPw2y0$SIto | ||
cadence:W$MeWCMWuKi0ApUyZ8byG5$DNL.3FD$c72kFhyZIX8Sf0yJH2AEOGFsRgEHJ | ||
pruneObjectBehavior: None | ||
remediationAction: enforce | ||
severity: medium |