Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save l5d-bot/7ec4e516008b1dc5958dbd14b82e0053 to your computer and use it in GitHub Desktop.
Save l5d-bot/7ec4e516008b1dc5958dbd14b82e0053 to your computer and use it in GitHub Desktop.
l5d-integration-fail-501ef0a7e40576f21c00fcc83c846a580d434ca4.log
Cloning into '/root/go/src/github.com/linkerd/linkerd2'...
Note: checking out '501ef0a7e40576f21c00fcc83c846a580d434ca4'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b <new-branch-name>
HEAD is now at 501ef0a7 Add the control plane version to the global config
Sending build context to Docker daemon 4.067MB
Step 1/13 : FROM gcr.io/linkerd-io/go-deps:44063d94 as golang
---> caab89f69870
Step 2/13 : WORKDIR /go/src/github.com/linkerd/linkerd2
---> Using cache
---> e67c27dc2549
Step 3/13 : COPY controller/gen controller/gen
---> 32023abaa3d3
Step 4/13 : COPY pkg pkg
---> 0c2f3395d2f9
Step 5/13 : COPY controller controller
---> 859349bd3684
Step 6/13 : RUN CGO_ENABLED=0 GOOS=linux go install ./pkg/...
---> Running in 28a3749989d7
Removing intermediate container 28a3749989d7
---> d957349fb4f0
Step 7/13 : RUN CGO_ENABLED=0 GOOS=linux go install ./controller/cmd/...
---> Running in 74b22e7da73c
Removing intermediate container 74b22e7da73c
---> 81dc97e52f78
Step 8/13 : FROM scratch
--->
Step 9/13 : ENV PATH=$PATH:/go/bin
---> Using cache
---> 584753d9fa75
Step 10/13 : COPY LICENSE /linkerd/LICENSE
---> Using cache
---> bedbe2139c0b
Step 11/13 : COPY --from=golang /go/bin /go/bin
---> ae7f4324129a
Step 12/13 : ARG LINKERD_VERSION
---> Running in cd98d48eb0e2
Removing intermediate container cd98d48eb0e2
---> 226a589faa73
Step 13/13 : ENV LINKERD_CONTAINER_VERSION_OVERRIDE=${LINKERD_VERSION}
---> Running in 5415f731f5cc
Removing intermediate container 5415f731f5cc
---> 405b5280a6a7
Successfully built 405b5280a6a7
Successfully tagged gcr.io/linkerd-io/controller:git-501ef0a7
gcr.io/linkerd-io/controller:git-501ef0a7
Sending build context to Docker daemon 4.067MB
Step 1/34 : FROM node:10 as webpack-bundle
---> 64c810caf95a
Step 2/34 : RUN curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.7.0
---> Using cache
---> 9560c646e1c2
Step 3/34 : ENV HOME /root
---> Using cache
---> 73f74004f63e
Step 4/34 : ENV PATH $HOME/.yarn/bin:$PATH
---> Using cache
---> b15f6eb5f6e9
Step 5/34 : ENV GOPATH /go
---> Using cache
---> 3fb81d59db87
Step 6/34 : ENV PROJECT github.com/linkerd/linkerd2
---> Using cache
---> 0cb212b71a67
Step 7/34 : ENV PACKAGE $PROJECT/web/app
---> Using cache
---> a16ef36517fe
Step 8/34 : ENV ROOT $GOPATH/src/$PROJECT
---> Using cache
---> 16d769886161
Step 9/34 : ENV PACKAGEDIR $GOPATH/src/$PACKAGE
---> Using cache
---> 91e7f92420d9
Step 10/34 : WORKDIR $PACKAGEDIR
---> Using cache
---> 2462b53cfa22
Step 11/34 : COPY bin/web $ROOT/bin/web
---> Using cache
---> 1f4bd213fa4e
Step 12/34 : COPY web/app/package.json web/app/yarn.lock ./
---> Using cache
---> aa56c2ca1cfb
Step 13/34 : RUN $ROOT/bin/web setup install --frozen-lockfile
---> Using cache
---> dba5d42ab7fb
Step 14/34 : ENV NODE_ENV production
---> Using cache
---> dbd023fc4ddb
Step 15/34 : COPY web/app .
---> Using cache
---> b12cfb8583e2
Step 16/34 : RUN $ROOT/bin/web build
---> Using cache
---> 36d4900c3a39
Step 17/34 : FROM gcr.io/linkerd-io/go-deps:44063d94 as golang
---> caab89f69870
Step 18/34 : WORKDIR /go/src/github.com/linkerd/linkerd2
---> Using cache
---> e67c27dc2549
Step 19/34 : RUN mkdir -p web
---> Using cache
---> 09ae243a3c69
Step 20/34 : COPY web/main.go web
---> Using cache
---> 52447cc5537c
Step 21/34 : COPY web/srv web/srv
---> Using cache
---> b19f6ecd7935
Step 22/34 : COPY controller controller
---> a53581cf03b9
Step 23/34 : COPY pkg pkg
---> 0d9be0769b02
Step 24/34 : RUN CGO_ENABLED=0 GOOS=linux go build -o web/web ./web
---> Running in 0850aff99bc2
Removing intermediate container 0850aff99bc2
---> 1c526082d5a4
Step 25/34 : FROM gcr.io/linkerd-io/base:2019-02-19.01
---> f07bbe9e1dde
Step 26/34 : WORKDIR /linkerd
---> Using cache
---> 9bc34a90485e
Step 27/34 : COPY LICENSE .
---> Using cache
---> 2e8a8cbe3e01
Step 28/34 : COPY --from=golang /go/src/github.com/linkerd/linkerd2/web/web .
---> af15c690413e
Step 29/34 : RUN mkdir -p app
---> Running in 5e61dd249a98
Removing intermediate container 5e61dd249a98
---> 2ac4fd1f0837
Step 30/34 : COPY --from=webpack-bundle /go/src/github.com/linkerd/linkerd2/web/app/dist app/dist
---> 26e5f1ddabbf
Step 31/34 : COPY web/templates templates
---> 808d70ee3005
Step 32/34 : ARG LINKERD_VERSION
---> Running in 4f6c9f06cb8f
Removing intermediate container 4f6c9f06cb8f
---> 1948ec382ea8
Step 33/34 : ENV LINKERD_CONTAINER_VERSION_OVERRIDE=${LINKERD_VERSION}
---> Running in 0fa7db1a4ed8
Removing intermediate container 0fa7db1a4ed8
---> 4e5e11daca16
Step 34/34 : ENTRYPOINT ["./web"]
---> Running in 2d05d1dc245a
Removing intermediate container 2d05d1dc245a
---> c5e9e7e3b1e1
Successfully built c5e9e7e3b1e1
Successfully tagged gcr.io/linkerd-io/web:git-501ef0a7
gcr.io/linkerd-io/web:git-501ef0a7
Sending build context to Docker daemon 4.066MB
Step 1/8 : FROM gcr.io/linkerd-io/go-deps:44063d94 as golang
---> caab89f69870
Step 2/8 : WORKDIR /go/src/github.com/linkerd/linkerd2
---> Using cache
---> e67c27dc2549
Step 3/8 : COPY ./proxy-init ./proxy-init
---> Using cache
---> b767094dfd88
Step 4/8 : RUN CGO_ENABLED=0 GOOS=linux go install -v ./proxy-init/
---> Using cache
---> 0806bc3e267f
Step 5/8 : FROM gcr.io/linkerd-io/base:2019-02-19.01
---> f07bbe9e1dde
Step 6/8 : COPY LICENSE /linkerd/LICENSE
---> Using cache
---> 1b16923b9282
Step 7/8 : COPY --from=golang /go/bin/proxy-init /usr/local/bin/proxy-init
---> Using cache
---> f9f03efb4711
Step 8/8 : ENTRYPOINT ["/usr/local/bin/proxy-init"]
---> Using cache
---> 390646f591d4
Successfully built 390646f591d4
Successfully tagged gcr.io/linkerd-io/proxy-init:git-501ef0a7
gcr.io/linkerd-io/proxy-init:git-501ef0a7
Sending build context to Docker daemon 4.067MB
Step 1/17 : FROM gcr.io/linkerd-io/go-deps:44063d94 as golang
---> caab89f69870
Step 2/17 : WORKDIR /go/src/github.com/linkerd/linkerd2
---> Using cache
---> e67c27dc2549
Step 3/17 : COPY proxy-init proxy-init
---> Using cache
---> e3918459d45c
Step 4/17 : COPY pkg pkg
---> 4e5a950e9827
Step 5/17 : COPY controller controller
---> 8a68ccaf523f
Step 6/17 : COPY cni-plugin cni-plugin
---> 0a8261c35eb5
Step 7/17 : RUN CGO_ENABLED=0 GOOS=linux go build -o /go/bin/linkerd-cni -v ./cni-plugin/
---> Running in 228f2468610d
github.com/linkerd/linkerd2/controller/gen/apis/serviceprofile
github.com/linkerd/linkerd2/controller/gen/apis/serviceprofile/v1alpha1
github.com/linkerd/linkerd2/controller/gen/client/clientset/versioned/scheme
github.com/linkerd/linkerd2/controller/gen/client/clientset/versioned/typed/serviceprofile/v1alpha1
github.com/evanphx/json-patch
github.com/linkerd/linkerd2/controller/gen/client/clientset/versioned
k8s.io/apimachinery/third_party/forked/golang/json
k8s.io/apimachinery/pkg/util/mergepatch
k8s.io/kube-openapi/pkg/util/proto
github.com/linkerd/linkerd2/pkg/version
k8s.io/apimachinery/pkg/util/strategicpatch
k8s.io/client-go/testing
github.com/linkerd/linkerd2/controller/gen/client/clientset/versioned/typed/serviceprofile/v1alpha1/fake
k8s.io/client-go/discovery/fake
k8s.io/client-go/kubernetes/typed/admissionregistration/v1alpha1/fake
k8s.io/client-go/kubernetes/typed/admissionregistration/v1beta1/fake
k8s.io/client-go/kubernetes/typed/apps/v1/fake
github.com/linkerd/linkerd2/controller/gen/client/clientset/versioned/fake
k8s.io/client-go/kubernetes/typed/apps/v1beta1/fake
k8s.io/client-go/kubernetes/typed/apps/v1beta2/fake
k8s.io/client-go/kubernetes/typed/auditregistration/v1alpha1/fake
k8s.io/client-go/kubernetes/typed/authentication/v1/fake
k8s.io/client-go/kubernetes/typed/authentication/v1beta1/fake
k8s.io/client-go/kubernetes/typed/authorization/v1/fake
k8s.io/client-go/kubernetes/typed/authorization/v1beta1/fake
k8s.io/client-go/kubernetes/typed/autoscaling/v1/fake
k8s.io/client-go/kubernetes/typed/autoscaling/v2beta1/fake
k8s.io/client-go/kubernetes/typed/autoscaling/v2beta2/fake
k8s.io/client-go/kubernetes/typed/batch/v1/fake
k8s.io/client-go/kubernetes/typed/batch/v1beta1/fake
k8s.io/client-go/kubernetes/typed/batch/v2alpha1/fake
k8s.io/client-go/kubernetes/typed/certificates/v1beta1/fake
k8s.io/client-go/kubernetes/typed/coordination/v1beta1/fake
k8s.io/client-go/kubernetes/typed/core/v1/fake
k8s.io/client-go/kubernetes/typed/events/v1beta1/fake
k8s.io/client-go/kubernetes/typed/extensions/v1beta1/fake
k8s.io/client-go/kubernetes/typed/networking/v1/fake
k8s.io/client-go/kubernetes/typed/policy/v1beta1/fake
k8s.io/client-go/kubernetes/typed/rbac/v1/fake
k8s.io/client-go/kubernetes/typed/rbac/v1alpha1/fake
k8s.io/client-go/kubernetes/typed/rbac/v1beta1/fake
k8s.io/client-go/kubernetes/typed/scheduling/v1alpha1/fake
k8s.io/client-go/kubernetes/typed/scheduling/v1beta1/fake
k8s.io/client-go/kubernetes/typed/settings/v1alpha1/fake
k8s.io/client-go/kubernetes/typed/storage/v1/fake
k8s.io/client-go/kubernetes/typed/storage/v1alpha1/fake
k8s.io/client-go/kubernetes/typed/storage/v1beta1/fake
k8s.io/client-go/kubernetes/fake
k8s.io/apimachinery/pkg/util/httpstream
k8s.io/client-go/tools/portforward
github.com/docker/spdystream/spdy
k8s.io/apimachinery/third_party/forked/golang/netutil
github.com/linkerd/linkerd2/proxy-init/iptables
github.com/spf13/cobra
github.com/docker/spdystream
k8s.io/apimachinery/pkg/util/httpstream/spdy
github.com/linkerd/linkerd2/proxy-init/cmd
k8s.io/client-go/transport/spdy
github.com/projectcalico/libcalico-go/lib/logutils
github.com/linkerd/linkerd2/pkg/k8s
github.com/linkerd/linkerd2/cni-plugin
Removing intermediate container 228f2468610d
---> 4990648876c6
Step 8/17 : FROM gcr.io/linkerd-io/base:2019-02-19.01
---> f07bbe9e1dde
Step 9/17 : WORKDIR /linkerd
---> Using cache
---> 9bc34a90485e
Step 10/17 : RUN curl -kL -o $(which jq) https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64
---> Using cache
---> e6244cfd9a8b
Step 11/17 : COPY --from=golang /go/bin/linkerd-cni /opt/cni/bin/
---> Using cache
---> a17460ff45b3
Step 12/17 : COPY LICENSE .
---> Using cache
---> 1f31433b4901
Step 13/17 : COPY cni-plugin/deployment/scripts/install-cni.sh .
---> Using cache
---> a787689e93b6
Step 14/17 : COPY cni-plugin/deployment/linkerd-cni.conf.default .
---> Using cache
---> 57e9f7f3ebcb
Step 15/17 : COPY cni-plugin/deployment/scripts/filter.jq .
---> Using cache
---> 2f00e00bd128
Step 16/17 : ENV PATH=/linkerd:/opt/cni/bin:$PATH
---> Using cache
---> 4d8c8fe48bbf
Step 17/17 : CMD ["install-cni.sh"]
---> Using cache
---> c63ba7d46261
Successfully built c63ba7d46261
Successfully tagged gcr.io/linkerd-io/cni-plugin:git-501ef0a7
gcr.io/linkerd-io/cni-plugin:git-501ef0a7
Sending build context to Docker daemon 4.067MB
Step 1/22 : FROM gcr.io/linkerd-io/go-deps:44063d94 as golang
---> caab89f69870
Step 2/22 : WORKDIR /go/src/github.com/linkerd/linkerd2
---> Using cache
---> e67c27dc2549
Step 3/22 : COPY cli cli
---> 924de1b93e94
Step 4/22 : COPY chart chart
---> 1884e08309d9
Step 5/22 : COPY controller/k8s controller/k8s
---> 78379e689fb2
Step 6/22 : COPY controller/api controller/api
---> 35448d7f4da6
Step 7/22 : COPY controller/gen controller/gen
---> d1938b3b96ee
Step 8/22 : COPY pkg pkg
---> 1810d0108a29
Step 9/22 : RUN mkdir -p /out
---> Running in c19879cb7bdd
Removing intermediate container c19879cb7bdd
---> 96237a568523
Step 10/22 : RUN go generate ./cli
---> Running in 74cc58060a73
writing static/generated_templates.gogen.go
Removing intermediate container 74cc58060a73
---> bde173e5d821
Step 11/22 : RUN CGO_ENABLED=0 GOOS=darwin go build -o /out/linkerd-darwin -tags prod -ldflags "-s -w" ./cli
---> Running in cec989731ed2
Removing intermediate container cec989731ed2
---> b57c83b06f61
Step 12/22 : RUN CGO_ENABLED=0 GOOS=linux go build -o /out/linkerd-linux -tags prod -ldflags "-s -w" ./cli
---> Running in c9d9543d6a0e
Removing intermediate container c9d9543d6a0e
---> 0e3d7d1348e1
Step 13/22 : RUN CGO_ENABLED=0 GOOS=windows go build -o /out/linkerd-windows -tags prod -ldflags "-s -w" ./cli
---> Running in 22c2996b1cf6
Removing intermediate container 22c2996b1cf6
---> de8e28624af7
Step 14/22 : ARG LINKERD_VERSION
---> Running in 152376ff56ed
Removing intermediate container 152376ff56ed
---> 6fb2122bbde5
Step 15/22 : ENV GO_LDFLAGS="-s -w -X github.com/linkerd/linkerd2/pkg/version.Version=${LINKERD_VERSION}"
---> Running in 93c2dfed76fc
Removing intermediate container 93c2dfed76fc
---> b131e6089122
Step 16/22 : RUN CGO_ENABLED=0 GOOS=darwin go build -o /out/linkerd-darwin -tags prod -ldflags "${GO_LDFLAGS}" ./cli
---> Running in 1b126ca2edb0
Removing intermediate container 1b126ca2edb0
---> 5e926ee3ab75
Step 17/22 : RUN CGO_ENABLED=0 GOOS=linux go build -o /out/linkerd-linux -tags prod -ldflags "${GO_LDFLAGS}" ./cli
---> Running in e38a27b83b65
Removing intermediate container e38a27b83b65
---> c505fe6b2d8e
Step 18/22 : RUN CGO_ENABLED=0 GOOS=windows go build -o /out/linkerd-windows -tags prod -ldflags "${GO_LDFLAGS}" ./cli
---> Running in 15372ec937e9
Removing intermediate container 15372ec937e9
---> 157604079603
Step 19/22 : FROM scratch
--->
Step 20/22 : COPY LICENSE /linkerd/LICENSE
---> Using cache
---> 81d9242d402e
Step 21/22 : COPY --from=golang /out /out
---> 50efdf4f62cc
Step 22/22 : ENTRYPOINT ["/out/linkerd-linux"]
---> Running in f492d8523993
Removing intermediate container f492d8523993
---> e9bc7e869b63
Successfully built e9bc7e869b63
Successfully tagged gcr.io/linkerd-io/cli-bin:git-501ef0a7
gcr.io/linkerd-io/cli-bin:git-501ef0a7
/root/go/src/github.com/linkerd/linkerd2/target/cli/darwin/linkerd
/root/go/src/github.com/linkerd/linkerd2/target/cli/linux/linkerd
/root/go/src/github.com/linkerd/linkerd2/target/cli/windows/linkerd
Sending build context to Docker daemon 4.066MB
Step 1/4 : FROM grafana/grafana:5.4.3
---> d0454da13c84
Step 2/4 : COPY LICENSE /linkerd/LICENSE
---> Using cache
---> 600b0f0796ba
Step 3/4 : COPY grafana/dashboards /var/lib/grafana/dashboards
---> Using cache
---> 9b90b42e592f
Step 4/4 : COPY grafana/dashboards/top-line.json /usr/share/grafana/public/dashboards/home.json
---> Using cache
---> fbddb4466edd
Successfully built fbddb4466edd
Successfully tagged gcr.io/linkerd-io/grafana:git-501ef0a7
gcr.io/linkerd-io/grafana:git-501ef0a7
Sending build context to Docker daemon 4.067MB
Step 1/26 : ARG RUNTIME_IMAGE=gcr.io/linkerd-io/base:2019-02-19.01
Step 2/26 : FROM gcr.io/linkerd-io/base:2019-02-19.01 as fetch
---> f07bbe9e1dde
Step 3/26 : RUN apt-get update && apt-get install -y ca-certificates
---> Using cache
---> 84448efc3c5f
Step 4/26 : WORKDIR /build
---> Using cache
---> 4f840c793f8a
Step 5/26 : COPY bin/fetch-proxy bin/fetch-proxy
---> Using cache
---> 173e17e0fe18
Step 6/26 : ARG PROXY_VERSION
---> Using cache
---> 922dfc9420f5
Step 7/26 : RUN (proxy=$(bin/fetch-proxy $PROXY_VERSION) && version=$(basename "$proxy" | sed 's/linkerd2-proxy-//') && mv "$proxy" linkerd2-proxy && echo "$version" >version.txt)
---> Running in da1d44f57603
* <url> malformed
* Closing connection -1
* Trying 104.18.45.160...
* TCP_NODELAY set
* Connected to build.l5d.io (104.18.45.160) port 443 (#0)
* ALPN, offering h2
* ALPN, offering http/1.1
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
* successfully set certificate verify locations:
* CAfile: /etc/ssl/certs/ca-certificates.crt
CApath: /etc/ssl/certs
* TLSv1.2 (OUT), TLS header, Certificate Status (22):
} [5 bytes data]
* TLSv1.2 (OUT), TLS handshake, Client hello (1):
} [512 bytes data]
* TLSv1.2 (IN), TLS handshake, Server hello (2):
{ [96 bytes data]
* TLSv1.2 (IN), TLS handshake, Certificate (11):
{ [4328 bytes data]
* TLSv1.2 (IN), TLS handshake, Server key exchange (12):
{ [149 bytes data]
* TLSv1.2 (IN), TLS handshake, Server finished (14):
{ [4 bytes data]
* TLSv1.2 (OUT), TLS handshake, Client key exchange (16):
} [70 bytes data]
* TLSv1.2 (OUT), TLS change cipher, Client hello (1):
} [1 bytes data]
* TLSv1.2 (OUT), TLS handshake, Finished (20):
} [16 bytes data]
* TLSv1.2 (IN), TLS change cipher, Client hello (1):
{ [1 bytes data]
* TLSv1.2 (IN), TLS handshake, Finished (20):
{ [16 bytes data]
* SSL connection using TLSv1.2 / ECDHE-ECDSA-AES128-GCM-SHA256
* ALPN, server accepted to use h2
* Server certificate:
* subject: OU=Domain Control Validated; OU=PositiveSSL Multi-Domain; CN=sni136024.cloudflaressl.com
* start date: Mar 24 00:00:00 2019 GMT
* expire date: Sep 30 23:59:59 2019 GMT
* subjectAltName: host "build.l5d.io" matched cert's "*.l5d.io"
* issuer: C=GB; ST=Greater Manchester; L=Salford; O=COMODO CA Limited; CN=COMODO ECC Domain Validation Secure Server CA 2
* SSL certificate verify ok.
* Using HTTP2, server supports multi-use
* Connection state changed (HTTP/2 confirmed)
* Copying HTTP/2 data in stream buffer to connection buffer after upgrade: len=0
} [5 bytes data]
* Using Stream ID: 1 (easy handle 0x562494899e40)
} [5 bytes data]
> GET /linkerd2-proxy/linkerd2-proxy-c96dd3a.tar.gz HTTP/1.1
> Host: build.l5d.io
> User-Agent: curl/7.52.1
> Accept: */*
>
{ [5 bytes data]
* Connection state changed (MAX_CONCURRENT_STREAMS updated)!
} [5 bytes data]
< HTTP/2 200
< date: Thu, 18 Apr 2019 22:44:50 GMT
< content-type: application/gzip
< content-length: 4038177
< set-cookie: __cfduid=d98495aae52fd8f43ae66745a427c05c01555627489; expires=Fri, 17-Apr-20 22:44:49 GMT; path=/; domain=.l5d.io; HttpOnly
< x-guploader-uploadid: AEnB2Ur8PlAIFBVbFctg-926ys0OyhT49b89NzZRDlZ8INsTKlrV2gFwVMyCtJuzR1d2PXYO4l2hpxzQ2EuhfDNM9AGtP43IZtf0teq8zv6BBJZiIVOuFW8
< expires: Thu, 18 Apr 2019 23:44:49 GMT
< cache-control: public, max-age=3600
< last-modified: Thu, 18 Apr 2019 20:10:19 GMT
< etag: "21dfedf86590acbe80d7f2dfb7603d99"
< x-goog-generation: 1555618219675882
< x-goog-metageneration: 1
< x-goog-stored-content-encoding: identity
< x-goog-stored-content-length: 4038177
< x-goog-hash: crc32c=YZQiDg==
< x-goog-hash: md5=Id/t+GWQrL6A1/Lft2A9mQ==
< x-goog-storage-class: STANDARD
< accept-ranges: bytes
< expect-ct: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
< server: cloudflare
< cf-ray: 4c9a2a633fafbb1e-SEA
<
{ [719 bytes data]
* Curl_http_done: called premature == 0
* Connection #0 to host build.l5d.io left intact
linkerd2-proxy-c96dd3a/
linkerd2-proxy-c96dd3a/LICENSE
linkerd2-proxy-c96dd3a/bin/
linkerd2-proxy-c96dd3a/bin/linkerd2-proxy
Removing intermediate container da1d44f57603
---> d9ad51f5dfd5
Step 8/26 : FROM gcr.io/linkerd-io/go-deps:44063d94 as golang
---> caab89f69870
Step 9/26 : WORKDIR /go/src/github.com/linkerd/linkerd2
---> Using cache
---> e67c27dc2549
Step 10/26 : ENV CGO_ENABLED=0 GOOS=linux
---> Using cache
---> 24795c434512
Step 11/26 : COPY pkg/flags pkg/flags
---> Using cache
---> 6bf773f57ac3
Step 12/26 : COPY pkg/tls pkg/tls
---> Using cache
---> cf63f572c983
Step 13/26 : COPY pkg/version pkg/version
---> Using cache
---> d4d866bf35e3
Step 14/26 : RUN go build ./pkg/...
---> Using cache
---> 47ca955938e8
Step 15/26 : COPY proxy-identity proxy-identity
---> Using cache
---> 4c0c2ab4cbd1
Step 16/26 : RUN CGO_ENABLED=0 GOOS=linux go install ./proxy-identity
---> Using cache
---> a0d80b03a1ba
Step 17/26 : FROM $RUNTIME_IMAGE as runtime
---> f07bbe9e1dde
Step 18/26 : COPY --from=fetch /build/target/proxy/LICENSE /usr/lib/linkerd/LICENSE
---> Using cache
---> 03e77a569e6a
Step 19/26 : COPY --from=fetch /build/version.txt /usr/lib/linkerd/linkerd2-proxy-version.txt
---> Using cache
---> 1e04137ef18f
Step 20/26 : COPY --from=fetch /build/linkerd2-proxy /usr/lib/linkerd/linkerd2-proxy
---> Using cache
---> 90328a1b8e4d
Step 21/26 : COPY --from=golang /go/bin/proxy-identity /usr/lib/linkerd/linkerd2-proxy-identity
---> Using cache
---> e086338b7b81
Step 22/26 : COPY proxy-identity/run-proxy.sh /usr/bin/linkerd2-proxy-run
---> Using cache
---> 0c45f5978e25
Step 23/26 : ARG LINKERD_VERSION
---> Using cache
---> 85d2e8b0b833
Step 24/26 : ENV LINKERD_CONTAINER_VERSION_OVERRIDE=${LINKERD_VERSION}
---> Using cache
---> 0649f0263aa9
Step 25/26 : ENV LINKERD2_PROXY_LOG=warn,linkerd2_proxy=info
---> Using cache
---> 2d71515cc31f
Step 26/26 : ENTRYPOINT ["/usr/bin/linkerd2-proxy-run"]
---> Using cache
---> 81b9ceb35d6a
Successfully built 81b9ceb35d6a
Successfully tagged gcr.io/linkerd-io/proxy:git-501ef0a7
gcr.io/linkerd-io/proxy:git-501ef0a7
The push refers to repository [gcr.io/linkerd-io/cli-bin]
b418b54ee897: Preparing
ede208a3d1a7: Preparing
ede208a3d1a7: Layer already exists
b418b54ee897: Pushed
git-501ef0a7: digest: sha256:7ab9bcd325e6968fcd95378e342568bacb1e6703aa0d813bfd830d14be9b847d size: 737
The push refers to repository [gcr.io/linkerd-io/cni-plugin]
tag does not exist: gcr.io/linkerd-io/cni-plugin:git-501ef0a7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment