aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/Yardstick-TC045-1471784569075
diff options
context:
space:
mode:
authorEmma Foley <emma.l.foley@intel.com>2018-11-26 15:49:02 +0000
committerRex Lee <limingjiang@huawei.com>2019-04-25 03:43:00 +0000
commit0074bc76124c5eb3880602031a3b81504911fc1b (patch)
treec49837c49de410a649cd2637a354ac7b4c3f2a67 /dashboard/Yardstick-TC045-1471784569075
parent368522d45d71d3bc40a337e4482ff0d5222defcf (diff)
[docs][nsb][install] Update source for sample pod files
The command for copying the sample pod files was incorrect in one instance (baremetal config) and inconsistent in other instances (using ./etc vs <yardstick>/etc vs <repo>/etc) This updates 13-nsb-installation.rst for consistency. Paths within the yardstick repo are preface with ``./``, as initially, the user was instructed to ``cd yardstick``. JIRA: YARDSTICK-1335 Change-Id: Ia5d5fae29373a177f775ea433c56f38bdeca536e Signed-off-by: Emma Foley <emma.l.foley@intel.com> (cherry picked from commit 93d78694924c6fe51cc6b4e05bab97af05fc002d)
Diffstat (limited to 'dashboard/Yardstick-TC045-1471784569075')
0 files changed, 0 insertions, 0 deletions
ght .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
##############################################################################
# Copyright (c) 2015 Ericsson AB and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

SHELL = /bin/bash

IMAGE = opnfv/yardstick

DOCKER_TAG = brahmaputra.0

.PHONY: all
all: .docker

.docker:
	/usr/bin/docker build --rm=true --no-cache=true -t $(IMAGE):$(DOCKER_TAG) yardstick-ci
	/usr/bin/docker tag -f $(IMAGE):$(DOCKER_TAG) $(IMAGE):latest
	touch .docker


.PHONY:	clean
clean:
	@docker ps | grep $(IMAGE) | awk '{print $$1}' | xargs -r docker stop
	@docker ps -a | grep $(IMAGE) | awk '{print $$1}' | xargs -r docker rm
	@echo "Docker images to remove:"
	@docker images | head -1 && docker images | grep $(IMAGE) || true
	@image_tags=($$(docker images | grep $(IMAGE) | awk '{print $$2}')) ; \
	for tag in "$${image_tags[@]}"; do \
	   echo "Removing docker image $(IMAGE):$$tag..." ; \
	   docker rmi $(IMAGE):$$tag ; \
	done
	rm -f .docker