* update version

* update changelog for 0.10.1 release

* update relevent links
This commit is contained in:
Jacob Freck 2018-11-02 11:45:53 -07:00 коммит произвёл GitHub
Родитель a0bc2f0f09
Коммит 5379b00b73
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
6 изменённых файлов: 14 добавлений и 6 удалений

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

@ -1,6 +1,14 @@
# Changelog
## 0.10.0 (2018-10-29)
## 0.10.1 (2018-11-02)
**Features**
* Include cluster creation time in cluster list and cluster get output (#678) ([a0bc2f0](https://github.com/Azure/aztk/commit/a0bc2f0)), closes [#678](https://github.com/Azure/aztk/issues/678)
**Bug Fixes**
* Verify Batch task has node_info (#681) ([385040d](https://github.com/Azure/aztk/commit/385040d)), closes [#681](https://github.com/Azure/aztk/issues/681)
## 0.10.0 (2018-10-29)
**Breaking Changes**
* Remove deprecated SDK API code (#671) ([fc50536](https://github.com/Azure/aztk/commit/fc50536)), closes [#671](https://github.com/Azure/aztk/issues/671)

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

@ -27,7 +27,7 @@ This toolkit is built on top of Azure Batch but does not require any Azure Batch
```
3. Login or register for an [Azure Account](https://azure.microsoft.com), navigate to [Azure Cloud Shell](https://shell.azure.com), and run:
```sh
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.9.1/account_setup.sh -O account_setup.sh &&
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.1/account_setup.sh -O account_setup.sh &&
chmod 755 account_setup.sh &&
/bin/bash account_setup.sh
```

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

@ -4,7 +4,7 @@ echo "Installing dependencies..." &&
pip install --force-reinstall --upgrade --user pyyaml==3.12 azure==3.0.0 azure-cli-core==2.0.30 msrestazure==0.4.25 > /dev/null 2>&1 &&
echo "Finished installing dependencies." &&
echo "Getting account setup script..." &&
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.9.1/account_setup.py -O account_setup.py &&
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.1/account_setup.py -O account_setup.py &&
chmod 755 account_setup.py &&
echo "Finished getting account setup script." &&
echo "Running account setup script..." &&

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

@ -23,7 +23,7 @@
# DEALINGS IN THE SOFTWARE.
major = 0
minor = 10
patch = 0
patch = 1
suffix = ""

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

@ -78,7 +78,7 @@ The script outputs all of the necessary information to use `aztk`, copy the outp
#### Usage
Copy and paste the following into an [Azure Cloud Shell](https://shell.azure.com):
```sh
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.9.1/account_setup.sh &&
wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.1/account_setup.sh &&
chmod 755 account_setup.sh &&
/bin/bash account_setup.sh
```

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

@ -24,7 +24,7 @@ aztk spark cluster create ... --docker-repo aztk/base:spark2.2.0 "--docker-run-o
```
## Using a custom Docker Image
You can build your own Docker image on top or beneath one of our supported base images _OR_ you can modify the [supported Dockerfiles](https://github.com/Azure/aztk/tree/v0.9.1/docker-image) and build your own image that way.
You can build your own Docker image on top or beneath one of our supported base images _OR_ you can modify the [supported Dockerfiles](https://github.com/Azure/aztk/tree/v0.10.1/docker-image) and build your own image that way.
Once you have your Docker image built and hosted publicly, you can then use the **--docker-repo** parameter in your **aztk spark cluster create** command to point to it.