Skip to content

Commit 89754c7

Browse files
committed
Merge pull request #4571 from carmstrong/azure-coreos-version
ref(contrib/azure): specify CoreOS version as a parameter
2 parents d5b7ffa + 255a9c6 commit 89754c7

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

contrib/azure/arm-template.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@
8181
"description": "Size in GB of the Docker volume."
8282
},
8383
"defaultValue": "100"
84+
},
85+
"coreosVersion": {
86+
"type": "string",
87+
"metadata": {
88+
"description": "Version of CoreOS to deploy."
89+
}
8490
}
8591
},
8692
"variables": {
@@ -352,7 +358,7 @@
352358
"publisher": "[variables('imagePublisher')]",
353359
"offer": "[variables('imageOffer')]",
354360
"sku": "[variables('imageSKU')]",
355-
"version": "766.4.0"
361+
"version": "[parameters('coreosVersion')]"
356362
},
357363
"dataDisks": [
358364
{

contrib/azure/parameters.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,8 @@
2525
},
2626
"dockerVolumeSize": {
2727
"value": 100
28+
},
29+
"coreosVersion": {
30+
"value": "766.4.0"
2831
}
2932
}

docs/installing_deis/azure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ or via the CLI with ``azure vm show``:
8585

8686
.. code-block:: console
8787
88-
$ azure vm show deisNode0 --resource-group deis
88+
$ azure vm show deisNode0 --resource-group deis | grep 'Public IP address'
8989
9090
Configure DNS
9191
-------------

0 commit comments

Comments
 (0)