senlu@senlu:~/work/src/k8s.io/test-infra$ ./experiment/bump_e2e_image.sh
make: Entering directory '/usr/local/google/home/senlu/work/src/k8s.io/test-infra/images/kubekins-e2e'
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o kubetest ../../kubetest
Building with K8S_RELEASE=stable GO=1.11.5 BAZEL=0.21.0
docker build --build-arg K8S_RELEASE=stable --build-arg GO_VERSION=1.11.5 --build-arg BAZEL_VERSION_ARG=0.21.0 --build-arg CFSSL_VERSION=R1.2 --build-arg IMAGE_ARG=gcr.io/k8s-testimages/kubekins-e2e:v20190201-c20cae5e7-master --build-arg=UPGRADE_DOCKER_ARG=false -t gcr.io/k8s-testimages/kubekins-e2e:v20190201-c20cae5e7-master .
Sending build context to Docker daemon 50.3MB
Step 1/27 : FROM gcr.io/k8s-testimages/bootstrap:v20190201-67ac1a7bd
---> cd5f209061c8
Step 2/27 : LABEL maintainer "Sen Lu <[email protected]>"
---> Using cache
---> 920088fbec59
Step 3/27 : ENV KUBETEST_IN_DOCKER="true"
---> Using cache
---> f67d11452447
Step 4/27 : ENV GOPATH /go
---> Using cache
---> dc685fce7cdf
Step 5/27 : ENV PATH /usr/local/go/bin:$PATH
---> Using cache
---> bc6174434e69
Step 6/27 : RUN mkdir -p /go/bin
---> Using cache
---> 9cddf646149b
Step 7/27 : ENV PATH $GOPATH/bin:$PATH
---> Using cache
---> b9e957afb836
Step 8/27 : RUN mkdir -p /go/src/k8s.io/kubernetes && ln -s /go/src/k8s.io/kubernetes /workspace/kubernetes
---> Using cache
---> 045548fea384
Step 9/27 : RUN apt-get install -y bc graphviz rpm && rm -rf /var/lib/apt/lists/*
---> Running in 76f8ec3eb7d0
Reading package lists...
Building dependency tree...
Reading state information...
Package rpm is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Unable to locate package bc
E: Unable to locate package graphviz
E: Package 'rpm' has no installation candidate
The command '/bin/sh -c apt-get install -y bc graphviz rpm && rm -rf /var/lib/apt/lists/*' returned a non-zero code: 100
Makefile:72: recipe for target 'build' failed
make: *** [build] Error 100
make: Leaving directory '/usr/local/google/home/senlu/work/src/k8s.io/test-infra/images/kubekins-e2e'
hummmmmm - is https://github.com/kubernetes/test-infra/pull/10849 related?
/assign
/assign @BenTheElder
cc @ixdy @idealhack
not related with #10849, maybe the package is just gone?
/this-is-fine
In response to this:
not related with #10849, maybe the package is just gone?
/this-is-fine
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.
works with existing bootstrap image - so probably something local to me
ohhh hummmm that PR changed bootstrap as well
/pony suspicious
In response to this:
ohhh hummmm that PR changed bootstrap as well
/pony suspicious
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository.
oh, yeah, #10849 destroyed the apt cache. We probably need to add an apt-get update && to
https://github.com/kubernetes/test-infra/blob/67ac1a7bd9ac5f88172bd7854e6f33992f892e2b/images/kubekins-e2e/Dockerfile#L39
bumping [**..........]
Most helpful comment
oh, yeah, #10849 destroyed the apt cache. We probably need to add an
apt-get update &&tohttps://github.com/kubernetes/test-infra/blob/67ac1a7bd9ac5f88172bd7854e6f33992f892e2b/images/kubekins-e2e/Dockerfile#L39