Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes to analysers causing some false warning #81

Merged
merged 1 commit into from
Jan 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions in-cluster/default.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ spec:
message: EKCO is installed and running
- textAnalyze:
checkName: Check installed EKCO version for critical fixes
fileName: ekco-resources/ekco-resources.log
fileName: cluster-resources/deployments/kurl.json
regexGroups: '"image": "replicated/ekco:v(?P<Major>\d+)\.(?P<Minor>\d+)\.(?P<Patch>\d+)"'
outcomes:
- warn:
Expand Down Expand Up @@ -399,8 +399,7 @@ spec:
message: A Contour pod, {{ .Name }}, is unhealthy with a status of {{ .Status.Reason }}. Restarting the pod may fix the issue.
- textAnalyze:
checkName: longhorn multipath conflict
exclude: ""
ignoreIfNoFiless: true
ignoreIfNoFiles: true
fileName: longhorn/longhorn-system/logs/longhorn-csi-plugin-*/longhorn-csi-plugin.log
outcomes:
- fail:
Expand All @@ -414,6 +413,7 @@ spec:
- textAnalyze:
checkName: Minio disk full
fileName: cluster-resources/pods/logs/kurl/registry-*/registry.log
ignoreIfNoFiles: true
regex: '.*XMinioStorageFull: Storage backend has reached its minimum free disk threshold.*'
outcomes:
- fail:
Expand All @@ -438,6 +438,7 @@ spec:
- textAnalyze:
checkName: Rook rbd filesystem consistency
fileName: /kots/rook/rook-ceph-agent-*.log
ignoreIfNoFiles: true
regex: 'UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.'
outcomes:
- fail:
Expand Down
Loading