forked from argoproj/argo-cd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Policy/policy.open-cluster-management.io health check is broken (a…
…rgoproj#20108) (argoproj#20109) Tried using the health check as listed here but it gave error: | error setting app health: failed to get resource health for "Policy" with name "XXXX" in namespace "local-cluster": <string>:35: invalid value (nil) at index 1 in table for concat stack traceback: [G]: in function 'concat' <string>:35: in main chunk [G]: ? This change fixes the error by updating how the noncompliant clusters are tracked and counted to use latest Lua recommendations. Signed-off-by: Ian Tewksbury <[email protected]> Signed-off-by: austin5219 <[email protected]>
- Loading branch information
1 parent
6f7a826
commit cfdb9ba
Showing
2 changed files
with
92 additions
and
4 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
88 changes: 88 additions & 0 deletions
88
...ster-management.io/Policy/testdata/degraded_replicated_compliant_before_noncompliant.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,88 @@ | ||
apiVersion: policy.open-cluster-management.io/v1 | ||
kind: Policy | ||
metadata: | ||
name: open-cluster-management-global-set.argo-example | ||
namespace: local-cluster | ||
labels: | ||
policy.open-cluster-management.io/cluster-name: local-cluster | ||
policy.open-cluster-management.io/cluster-namespace: local-cluster | ||
policy.open-cluster-management.io/root-policy: open-cluster-management-global-set.argo-example | ||
spec: | ||
disabled: false | ||
policy-templates: | ||
- objectDefinition: | ||
apiVersion: policy.open-cluster-management.io/v1 | ||
kind: ConfigurationPolicy | ||
metadata: | ||
name: example-namespace | ||
spec: | ||
object-templates: | ||
- complianceType: musthave | ||
objectDefinition: | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: example | ||
remediationAction: inform | ||
severity: low | ||
- objectDefinition: | ||
apiVersion: policy.open-cluster-management.io/v1 | ||
kind: ConfigurationPolicy | ||
metadata: | ||
name: example-pod | ||
spec: | ||
namespaceSelector: | ||
exclude: | ||
- kube-* | ||
include: | ||
- default | ||
object-templates: | ||
- complianceType: musthave | ||
objectDefinition: | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: foobar | ||
spec: | ||
containers: | ||
- image: 'registry.redhat.io/rhel9/httpd-24:latest' | ||
name: httpd | ||
securityContext: | ||
allowPrivilegeEscalation: false | ||
capabilities: | ||
drop: | ||
- ALL | ||
privileged: false | ||
runAsNonRoot: true | ||
remediationAction: enforce | ||
severity: low | ||
status: | ||
compliant: NonCompliant | ||
details: | ||
- compliant: Compliant | ||
history: | ||
- eventName: open-cluster-management-global-set.argo-example.17e7034c879045a3 | ||
lastTimestamp: '2024-07-30T14:16:49Z' | ||
message: 'Compliant; notification - pods [foobar] was created successfully in namespace default' | ||
templateMeta: | ||
creationTimestamp: null | ||
name: example-foo | ||
- compliant: NonCompliant | ||
history: | ||
- eventName: open-cluster-management-global-set.argo-example.17e701cc5101e3a4 | ||
lastTimestamp: '2024-07-30T13:49:19Z' | ||
message: 'NonCompliant; violation - namespaces [example] not found' | ||
templateMeta: | ||
creationTimestamp: null | ||
name: example-namespace | ||
- compliant: Compliant | ||
history: | ||
- eventName: open-cluster-management-global-set.argo-example.17e7034c879045a3 | ||
lastTimestamp: '2024-07-30T14:16:49Z' | ||
message: 'Compliant; notification - pods [foobar] was created successfully in namespace default' | ||
- eventName: open-cluster-management-global-set.argo-example.17e7020b47782ddc | ||
lastTimestamp: '2024-07-30T13:53:49Z' | ||
message: 'NonCompliant; violation - pods [foobar] not found in namespace default' | ||
templateMeta: | ||
creationTimestamp: null | ||
name: example-pod |