File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ include versioning.mk
44
55# dockerized development environment variables
66REPO_PATH := github.com/drycc/${SHORT_NAME}
7- DEV_ENV_IMAGE := drycc/go-dev
7+ DEV_ENV_IMAGE := ${DEV_REGISTRY}/ drycc/go-dev
88DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
99DEV_ENV_PREFIX := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR}
1010DEV_ENV_CMD := ${DEV_ENV_PREFIX} ${DEV_ENV_IMAGE}
Original file line number Diff line number Diff line change 2424 serviceAccount : drycc-builder
2525 containers :
2626 - name : drycc-builder
27- image : {{.Values.image_registry}}{{.Values.org}}/builder:{{.Values.image_tag}}
27+ image : {{.Values.image_registry}}/ {{.Values.org}}/builder:{{.Values.image_tag}}
2828 imagePullPolicy : {{.Values.image_pull_policy}}
2929 ports :
3030 - containerPort : 2223
Original file line number Diff line number Diff line change 11org : " drycc"
22image_pull_policy : " Always"
33image_tag : " canary"
4- image_registry : " "
4+ image_registry : " docker.io "
55service :
66 # Service type default to LoadBalancer
77 type : ClusterIP
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ MUTABLE_VERSION ?= canary
22VERSION ?= git-$(shell git rev-parse --short HEAD)
33IMAGE_PREFIX ?= drycc
44
5- IMAGE := ${DRYCC_REGISTRY}${IMAGE_PREFIX}/${SHORT_NAME}:${VERSION}
6- MUTABLE_IMAGE := ${DRYCC_REGISTRY}${IMAGE_PREFIX}/${SHORT_NAME}:${MUTABLE_VERSION}
5+ IMAGE := ${DRYCC_REGISTRY}/ ${IMAGE_PREFIX}/${SHORT_NAME}:${VERSION}
6+ MUTABLE_IMAGE := ${DRYCC_REGISTRY}/ ${IMAGE_PREFIX}/${SHORT_NAME}:${MUTABLE_VERSION}
77
88info :
99 @echo " Build tag: ${VERSION} "
You can’t perform that action at this time.
0 commit comments