Skip to content

Commit

Permalink
Merge pull request #230 from thockin/debian-buster
Browse files Browse the repository at this point in the history
Bump to debian-base 2.0.0 (buster)
  • Loading branch information
k8s-ci-robot authored Jan 31, 2020
2 parents 629c8d2 + ef8f5cf commit e7679fe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ALL_PLATFORMS := linux/amd64 linux/arm linux/arm64 linux/ppc64le linux/s390x
OS := $(if $(GOOS),$(GOOS),$(shell go env GOOS))
ARCH := $(if $(GOARCH),$(GOARCH),$(shell go env GOARCH))

BASEIMAGE ?= k8s.gcr.io/debian-base:1.0.0
BASEIMAGE ?= k8s.gcr.io/debian-base:v2.0.0

IMAGE := $(REGISTRY)/$(BIN)
TAG := $(VERSION)__$(OS)_$(ARCH)
Expand Down
2 changes: 1 addition & 1 deletion cmd/git-sync/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,7 @@ func setRepoReady() {
func addWorktreeAndSwap(ctx context.Context, gitRoot, dest, branch, rev string, depth int, hash string) error {
log.V(0).Info("syncing git", "rev", rev, "hash", hash)

args := []string{"fetch", "--tags"}
args := []string{"fetch", "-f", "--tags"}
if depth != 0 {
args = append(args, "--depth", strconv.Itoa(depth))
}
Expand Down
1 change: 1 addition & 0 deletions test_e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -995,6 +995,7 @@ CTR=$(docker run \
-v "$DOT_SSH":/dot_ssh:ro \
-v "$REPO":/src:ro \
e2e/test/test-sshd)
sleep 3 # wait for sshd to come up
IP=$(docker inspect "$CTR" | jq -r .[0].NetworkSettings.IPAddress)
git -C "$REPO" commit -qam "$TESTCASE"
GIT_SYNC \
Expand Down

0 comments on commit e7679fe

Please sign in to comment.