7682d59aa9
Added a scaling out code sample for jclouds and modified the scaling out chapter to reference it. Also modified the build so that the jclouds draft documentation is now generated so that we can see the code appear in context. Change-Id: Iaf9ee952e008bdb68e52717524de723597da0690 Partial-Bug: #1449330
16 lines
401 B
Bash
Executable File
16 lines
401 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
mkdir -p publish-docs
|
|
|
|
# Publish documents to api-ref for developer.openstack.org
|
|
for tag in libcloud; do
|
|
tools/build-rst.sh firstapp \
|
|
--tag ${tag} --target "api-ref/firstapp-${tag}"
|
|
done
|
|
|
|
# Draft documents
|
|
for tag in dotnet fog openstacksdk pkgcloud shade jclouds; do
|
|
tools/build-rst.sh firstapp \
|
|
--tag ${tag} --target "api-ref/draft/firstapp-${tag}"
|
|
done
|