f9c6a34a23
- When building an image, optionally also push that image if PUSH_IMAGE=true - Default value to false Change-Id: I206e0261624b8a286d83e86bdb493e003887c8e6
89 lines
2.3 KiB
Makefile
89 lines
2.3 KiB
Makefile
# Copyright 2017 AT&T Intellectual Property. All other rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
DRYDOCK_IMAGE_NAME ?= drydock
|
|
IMAGE_PREFIX ?= attcomdev
|
|
IMAGE_TAG ?= latest
|
|
HELM ?= helm
|
|
PROXY ?= http://one.proxy.att.com:8080
|
|
USE_PROXY ?= false
|
|
PUSH_IMAGE ?= false
|
|
|
|
export
|
|
|
|
# Build all docker images for this project
|
|
.PHONY: images
|
|
images: build_drydock
|
|
|
|
# Run an image locally and exercise simple tests
|
|
.PHONY: run_images
|
|
run_images: run_drydock
|
|
|
|
# Run tests
|
|
.PHONY: tests
|
|
tests: coverage_test
|
|
|
|
# Run unit and Postgres integration tests in coverage mode
|
|
.PHONY: coverage_test
|
|
coverage_test: build_drydock
|
|
tox -e coverage
|
|
|
|
# Run the drydock container and exercise simple tests
|
|
.PHONY: run_drydock
|
|
run_drydock: build_drydock
|
|
tools/drydock_image_run.sh
|
|
|
|
# Create tgz of the chart
|
|
.PHONY: charts
|
|
charts: clean
|
|
$(HELM) dep up charts/drydock
|
|
$(HELM) package charts/drydock
|
|
|
|
# Perform Linting
|
|
.PHONY: lint
|
|
lint: pep8 helm_lint
|
|
|
|
# Dry run templating of chart
|
|
.PHONY: dry-run
|
|
dry-run: clean
|
|
tools/helm_tk.sh $(HELM)
|
|
$(HELM) template charts/drydock
|
|
|
|
# Make targets intended for use by the primary targets above.
|
|
|
|
.PHONY: build_drydock
|
|
build_drydock:
|
|
ifeq ($(USE_PROXY), true)
|
|
docker build -t $(IMAGE_PREFIX)/$(DRYDOCK_IMAGE_NAME):$(IMAGE_TAG) -f images/drydock/Dockerfile . --build-arg http_proxy=$(PROXY) --build-arg https_proxy=$(PROXY)
|
|
else
|
|
docker build -t $(IMAGE_PREFIX)/$(DRYDOCK_IMAGE_NAME):$(IMAGE_TAG) -f images/drydock/Dockerfile .
|
|
endif
|
|
ifeq ($(PUSH_IMAGE), true)
|
|
docker push $(IMAGE_PREFIX)/$(DRYDOCK_IMAGE_NAME):$(IMAGE_TAG)
|
|
endif
|
|
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf build
|
|
|
|
.PHONY: pep8
|
|
pep8:
|
|
tox -e pep8
|
|
|
|
.PHONY: helm_lint
|
|
helm_lint: clean
|
|
tools/helm_tk.sh $(HELM)
|
|
$(HELM) lint charts/drydock
|