diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..09be0cf --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,34 @@ + + +## Expected Behavior + + + +## Current Behavior + + + +## Possible Solution + + + +## Steps to Reproduce (for bugs) + + +1. +2. +3. +4. + +## Context + + + +## Your Environment + +* CNI plugin version (e.g. `/opt/cni/bin/calico --version`): +* Orchestrator version (e.g. kubernetes, mesos, rkt): +* CNI config: +* Operating System and version: +* Link to your project (optional): + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..5cf8a26 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,28 @@ +## Description + + + + +## Todos +- [ ] Tests +- [ ] Documentation +- [ ] Release note + +## Release Note + + +```release-note +None required +``` diff --git a/Makefile b/Makefile index c470868..6d57d4b 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,6 @@ comma := , prefix_linux = $(addprefix linux/,$(strip $1)) join_platforms = $(subst $(space),$(comma),$(call prefix_linux,$(strip $1))) - # list of arches *not* to build when doing *-all # until s390x works correctly EXCLUDEARCH ?= s390x @@ -312,7 +311,7 @@ release-publish: release-prereqs git push origin $(VERSION) # Push images. - $(MAKE) push-all IMAGETAG=$(VERSION) + $(MAKE) push-all push-manifests push-non-manifests IMAGETAG=$(VERSION) @echo "Finalize the GitHub release based on the pushed tag." @echo "" @@ -327,7 +326,7 @@ release-publish: release-prereqs # run this target for alpha / beta / release candidate builds, or patches to earlier Calico versions. ## Pushes `latest` release images. WARNING: Only run this for latest stable releases. release-publish-latest: release-prereqs - $(MAKE) push-all IMAGETAG=latest + $(MAKE) push-all push-manifests push-non-manifests IMAGETAG=latest # release-prereqs checks that the environment is configured properly to create a release. release-prereqs: