Fix Oslo-Genconfig formatting

This commit is contained in:
Pete Birley 2017-04-10 11:22:22 -05:00
parent 16508c32ee
commit c68bfcf0c5
2 changed files with 67 additions and 64 deletions

View File

@ -8,10 +8,13 @@ project and/or branch desired as necessary.
``` bash ``` bash
docker build . -t gen-oslo-openstack-helm docker build . -t gen-oslo-openstack-helm
PROJECT=heat
sudo rm -rf /tmp/${PROJECT} || true
docker run -it --rm \ docker run -it --rm \
-e PROJECT="heat" \ -e PROJECT="${PROJECT}" \
-e PROJECT_BRANCH="stable/newton" \ -e PROJECT_BRANCH="stable/newton" \
-e PROJECT_REPO=https://git.openstack.org/openstack/heat.git \ -e PROJECT_REPO=https://git.openstack.org/openstack/${PROJECT}.git \
-v /tmp:/tmp:rw \
gen-oslo-openstack-helm gen-oslo-openstack-helm
``` ```