Skip to content

Commit 6edf03f

Browse files
authored
Merge pull request #408 from hhyasdf/release/v0.8.8
[CHERRY PICK] release for v0.8.8
2 parents 70a6dcf + d625a13 commit 6edf03f

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

pkg/controllers/networking/pod_controller.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ func (r *PodReconciler) Reconcile(ctx context.Context, req ctrl.Request) (result
145145

146146
if strategy.OwnByStatefulWorkload(ownedObj) {
147147
// Before pod terminated, should not reserve ip instance because of pre-stop
148-
if !utils.PodIsTerminated(pod) {
148+
if !utils.PodIsNotRunning(pod) {
149149
return ctrl.Result{}, nil
150150
}
151151

@@ -167,12 +167,12 @@ func (r *PodReconciler) Reconcile(ctx context.Context, req ctrl.Request) (result
167167
}
168168

169169
if apierrors.IsNotFound(err) || !vm.DeletionTimestamp.IsZero() {
170-
// if vm is deleted, should not reserve pod ips any more
170+
// if vm is deleted, should not reserve pod ips anymore
171171
return ctrl.Result{}, wrapError("unable to remove finalizer", r.removeFinalizer(ctx, pod))
172172
}
173173

174-
// Before pod terminated, should not reserve ip instance because of pre-stop
175-
if !utils.PodIsTerminated(pod) {
174+
// Before pod is not running, should not reserve ip instance because of pre-stop
175+
if !utils.PodIsNotRunning(pod) {
176176
return ctrl.Result{}, nil
177177
}
178178

pkg/controllers/networking/pod_controller_test.go

+7-5
Original file line numberDiff line numberDiff line change
@@ -701,7 +701,7 @@ var _ = Describe("Pod controller integration test suite", func() {
701701
Expect(k8sClient.Delete(context.Background(), pod, client.GracePeriodSeconds(0))).NotTo(HaveOccurred())
702702
})
703703

704-
It("Check ip reserved only after pod terminated", func() {
704+
It("Check ip reserved only after pod is not running", func() {
705705
By("create a stateful pod requiring IPv4 address")
706706
var ipInstanceName string
707707
pod := simplePodRender(podName, node1Name)
@@ -740,13 +740,15 @@ var _ = Describe("Pod controller integration test suite", func() {
740740
WithPolling(time.Second).
741741
Should(Succeed())
742742

743-
By("update to make sure pod not terminated")
743+
By("update to make sure pod is running")
744744
patch := client.MergeFrom(pod.DeepCopy())
745745
pod.Status.ContainerStatuses = []corev1.ContainerStatus{
746746
{
747747
Name: "test",
748748
State: corev1.ContainerState{
749-
Terminated: nil,
749+
Running: &corev1.ContainerStateRunning{
750+
StartedAt: metav1.Time{Time: time.Now()},
751+
},
750752
},
751753
},
752754
}
@@ -770,13 +772,13 @@ var _ = Describe("Pod controller integration test suite", func() {
770772
WithPolling(5 * time.Second).
771773
Should(Succeed())
772774

773-
By("update to make sure pod terminated")
775+
By("update to make sure pod is not running")
774776
patch = client.MergeFrom(pod.DeepCopy())
775777
pod.Status.ContainerStatuses = []corev1.ContainerStatus{
776778
{
777779
Name: "test",
778780
State: corev1.ContainerState{
779-
Terminated: &corev1.ContainerStateTerminated{},
781+
Running: nil,
780782
},
781783
},
782784
}

pkg/controllers/utils/pod.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@ func PodIsScheduled(pod *v1.Pod) bool {
5151
return len(pod.Spec.NodeName) > 0
5252
}
5353

54-
func PodIsTerminated(pod *v1.Pod) bool {
54+
func PodIsNotRunning(pod *v1.Pod) bool {
55+
// check if all the pod containers are not running, if any container is running, pod is still running
5556
for i := range pod.Status.ContainerStatuses {
56-
if pod.Status.ContainerStatuses[i].State.Terminated == nil {
57+
if pod.Status.ContainerStatuses[i].State.Running != nil {
5758
return false
5859
}
5960
}

0 commit comments

Comments
 (0)