Skip to content

Commit

Permalink
Update ipam image name
Browse files Browse the repository at this point in the history
  • Loading branch information
chenchun committed Dec 5, 2019
1 parent eeb00c1 commit c98e9ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test:

.PHONY: image
image: all
hack/build.sh build_image_galaxy build_image_ipam
hack/build.sh image_galaxy image_ipam

.PHONY: codegen
codegen:
Expand Down
6 changes: 3 additions & 3 deletions hack/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ COPY bin/galaxy-ipam /usr/bin/
COPY hack/start-ipam.sh /root/
CMD ["/root/start-ipam.sh"]
EOF
local image=$REGISTRY/galaxy_ipam:${VERSION}
local image=$REGISTRY/galaxy-ipam:${VERSION}
echo docker build -f $temp_dockerfile -t $image .
docker build -f $temp_dockerfile -t $image .
docker push $image
Expand Down Expand Up @@ -125,10 +125,10 @@ function build::verify() {
build::ipam
fi
;;
build_image_galaxy)
image_galaxy)
build::galaxy_image
;;
build_image_ipam)
image_ipam)
build::ipam_image
;;
verify)
Expand Down
2 changes: 1 addition & 1 deletion hack/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ echo PATH=$PATH
export GOOS=linux
# Setting -p=1 because we have to execute database tests in serial. TODO use a database lock to do serial work
# Using a len=1 golang channel doesn't fix it.
# go test -coverpkg $PKG/pkg/... -coverprofile=coverage.txt -covermode=atomic -p=1 -v ./tools/... ./cmd/... ./cni/... ./pkg/...
go test -coverpkg $PKG/pkg/... -coverprofile=coverage.txt -covermode=atomic -p=1 -v ./tools/... ./cmd/... ./cni/... ./pkg/...
# go tool cover -func=coverage.txt
for i in e2e/k8s-vlan e2e/veth e2e/cni-request; do
ginkgo -v $i
Expand Down

0 comments on commit c98e9ac

Please sign in to comment.