Skip to content

Commit

Permalink
fix containers order after applying
Browse files Browse the repository at this point in the history
to be appending instead of prepending.
  • Loading branch information
jiahuif committed Jan 14, 2022
1 parent 89d8be5 commit 677eae5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/integration/client/client_test.go
Expand Up @@ -1366,12 +1366,12 @@ func TestExtractModifyApply_ForceOwnership(t *testing.T) {
WithTemplate(corev1ac.PodTemplateSpec().
WithSpec(corev1ac.PodSpec().
WithContainers(
corev1ac.Container().
WithName("nginx").
WithWorkingDir("/tmp/v2"),
corev1ac.Container().
WithName("sidecar").
WithImage("nginx:1.14.3"),
corev1ac.Container().
WithName("nginx").
WithWorkingDir("/tmp/v2"),
),
),
),
Expand Down

0 comments on commit 677eae5

Please sign in to comment.