File tree Expand file tree Collapse file tree 3 files changed +8
-13
lines changed Expand file tree Collapse file tree 3 files changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ pipeline:
21
21
commands :
22
22
- desc : install deps
23
23
cmd : |
24
- apt-get update && apt-get install -y rsync
24
+ apt-get update -qq && apt-get install -qq rsync
25
25
- desc : build and push
26
26
cmd : |
27
27
cd ./test/e2e/
Original file line number Diff line number Diff line change 1
1
# builder image
2
- FROM golang:1.22 as builder
2
+ FROM golang:1.22 AS builder
3
3
4
4
RUN CGO_ENABLED=0 go install github.com/onsi/ginkgo/v2/
[email protected]
5
5
@@ -10,14 +10,9 @@ FROM container-registry.zalando.net/library/python-3.12-slim:latest
10
10
11
11
ARG TARGETARCH
12
12
13
- RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
14
- bc \
15
- curl \
16
- git \
17
- jq \
18
- pwgen \
13
+ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -qq bc curl git jq pwgen \
19
14
&& rm -rf /var/lib/apt/lists/* \
20
- && pip3 install awscli --no-cache-dir
15
+ && pip3 install awscli --no-cache-dir -q
21
16
22
17
ARG KUBE_VERSION
23
18
ADD https://storage.googleapis.com/kubernetes-release/release/$KUBE_VERSION/bin/linux/$TARGETARCH/kubectl /usr/bin/kubectl
@@ -31,9 +26,9 @@ COPY --from=container-registry.zalando.net/teapot/aws-account-creator:latest /aw
31
26
32
27
ADD . /workdir
33
28
34
- ENV KUBECTL_PATH /usr/bin/kubectl
35
- ENV KUBERNETES_PROVIDER skeleton
36
- ENV KUBERNETES_CONFORMANCE_TEST Y
29
+ ENV KUBECTL_PATH= /usr/bin/kubectl
30
+ ENV KUBERNETES_PROVIDER= skeleton
31
+ ENV KUBERNETES_CONFORMANCE_TEST= Y
37
32
38
33
WORKDIR /workdir/test/e2e
39
34
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ build.push: build.docker
48
48
build.push.multiarch : build.linux.amd64 # build.linux.arm64
49
49
docker buildx create --config /etc/cdp-buildkitd.toml --driver-opt network=host --bootstrap --use
50
50
# docker buildx build --rm --build-arg KUBE_VERSION=$(KUBE_VERSION) -t "$(IMAGE):$(TAG)" --platform linux/amd64,linux/arm64 --push -f $(DOCKERFILE) ../..
51
- docker buildx build --rm --build-arg KUBE_VERSION=$(KUBE_VERSION ) -t " $( IMAGE) :$( TAG) " --platform linux/amd64 --push -f $(DOCKERFILE ) ../..
51
+ docker buildx build --quiet -- rm --build-arg KUBE_VERSION=$(KUBE_VERSION ) -t " $( IMAGE) :$( TAG) " --platform linux/amd64 --push -f $(DOCKERFILE ) ../..
52
52
53
53
clean :
54
54
rm -rf e2e.test
You can’t perform that action at this time.
0 commit comments