Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove exo v1 #147

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions docs/cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,23 +142,3 @@ cloud:
packages:
- nginx
```

## Exoscale

```yaml
kind: exoscale
launch_config:
service_offering: Micro
template: Linux Debian 11 (Bullseye) 64-bit
zone: ch-dk-2
ssh_key: my-ssh-key
use_ipv6: true
tags:
project: gemini
root_disk_size: 20
user_data: |
#cloud-config
manage_etc_hosts: true
packages:
- nginx
```
3 changes: 1 addition & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@ This is the connector to the API of your Cloud provider. It reads current availa
- [Hetzner Cloud](https://www.hetzner.com/cloud)
- [DigitalOcean](https://www.digitalocean.com)
- [Apache CloudStack](https://cloudstack.apache.org)
- [Exoscale](https://www.exoscale.com)
- [Vultr](https://www.vultr.com)

## Policy Adapters

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.
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.

!!! note
Multiple policies can be used in a single config.
Expand Down
7 changes: 0 additions & 7 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,6 @@ CLOUDSTACK_API_SECRET=<...>
DIGITALOCEAN_ACCESS_TOKEN=<...>
```

### Exoscale API settings

```ini
EXOSCALE_API_KEY=<...>
EXOSCALE_API_SECRET=<...>
```

### Hetzner Cloud API token

```ini
Expand Down
24 changes: 0 additions & 24 deletions scalr/cloud/adapters/exoscale.py

This file was deleted.

2 changes: 0 additions & 2 deletions scalr/cloud/factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from scalr.cloud.adapters.cloudstack import CloudstackCloudAdapter
from scalr.cloud.adapters.digitalocean import DigitaloceanCloudAdapter
from scalr.cloud.adapters.dummy import DummyCloudAdapter
from scalr.cloud.adapters.exoscale import ExoscaleCloudAdapter
from scalr.cloud.adapters.hcloud import HcloudCloudAdapter
from scalr.cloud.adapters.vultr import VultrCloudAdapter
from scalr.log import log
Expand All @@ -15,7 +14,6 @@ class CloudAdapterFactory:
ADAPTERS = {
"cloudscale_ch": CloudscaleCloudAdapter,
"cloudstack": CloudstackCloudAdapter,
"exoscale": ExoscaleCloudAdapter,
"digitalocean": DigitaloceanCloudAdapter,
"hcloud": HcloudCloudAdapter,
"vultr": VultrCloudAdapter,
Expand Down
Loading