Skip to content

Commit

Permalink
to add a msg about the k8s bug (#1720)
Browse files Browse the repository at this point in the history
* to add a msg about the k8s bug

* Update suite.go

* Update suite.go
  • Loading branch information
aabughosh authored Dec 15, 2023
1 parent d5204d4 commit a86a981
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cnf-certification-test/lifecycle/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,9 @@ func testContainersPostStart(env *provider.TestEnvironment) {
tnf.ClaimFilePrintf("%s does not have postStart defined", cut)
nonCompliantObjects = append(nonCompliantObjects, testhelper.NewContainerReportObject(cut.Namespace, cut.Podname, cut.Name, "Container does not have postStart defined", false))
} else {
compliantObjects = append(compliantObjects, testhelper.NewContainerReportObject(cut.Namespace, cut.Podname, cut.Name, "Container has postStart defined", true))
compliantObjects = append(compliantObjects, testhelper.NewContainerReportObject(cut.Namespace, cut.Podname, cut.Name, "Container has postStart defined."+
"Attention: There is a known upstream bug where a pod with a still-running postStart lifecycle hook that is deleted may not be terminated even after "+
"the terminationGracePeriod k8s bug link: kubernetes/kubernetes#116032", true))
}
}
testhelper.AddTestResultReason(compliantObjects, nonCompliantObjects, tnf.ClaimFilePrintf, ginkgo.Fail)
Expand Down

0 comments on commit a86a981

Please sign in to comment.