You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Skip column data check for waiting container
* Skip fluentd process check if resource optimization is enabled
* Fixed windows node issue
* change branch for testing
* Fixed linux pod check in windows node
* Skip Geneva tests
* test geneva env var
* geneva test
* nit
* nit
* Added GENEVA_INTEGRATION variable
* Reverted branch name
* Skip column data check for waiting container
* Skip fluentd process check if resource optimization is enabled
* Fixed windows node issue
* change branch for testing
* Fixed linux pod check in windows node
* Skip Geneva tests
* test geneva env var
* geneva test
* nit
* nit
* Added GENEVA_INTEGRATION variable
* Reverted branch name
@@ -42,7 +44,9 @@ var _ = Describe("When querying the logs for the table", func() {
42
44
var_=Describe("When querying the logs for the ContainerInventory", func() {
43
45
DescribeTable("Column should have zero empty values",
44
46
func(columnstring) {
45
-
query:="ContainerInventory | where TimeGenerated > ago(1h) | summarize countif(isempty("+column+") or isnull("+column+"))"
47
+
// Skip records with ContainerState 'Waiting' to avoid false positives due to the container being in a waiting state.
48
+
// If the pod name contains 'ama-logs', we include it to ensure we capture the ama-logs agent containers.
49
+
query:="ContainerInventory | where TimeGenerated > ago(1h) and (ContainerState !~ 'Waiting' or ContainerHostname contains 'ama-logs') | summarize countif(isempty("+column+") or isnull("+column+"))"
* Returns all pods in the given namespace with the given label.
102
118
*/
@@ -385,7 +401,7 @@ func CheckIfAllPodsScheduleOnNodes(clientset *kubernetes.Clientset, namespace, l
385
401
* Check that pods with the specified namespace and label value are scheduled in all the Fips and ARM64 nodes. If a node has no schduled pod on it, return an error.
386
402
* Also check that the containers are scheduled and running on those nodes.
0 commit comments