File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ SHELL_SCRIPTS = $(wildcard _scripts/*.sh) rootfs/bin/boot
1313
1414# The following variables describe the containerized development environment
1515# and other build options
16- DEV_ENV_IMAGE := drycc/go-dev
16+ DEV_ENV_IMAGE := ${DEV_REGISTRY}/ drycc/go-dev
1717DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
1818DEV_ENV_CMD := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}
1919DEV_ENV_CMD_INT := docker run -it --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}
Original file line number Diff line number Diff line change 2020 spec :
2121 containers :
2222 - name : drycc-redis
23- image : {{.Values.image_registry}}{{ .Values.org }}/redis:{{ .Values.image_tag }}
23+ image : {{.Values.image_registry}}/ {{ .Values.org }}/redis:{{ .Values.image_tag }}
2424 imagePullPolicy : {{ .Values.image_pull_policy }}
2525{{- if or (.Values.limits_cpu) (.Values.limits_memory)}}
2626 resources :
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 "
55# limits_cpu: "100m"
66# limits_memory: "50Mi"
77
Original file line number Diff line number Diff line change 11MUTABLE_VERSION ?= canary
22VERSION ?= git-$(shell git rev-parse --short HEAD)
33
4- IMAGE := ${DRYCC_REGISTRY}${IMAGE_PREFIX}/${SHORT_NAME}:${VERSION}
5- MUTABLE_IMAGE := ${DRYCC_REGISTRY}${IMAGE_PREFIX}/${SHORT_NAME}:${MUTABLE_VERSION}
4+ IMAGE := ${DRYCC_REGISTRY}/ ${IMAGE_PREFIX}/${SHORT_NAME}:${VERSION}
5+ MUTABLE_IMAGE := ${DRYCC_REGISTRY}/ ${IMAGE_PREFIX}/${SHORT_NAME}:${MUTABLE_VERSION}
66
77info :
88 @echo " Build tag: ${VERSION} "
You can’t perform that action at this time.
0 commit comments