heat-templates/hot/software-config/heat-container-agent
ricolin 53800d1057 Remove docs, deprecated hooks, tests
Remove all deprecated hooks and tests.
Also since all test and hooks are removed,
we can remove the declare of python language in classifier.
Since we didn't actually provide any document,
we should remove docs too.

Hooks are maintained as Agents under heat-agents repo now.
Hooks in heat-templates are deprecated for a while. Hence, remove
hooks in heat-templates.

Depends-On: https://review.openstack.org/#/c/584774/
Change-Id: Ia886f71eaf99d75db0f9a6a7dfbe8664995c26e7
2019-01-03 20:18:06 +13:00
..
scripts Remove docs, deprecated hooks, tests 2019-01-03 20:18:06 +13:00
Dockerfile Fix heat-container-agent 2017-06-22 10:45:34 +02:00
README.rst Remove docs, deprecated hooks, tests 2019-01-03 20:18:06 +13:00

README.rst

Steps to build container image with all container hooks

Install the heat-agents repo alongside heat-templates. Some file in this directory are symlinks that assume the presence of the heat-agents directory in the same directory as the heat-templates directory.

Docker build does not work with soft links. Therefore, convert all soft links to hardlinks.

$ find -type l -exec bash -c 'ln -f "$(readlink -m "$0")" "$0"' {} ;

Build docker image with container hooks.

$docker build -t xxxx/heat-container-agent ./

Push the image to docker hub.

$docker push xxxx/heat-container-agent