Skip to content

Commit 83b2e02

Browse files
Merge pull request docker-archive-public#3753 from exoscale/exoscale/update-default
[Exoscale] Modify exoscale default driver values
2 parents cae7f91 + 1aeb154 commit 83b2e02

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/drivers/exoscale.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!--[metadata]>
22
+++
3-
title = "exoscale"
4-
description = "exoscale driver for machine"
3+
title = "Exoscale"
4+
description = "Exoscale driver for machine"
55
keywords = ["machine, exoscale, driver"]
66
[menu.main]
77
parent="smn_machine_drivers"
@@ -10,7 +10,7 @@ parent="smn_machine_drivers"
1010

1111
# Exoscale
1212

13-
Create machines on [exoscale](https://www.exoscale.ch/).
13+
Create machines on [Exoscale](https://www.exoscale.ch/).
1414

1515
Get your API key and API secret key from [API details](https://portal.exoscale.ch/account/api) and pass them to `machine create` with the `--exoscale-api-key` and `--exoscale-api-secret-key` options.
1616

@@ -25,7 +25,7 @@ Get your API key and API secret key from [API details](https://portal.exoscale.c
2525
- `--exoscale-api-secret-key`: **required** Your API secret key.
2626
- `--exoscale-instance-profile`: Instance profile.
2727
- `--exoscale-disk-size`: Disk size for the host in GB (10, 50, 100, 200, 400).
28-
- `--exoscale-image`: Image template (e.g. ubuntu-14.04, ubuntu-15.10).
28+
- `--exoscale-image`: Image template (e.g. ubuntu-16.04, ubuntu-15.10).
2929
- `--exoscale-security-group`: Security group. It will be created if it doesn't exist.
3030
- `--exoscale-availability-zone`: Exoscale availability zone.
3131
- `--exoscale-ssh-user`: SSH username, which must match the default SSH user for the used image.
@@ -45,9 +45,9 @@ There is a limit to the number of docker machines that an anti-affinity group ca
4545
| **`--exoscale-api-secret-key`** | `EXOSCALE_API_SECRET` | - |
4646
| `--exoscale-instance-profile` | `EXOSCALE_INSTANCE_PROFILE` | `small` |
4747
| `--exoscale-disk-size` | `EXOSCALE_DISK_SIZE` | `50` |
48-
| `--exoscale-image` | `EXOSCALE_IMAGE` | `ubuntu-15.10` |
48+
| `--exoscale-image` | `EXOSCALE_IMAGE` | `ubuntu-16.04` |
4949
| `--exoscale-security-group` | `EXOSCALE_SECURITY_GROUP` | `docker-machine` |
50-
| `--exoscale-availability-zone` | `EXOSCALE_AVAILABILITY_ZONE` | `ch-gva-2` |
50+
| `--exoscale-availability-zone` | `EXOSCALE_AVAILABILITY_ZONE` | `ch-dk-2` |
5151
| `--exoscale-ssh-user` | `EXOSCALE_SSH_USER` | `ubuntu` |
5252
| `--exoscale-userdata` | `EXOSCALE_USERDATA` | - |
5353
| `--exoscale-affinity-group` | `EXOSCALE_AFFINITY_GROUP` | `docker-machine` |

drivers/exoscale/exoscale.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ type Driver struct {
3636
const (
3737
defaultInstanceProfile = "small"
3838
defaultDiskSize = 50
39-
defaultImage = "ubuntu-15.10"
40-
defaultAvailabilityZone = "ch-gva-2"
39+
defaultImage = "ubuntu-16.04"
40+
defaultAvailabilityZone = "ch-dk-2"
4141
defaultSSHUser = "ubuntu"
4242
)
4343

0 commit comments

Comments
 (0)