Skip to content

Commit 08001f6

Browse files
authored
feat(sync): Add pod filter using FieldSelector (GoogleContainerTools#9493)
Signed-off-by: Suleiman Dibirov <[email protected]>
1 parent 3f2e8df commit 08001f6

File tree

2 files changed

+3
-30
lines changed

2 files changed

+3
-30
lines changed

pkg/skaffold/sync/sync.go

+3-5
Original file line numberDiff line numberDiff line change
@@ -337,16 +337,14 @@ func Perform(ctx context.Context, image string, files syncMap, cmdFn func(contex
337337

338338
numSynced := 0
339339
for _, ns := range namespaces {
340-
pods, err := client.CoreV1().Pods(ns).List(ctx, metav1.ListOptions{})
340+
pods, err := client.CoreV1().Pods(ns).List(ctx, metav1.ListOptions{
341+
FieldSelector: fmt.Sprintf("status.phase=%s", v1.PodRunning),
342+
})
341343
if err != nil {
342344
return fmt.Errorf("getting pods for namespace %q: %w", ns, err)
343345
}
344346

345347
for _, p := range pods.Items {
346-
if p.Status.Phase != v1.PodRunning {
347-
continue
348-
}
349-
350348
for _, c := range p.Spec.Containers {
351349
if c.Image != image {
352350
continue

pkg/skaffold/sync/sync_test.go

-25
Original file line numberDiff line numberDiff line change
@@ -920,23 +920,6 @@ var pod = &v1.Pod{
920920
},
921921
}
922922

923-
var nonRunningPod = &v1.Pod{
924-
ObjectMeta: metav1.ObjectMeta{
925-
Name: "podname",
926-
},
927-
Status: v1.PodStatus{
928-
Phase: v1.PodPending,
929-
},
930-
Spec: v1.PodSpec{
931-
Containers: []v1.Container{
932-
{
933-
Name: "container_name",
934-
Image: "gcr.io/k8s-skaffold:123",
935-
},
936-
},
937-
},
938-
}
939-
940923
func TestPerform(t *testing.T) {
941924
tests := []struct {
942925
description string
@@ -983,14 +966,6 @@ func TestPerform(t *testing.T) {
983966
cmdFn: fakeCmd,
984967
shouldErr: true,
985968
},
986-
{
987-
description: "Skip sync when pod is not running",
988-
image: "gcr.io/k8s-skaffold:123",
989-
files: syncMap{"test.go": {"/test.go"}},
990-
pod: nonRunningPod,
991-
cmdFn: fakeCmd,
992-
shouldErr: true,
993-
},
994969
}
995970
for _, test := range tests {
996971
testutil.Run(t, test.description, func(t *testutil.T) {

0 commit comments

Comments
 (0)