- Tag for 2.9.6 release (mainly to generate a 2.9.x RTD version)
This commit is contained in:
Fred Park 2017-10-03 08:03:47 -07:00
Родитель 1784e06eb4
Коммит 75157e91f6
7 изменённых файлов: 67 добавлений и 38 удалений

Просмотреть файл

@ -2,6 +2,10 @@
## [Unreleased] ## [Unreleased]
## [2.9.6] - 2017-10-03
### Added
- Migrate to Read the Docs for [documentation](http://batch-shipyard.readthedocs.io/en/latest/)
### Fixed ### Fixed
- RemoteFS disk attach fixes - RemoteFS disk attach fixes
- Nvidia docker volume mount check - Nvidia docker volume mount check
@ -861,7 +865,8 @@ transfer is disabled
#### Added #### Added
- Initial release - Initial release
[Unreleased]: https://github.com/Azure/batch-shipyard/compare/2.9.5...HEAD [Unreleased]: https://github.com/Azure/batch-shipyard/compare/2.9.6...HEAD
[2.9.6]: https://github.com/Azure/batch-shipyard/compare/2.9.5...2.9.6
[2.9.5]: https://github.com/Azure/batch-shipyard/compare/2.9.4...2.9.5 [2.9.5]: https://github.com/Azure/batch-shipyard/compare/2.9.4...2.9.5
[2.9.4]: https://github.com/Azure/batch-shipyard/compare/2.9.3...2.9.4 [2.9.4]: https://github.com/Azure/batch-shipyard/compare/2.9.3...2.9.4
[2.9.3]: https://github.com/Azure/batch-shipyard/compare/2.9.2...2.9.3 [2.9.3]: https://github.com/Azure/batch-shipyard/compare/2.9.2...2.9.3

Просмотреть файл

@ -95,16 +95,14 @@ as a Docker image:
Please see [the installation guide](https://github.com/Azure/batch-shipyard/blob/master/docs/01-batch-shipyard-installation.md) Please see [the installation guide](https://github.com/Azure/batch-shipyard/blob/master/docs/01-batch-shipyard-installation.md)
for more information regarding installation and requirements. for more information regarding installation and requirements.
## Documentation ## Documentation and Recipes
Please refer to the Please refer to the
[Batch Shipyard Guide](https://github.com/Azure/batch-shipyard/blob/master/docs) [Batch Shipyard Documentation on Read the Docs](http://batch-shipyard.readthedocs.io/en/latest/).
for a complete primer on concepts, usage and a quickstart guide.
Please visit the Visit the
[Batch Shipyard Recipes](https://github.com/Azure/batch-shipyard/blob/master/recipes) [Batch Shipyard Recipes](https://github.com/Azure/batch-shipyard/blob/master/recipes)
for various sample Docker workloads using Azure Batch and Batch Shipyard section for various sample Docker workloads using Azure Batch and Batch
after you have completed the introductory sections of the Batch Shipyard Shipyard.
Guide.
## Batch Shipyard Compute Node OS Support ## Batch Shipyard Compute Node OS Support
Batch Shipyard is currently compatible with supported Marketplace Linux VMs Batch Shipyard is currently compatible with supported Marketplace Linux VMs

Просмотреть файл

@ -22,4 +22,4 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE. # DEALINGS IN THE SOFTWARE.
__version__ = '2.9.5' __version__ = '2.9.6'

1
docs/CHANGELOG.md Symbolic link
Просмотреть файл

@ -0,0 +1 @@
../CHANGELOG.md

Просмотреть файл

@ -1,30 +1,9 @@
# Batch Shipyard Guide # Batch Shipyard Documentation and Guides
This directory is a starting point for using the Batch Shipyard tooling Please see the
and effectively running your batch-style Docker workloads on Azure Batch. [Batch Shipyard Documentation on Read the Docs](http://batch-shipyard.readthedocs.io/en/latest/).
1. [Introduction](00-introduction.md) You can substitute `latest` at the end of the Read the Docs URL to display
2. [Installation](01-batch-shipyard-installation.md) documentation for a specific version of Batch Shipyard. If that version does
3. [Quick Start](02-batch-shipyard-quickstart.md) not exist on Read the Docs, you can select a tagged verison on the GitHub
4. [From Scratch: Step-by-Step](05-batch-shipyard-from-scratch-step-by-step.md) repo page (select the `Branch` pulldown and switch to the `Tags` tab) to
5. [Configuration](10-batch-shipyard-configuration.md) dispaly older version documentation.
* [Credentials Configuration](11-batch-shipyard-configuration-credentials.md)
* [Global Configuration](12-batch-shipyard-configuration-global.md)
* [Pool Configuration](13-batch-shipyard-configuration-pool.md)
* [Jobs Configuration](14-batch-shipyard-configuration-jobs.md)
* [FS Configuration](15-batch-shipyard-configuration-fs.md)
6. [CLI Commands and Usage](20-batch-shipyard-usage.md)
7. [Autoscale](30-batch-shipyard-autoscale.md)
8. [Task Factories](35-batch-shipyard-task-factory.md)
9. [Azure Functions and Batch Shipyard](60-batch-shipyard-site-extension.md)
10. [Custom Image for Host Compute Nodes](63-batch-shipyard-custom-images.md)
11. [Remote Filesystems](65-batch-shipyard-remote-fs.md)
12. [Data Movement](70-batch-shipyard-data-movement.md)
13. [Azure KeyVault for Credential Management](74-batch-shipyard-azure-keyvault.md)
14. [Credential Encryption](75-batch-shipyard-credential-encryption.md)
15. [Batch Shipyard and Multi-Instance Tasks](80-batch-shipyard-multi-instance-tasks.md)
16. [Interactive SSH Sessions and Docker Tunnels](85-batch-shipyard-ssh-docker-tunnel.md)
17. [Low-Priority Compute Node Considerations](95-low-priority-considerations.md)
18. [Troubleshooting Guide](96-troubleshooting-guide.md)
19. [FAQ](97-faq.md)
20. [Contributing Recipes](98-contributing-recipes.md)
21. [Current Limitations](99-current-limitations.md)

1
docs/index.md Symbolic link
Просмотреть файл

@ -0,0 +1 @@
../README.md

45
mkdocs.yml Normal file
Просмотреть файл

@ -0,0 +1,45 @@
site_name: Batch Shipyard
site_description: Azure Batch Shipyard
site_url: https://github.com/Azure/batch-shipyard
repo_url: https://github.com/Azure/batch-shipyard
theme: readthedocs
pages:
- Home: index.md
- Introduction: 00-introduction.md
- Installation and Quickstart:
- Installation: 01-batch-shipyard-installation.md
- Quickstart: 02-batch-shipyard-quickstart.md
- From Scratch: 05-batch-shipyard-from-scratch-step-by-step.md
- Configuration:
- Overview: 10-batch-shipyard-configuration.md
- Credentials: 11-batch-shipyard-configuration-credentials.md
- Global: 12-batch-shipyard-configuration-global.md
- Pool: 13-batch-shipyard-configuration-pool.md
- Jobs: 14-batch-shipyard-configuration-jobs.md
- RemoteFS: 15-batch-shipyard-configuration-fs.md
- CLI Commands and Usage: 20-batch-shipyard-usage.md
- In-Depth Feature Guides:
- Autoscale: 30-batch-shipyard-autoscale.md
- Task Factory: 35-batch-shipyard-task-factory.md
- Azure Functions and Batch Shipyard: 60-batch-shipyard-site-extension.md
- Custom Images for Host Compute Nodes: 63-batch-shipyard-custom-images.md
- Remote Filesystems: 65-batch-shipyard-remote-fs.md
- Data Movement: 70-batch-shipyard-data-movement.md
- Azure KeyVault for Credential Management: 74-batch-shipyard-azure-keyvault.md
- Credential Encryption: 75-batch-shipyard-credential-encryption.md
- Multi-instance (MPI) Tasks: 80-batch-shipyard-multi-instance-tasks.md
- Interactive SSH and Tunneling: 85-batch-shipyard-ssh-docker-tunnel.md
- Other Guides:
- Low Priority Compute Node Considerations: 95-low-priority-considerations.md
- Troubleshooting Guide: 96-troubleshooting-guide.md
- FAQ: 97-faq.md
- Current Limitations: 99-current-limitations.md
- Contributing Recipes: 98-contributing-recipes.md
- Change Log: CHANGELOG.md
markdown_extensions:
- admonition
- codehilite
- fenced_code
- sane_lists