Skip to content

Commit 029b32c

Browse files
vdemeestertekton-robot
authored andcommitted
tests: remove single-platform image
Not sure what they are testing, but they prevent us from running e2e tests on other architectures, and they are already covered by unit-tests and multi-arch images tests just above. Signed-off-by: Vincent Demeester <[email protected]>
1 parent fbfafdc commit 029b32c

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

examples/v1/taskruns/entrypoint-resolution.yaml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,3 @@ spec:
2626
- image: mirror.gcr.io/ubuntu
2727
command: ['sh', '-c']
2828
args: ['echo hello']
29-
30-
# Single-platform image with no command defined. We should look up the one
31-
# and only command value and pass it to the Pod.
32-
- image: docker.io/amd64/ubuntu
33-
34-
# Single-platform image with no command defined, but with args. We'll look
35-
# up the one command and pass it to the entrypoint binary, then append the
36-
# specified args.
37-
- image: docker.io/amd64/ubuntu
38-
args: ['-c', 'echo', 'hello']
39-
40-
# Single-platform image, but since we specify `script` we don't need to
41-
# look it up and pass it down.
42-
- image: docker.io/amd64/ubuntu
43-
script: echo hello
44-
45-
# Single-platform image, but since we specify `command` and `args` we
46-
# don't need to look it up and pass it down.
47-
- image: docker.io/amd64/ubuntu
48-
command: ['sh', '-c']
49-
args: ['echo hello']

0 commit comments

Comments
 (0)