Skip to content

Commit 34c4950

Browse files
committed
increased timeout and changed base image for sample service
Signed-off-by: kumarabd <abishekkumar92@gmail.com>
1 parent fa0c2c5 commit 34c4950

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

service/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,9 @@ FROM golang:1.13.5 as bd
22
WORKDIR /github.com/layer5io/sample-app-service
33
ADD . .
44
RUN GOPROXY=direct GOSUMDB=off go build -a -o ./main .
5+
6+
FROM alpine:latest
7+
COPY --from=build-img /github.com/layer5io/sample-app-service/** /home/
8+
WORKDIR /home/
9+
EXPOSE 9091
510
CMD ["./main"]

smi-conformance/test-gen/test_gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func RunTest(meshConfig ServiceMesh, annotations, labels map[string]string) Resu
5454
args := []string{"./test-yamls/"}
5555

5656
options.TestDirs = args
57-
options.Timeout = 120
57+
options.Timeout = 300
5858
options.Parallel = 1
5959
options.TestDirs = manifestDirs
6060
options.StartKIND = startKIND

0 commit comments

Comments
 (0)