Skip to content

Commit 6613df4

Browse files
author
Marius Schuller
committed
Ubuntu 18.04 Bionic no longer supported
1 parent b8542ce commit 6613df4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ $ docker-machine create \
9191
## Options
9292

9393
- `--hetzner-api-token`: **required**. Your project-specific access token for the Hetzner Cloud API.
94-
- `--hetzner-image`: The name (or ID) of the Hetzner Cloud image to use, see [Images API](https://docs.hetzner.cloud/#resources-images-get) for how to get a list (defaults to `ubuntu-18.04`).
94+
- `--hetzner-image`: The name (or ID) of the Hetzner Cloud image to use, see [Images API](https://docs.hetzner.cloud/#resources-images-get) for how to get a list (defaults to `ubuntu-20.04`).
9595
- `--hetzner-image`: The architecture to use during image lookup, inferred from the server type if not explicitly given.
9696
- `--hetzner-image-id`: The id of the Hetzner cloud image (or snapshot) to use, see [Images API](https://docs.hetzner.cloud/#resources-images-get) for how to get a list (mutually excludes `--hetzner-image`).
9797
- `--hetzner-server-type`: The type of the Hetzner Cloud server, see [Server Types API](https://docs.hetzner.cloud/#resources-server-types-get) for how to get a list (defaults to `cx11`).
@@ -145,7 +145,7 @@ was used during creation.
145145
| CLI option | Environment variable | Default |
146146
|---------------------------------|-------------------------------| -------------------------- |
147147
| **`--hetzner-api-token`** | `HETZNER_API_TOKEN` | |
148-
| `--hetzner-image` | `HETZNER_IMAGE` | `ubuntu-18.04` |
148+
| `--hetzner-image` | `HETZNER_IMAGE` | `ubuntu-20.04` |
149149
| `--hetzner-image-arch` | `HETZNER_IMAGE_ARCH` | *(infer from server)* |
150150
| `--hetzner-image-id` | `HETZNER_IMAGE_ID` | |
151151
| `--hetzner-server-type` | `HETZNER_TYPE` | `cx11` |

driver/driver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ type Driver struct {
6262
}
6363

6464
const (
65-
defaultImage = "ubuntu-18.04"
65+
defaultImage = "ubuntu-20.04"
6666
defaultType = "cx11"
6767

6868
flagAPIToken = "hetzner-api-token"

0 commit comments

Comments
 (0)