Skip to content

Commit 1c76c0b

Browse files
authored
Attempt to change http-echo image (#10206)
1 parent 4d9727b commit 1c76c0b

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
changelog:
2+
- type: NON_USER_FACING
3+
description: >-
4+
Change the image used in our kubernetes/e2e tests from kennship/http-echo
5+
to jmalloc/echo-server. This image supports http/2. It is also smaller and
6+
faster, which may speed up our e2e tests and reduce CI costs.
7+
kennship/http-echo is also an archived project that appears to not have
8+
been updated in 6 years.
9+

test/kubernetes/e2e/defaults/testdata/http_echo.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ spec:
1414
app.kubernetes.io/name: http-echo
1515
ports:
1616
- protocol: TCP
17+
targetPort: 8080
1718
port: 3000
1819
---
1920
apiVersion: v1
@@ -26,9 +27,10 @@ metadata:
2627
spec:
2728
containers:
2829
- name: http-echo
29-
image: kennship/http-echo@sha256:144322e8e96be2be6675dcf6e3ee15697c5d052d14d240e8914871a2a83990af
30+
# we avoid using checksums so that we automatically select amd64 or arm64
31+
image: jmalloc/[email protected]
3032
ports:
31-
- containerPort: 3000
33+
- containerPort: 8080
3234
resources:
3335
requests:
3436
cpu: "100m"

0 commit comments

Comments
 (0)