1
0
mirror of synced 2024-11-28 15:56:01 +03:00

Update Azure template

- Remove Ubuntu 18.04, which is EOL after May 2023.
This commit is contained in:
hwdsl2 2023-05-05 00:12:21 -05:00
parent efcfbe8da3
commit 7cf82872e4

View File

@ -25,12 +25,11 @@
"type": "string", "type": "string",
"allowedValues": [ "allowedValues": [
"ubuntu22.04", "ubuntu22.04",
"ubuntu20.04", "ubuntu20.04"
"ubuntu18.04"
], ],
"defaultValue": "ubuntu22.04", "defaultValue": "ubuntu22.04",
"metadata": { "metadata": {
"description": "OS to use. Ubuntu 22.04, 20.04 or 18.04." "description": "OS to use. Ubuntu 22.04 or 20.04."
} }
}, },
"VMSize": { "VMSize": {
@ -73,12 +72,6 @@
"sku": "20_04-lts", "sku": "20_04-lts",
"version": "latest" "version": "latest"
}, },
"ubuntu18.04": {
"publisher": "Canonical",
"offer": "UbuntuServer",
"sku": "18.04-LTS",
"version": "latest"
},
"installScriptURL": "https://raw.githubusercontent.com/hwdsl2/setup-ipsec-vpn/master/azure/install.sh", "installScriptURL": "https://raw.githubusercontent.com/hwdsl2/setup-ipsec-vpn/master/azure/install.sh",
"installCommand": "[concat('sh install.sh ', variables('quote'), parameters('preSharedKey'), variables('quote'), ' ', variables('quote'), parameters('username'), variables('quote'), ' ', variables('quote'), parameters('password'), variables('quote'))]" "installCommand": "[concat('sh install.sh ', variables('quote'), parameters('preSharedKey'), variables('quote'), ' ', variables('quote'), parameters('username'), variables('quote'), ' ', variables('quote'), parameters('password'), variables('quote'))]"
}, },