Skip to content

Commit 6b7da53

Browse files
authored
remove exo v1 (#147)
1 parent 33c1328 commit 6b7da53

File tree

5 files changed

+1
-55
lines changed

5 files changed

+1
-55
lines changed

docs/cloud.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -142,23 +142,3 @@ cloud:
142142
packages:
143143
- nginx
144144
```
145-
146-
## Exoscale
147-
148-
```yaml
149-
kind: exoscale
150-
launch_config:
151-
service_offering: Micro
152-
template: Linux Debian 11 (Bullseye) 64-bit
153-
zone: ch-dk-2
154-
ssh_key: my-ssh-key
155-
use_ipv6: true
156-
tags:
157-
project: gemini
158-
root_disk_size: 20
159-
user_data: |
160-
#cloud-config
161-
manage_etc_hosts: true
162-
packages:
163-
- nginx
164-
```

docs/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@ This is the connector to the API of your Cloud provider. It reads current availa
1010
- [Hetzner Cloud](https://www.hetzner.com/cloud)
1111
- [DigitalOcean](https://www.digitalocean.com)
1212
- [Apache CloudStack](https://cloudstack.apache.org)
13-
- [Exoscale](https://www.exoscale.com)
1413
- [Vultr](https://www.vultr.com)
1514

1615
## Policy Adapters
1716

18-
A policy defines check of a target value (amount of CPU, amount of HTTP requests, etc) and where to gather the metric from, such as the following.
17+
A policy defines check of a target value (amount of CPU, amount of HTTP requests, etc) and where to gather the metric from, such as the following.
1918

2019
!!! note
2120
Multiple policies can be used in a single config.

docs/install.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,6 @@ CLOUDSTACK_API_SECRET=<...>
4242
DIGITALOCEAN_ACCESS_TOKEN=<...>
4343
```
4444

45-
### Exoscale API settings
46-
47-
```ini
48-
EXOSCALE_API_KEY=<...>
49-
EXOSCALE_API_SECRET=<...>
50-
```
51-
5245
### Hetzner Cloud API token
5346

5447
```ini

scalr/cloud/adapters/exoscale.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

scalr/cloud/factory.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
from scalr.cloud.adapters.cloudstack import CloudstackCloudAdapter
44
from scalr.cloud.adapters.digitalocean import DigitaloceanCloudAdapter
55
from scalr.cloud.adapters.dummy import DummyCloudAdapter
6-
from scalr.cloud.adapters.exoscale import ExoscaleCloudAdapter
76
from scalr.cloud.adapters.hcloud import HcloudCloudAdapter
87
from scalr.cloud.adapters.vultr import VultrCloudAdapter
98
from scalr.log import log
@@ -15,7 +14,6 @@ class CloudAdapterFactory:
1514
ADAPTERS = {
1615
"cloudscale_ch": CloudscaleCloudAdapter,
1716
"cloudstack": CloudstackCloudAdapter,
18-
"exoscale": ExoscaleCloudAdapter,
1917
"digitalocean": DigitaloceanCloudAdapter,
2018
"hcloud": HcloudCloudAdapter,
2119
"vultr": VultrCloudAdapter,

0 commit comments

Comments
 (0)