Skip to content

Commit

Permalink
Merge pull request deis#4571 from carmstrong/azure-coreos-version
Browse files Browse the repository at this point in the history
ref(contrib/azure): specify CoreOS version as a parameter
  • Loading branch information
carmstrong committed Oct 7, 2015
2 parents d5b7ffa + 255a9c6 commit 89754c7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 7 additions & 1 deletion contrib/azure/arm-template.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,12 @@
"description": "Size in GB of the Docker volume."
},
"defaultValue": "100"
},
"coreosVersion": {
"type": "string",
"metadata": {
"description": "Version of CoreOS to deploy."
}
}
},
"variables": {
Expand Down Expand Up @@ -352,7 +358,7 @@
"publisher": "[variables('imagePublisher')]",
"offer": "[variables('imageOffer')]",
"sku": "[variables('imageSKU')]",
"version": "766.4.0"
"version": "[parameters('coreosVersion')]"
},
"dataDisks": [
{
Expand Down
3 changes: 3 additions & 0 deletions contrib/azure/parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@
},
"dockerVolumeSize": {
"value": 100
},
"coreosVersion": {
"value": "766.4.0"
}
}
2 changes: 1 addition & 1 deletion docs/installing_deis/azure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ or via the CLI with ``azure vm show``:

.. code-block:: console
$ azure vm show deisNode0 --resource-group deis
$ azure vm show deisNode0 --resource-group deis | grep 'Public IP address'
Configure DNS
-------------
Expand Down

0 comments on commit 89754c7

Please sign in to comment.