forked from kubernetes/ingress-nginx
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Qing Hao
authored and
GitHub Enterprise
committed
Jul 9, 2019
1 parent
c53daa9
commit f7ea317
Showing
4 changed files
with
68 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,11 @@ | ||
GIT_REMOTE_URL = $(shell git config --get remote.origin.url) | ||
DOCKER_SERVER ?= hyc-cloud-private-integration-docker-local.artifactory.swg-devops.com | ||
DOCKER_USERNAME ?= | ||
DOCKER_PASSWORD ?= | ||
IMAGE_DESCRIPTION = IBM Cloud Private management-ingrss image | ||
IMAGE_NAME = icp-management-ingress | ||
IMAGE_REPO ?= hyc-cloud-private-integration-docker-local.artifactory.swg-devops.com/ibmcom | ||
RELEASE_TAG ?= latest | ||
ARCH = $(shell uname -m) | ||
DOCKER_FLAG = | ||
OPENRESTY_VERSION ?= 1.13.6.2 | ||
IMAGE_DESCRIPTION = IBM Cloud Private management-ingress image | ||
IMAGE_VENDOR=IBM | ||
IMAGE_SUMMARY=$(IMAGE_DESCRIPTION) | ||
|
||
ifeq ($(ARCH), x86_64) | ||
IMAGE_NAME_ARCH = $(IMAGE_NAME)-amd64 | ||
else | ||
IMAGE_NAME_ARCH = $(IMAGE_NAME)-$(ARCH) | ||
endif | ||
|
||
MANIFEST_VERSION ?= v0.7.0 | ||
|
||
OPENRESTY_VERSION ?= 1.13.6.2 | ||
RELEASE_TAG ?= latest | ||
DOCKER_REGISTRY ?= hyc-cloud-private-integration-docker-local.artifactory.swg-devops.com | ||
DOCKER_NAMESPACE ?= ibmcom | ||
DOCKER_USER ?= | ||
DOCKER_PASS ?= | ||
GOFILES = $(shell find . -type f -name '*.go' -not -path "./vendor/*") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters