Skip to content

Commit

Permalink
Merge pull request projectcalico#405 from caseydavenport/fix-release-…
Browse files Browse the repository at this point in the history
…instr

Make release instructions clear about latest images
  • Loading branch information
caseydavenport authored Oct 30, 2017
2 parents 6eb4365 + 86e1a5c commit 6b7a874
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,22 @@ endif
docker tag $(DEPLOY_CONTAINER_NAME) quay.io/$(DEPLOY_CONTAINER_NAME):$(VERSION)
docker tag $(DEPLOY_CONTAINER_NAME) quay.io/$(DEPLOY_CONTAINER_NAME):latest

@echo "Now push the tag and images. Then create a release on Github and attach the dist/calico and dist/calico-ipam binaries"
@echo "git push origin $(VERSION)"
@echo "docker push calico/cni:$(VERSION)"
@echo "docker push quay.io/calico/cni:$(VERSION)"
@echo "docker push calico/cni:latest"
@echo "docker push quay.io/calico/cni:latest"
@echo ""
@echo "Push the git tag."
@echo ""
@echo " git push origin $(VERSION)"
@echo ""
@echo "Then create a release on Github and attach the dist/calico and dist/calico-ipam binaries"
@echo ""
@echo "Push the versioned release images."
@echo ""
@echo " docker push calico/cni:$(VERSION)"
@echo " docker push quay.io/calico/cni:$(VERSION)"
@echo ""
@echo "If this is a stable release, push the latest images as well."
@echo ""
@echo " docker push calico/cni:latest"
@echo " docker push quay.io/calico/cni:latest"


# To update upstream dependencies, delete the glide.lock file first.
Expand Down

0 comments on commit 6b7a874

Please sign in to comment.