View instance information on all supported cloud providers
Project description
# cloudview
View instance information on all supported cloud providers: Amazon Web Services, Azure, Google Compute Platform & OpenStack.
[![Build Status](https://travis-ci.org/ricardobranco777/cloudview.svg?branch=master)](https://travis-ci.org/ricardobranco777/cloudview)
## Usage
```
Usage: cloudview [OPTIONS]
Options:
-h, --help show this help message and exit
-l, --log debug|info|warning|error|critical
-o, --output text|html|json|JSON output type
-p, --port PORT run a web server on port PORT
-r, --reverse reverse sort
-s, --sort name|time|status sort type
-S, --status stopped|running|all filter by instance status
-T, --time TIME_FORMAT time format as used by strftime(3)
-v, --verbose be verbose
-V, --version show version and exit
Filter options:
--filter-aws NAME VALUE may be specified multiple times
--filter-azure FILTER Filter for Azure
--filter-gcp FILTER Filter for GCP
--filter-nova NAME VALUE may be specified multiple times
```
**NOTES**:
- Use `--output JSON` to dump _all_ available information received from each provider.
- Remember to set these environment variables:
- `GOOGLE_APPLICATION_CREDENTIALS`
- `AWS_ACCESS_KEY_ID`
- `AWS_DEFAULT_REGION`
- `AWS_SECRET_ACCESS_KEY`
- `AZURE_TENANT_ID`
- `AZURE_SUBSCRIPTION_ID`
- `AZURE_CLIENT_SECRET`
- `AZURE_CLIENT_ID`
- `OS_USERNAME`
- `OS_PASSWORD`
- `OS_PROJECT_ID`
- `OS_AUTH_URL`
- `OS_USER_DOMAIN_NAME`
- `OS_CACERT`
This script is best run with Docker to have all dependencies in just one package, but it may be run stand-alone on systems with Python 3.5+
## To run stand-alone:
```
pip3 install --user cloudview
```
## To run with Docker:
Build image with:
```
docker build -t cloud --pull .
```
Export the variables listed in the [.dockerenv](.dockerenv) file and run with:
```
docker run --rm -v "$GOOGLE_APPLICATION_CREDENTIALS:$GOOGLE_APPLICATION_CREDENTIALS:ro" -v "$OS_CACERT:$OS_CACERT:ro" --env-file .dockerenv cloudview --status all
```
## Run the web server with [Docker Compose](https://docs.docker.com/compose/install/):
If you have a TLS key pair, rename the certificate to `cert.pem`, the private key to `key.pem` and the file containing the password to the private key to `key.txt`. Then edit the [docker-compose.yml](docker-compose.yml) file to mount them to `/etc/nginx/ssl` in read-only mode like this: `- "/path/to/tls:/etc/nginx/ssl:ro"`.
If you don't have a TLS key pair, a self-signed certificate will be generated. Be aware of the typical problems with time resolution related to TLS certificates.
```
docker-compose up -d
```
Now browse to [https://localhost:8443](https://localhost:8443)
To stop the web server:
```
docker-compose down
```
To rebuild with latest version:
```
docker-compose build --pull
```
### Filter options (AWS)
Usage: `--filter-aws NAME VALUE`
May be specified multiple times.
Complete list of filters:
[https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html)
Example: `--filter-aws tag-key production`
Note: If `instance-state-name` is present in the filter name, the `--status` option is ignored.
### Filter options (Azure)
Usage: `--filter-azure FILTER`
Note: This filtering is done in the client SDK using [JMESPath](http://jmespath.org/) to filter the JSON response. You can view the JSON output using `--output JSON` or following the instance link in the HTML table.
Complete list of filters:
https://github.com/MicrosoftDocs/azure-docs-cli/blob/master/docs-ref-conceptual/query-azure-cli.md#filter-arrays
Example: `--filter-azure "location == 'westeurope' && !(name == 'admin')"`
Note: If `instance_view.statuses` is present in the filter, the `--status` option is ignored.
### Filter options (GCP)
Usage: `--filter-gcp FILTER`
Note: You may filter the resources listed in the API response.
Complete list of resources:
[https://cloud.google.com/compute/docs/reference/rest/v1/instances/list](https://cloud.google.com/compute/docs/reference/rest/v1/instances/list)
Example: `--filter-gcp 'name: instance-1 AND canIpForward: false'`
Note: If `status` is present in the filter, the `--status` option is ignored.
### Filter options (Nova)
Usage: `--filter-nova NAME VALUE`
May be specified multiple times.
Complete list of filters:
https://developer.openstack.org/api-ref/compute/?expanded=list-servers-detail#listServers
Example: `--filter-nova name admin`1
Note: If `status` is present in the filter, the `--status` option is ignored.
## TODO
- Search by tag (this can be done currently with the filter-\* options)
- Sort by instance type
- Use apache-libcloud?
- Improve documentation with use cases
View instance information on all supported cloud providers: Amazon Web Services, Azure, Google Compute Platform & OpenStack.
[![Build Status](https://travis-ci.org/ricardobranco777/cloudview.svg?branch=master)](https://travis-ci.org/ricardobranco777/cloudview)
## Usage
```
Usage: cloudview [OPTIONS]
Options:
-h, --help show this help message and exit
-l, --log debug|info|warning|error|critical
-o, --output text|html|json|JSON output type
-p, --port PORT run a web server on port PORT
-r, --reverse reverse sort
-s, --sort name|time|status sort type
-S, --status stopped|running|all filter by instance status
-T, --time TIME_FORMAT time format as used by strftime(3)
-v, --verbose be verbose
-V, --version show version and exit
Filter options:
--filter-aws NAME VALUE may be specified multiple times
--filter-azure FILTER Filter for Azure
--filter-gcp FILTER Filter for GCP
--filter-nova NAME VALUE may be specified multiple times
```
**NOTES**:
- Use `--output JSON` to dump _all_ available information received from each provider.
- Remember to set these environment variables:
- `GOOGLE_APPLICATION_CREDENTIALS`
- `AWS_ACCESS_KEY_ID`
- `AWS_DEFAULT_REGION`
- `AWS_SECRET_ACCESS_KEY`
- `AZURE_TENANT_ID`
- `AZURE_SUBSCRIPTION_ID`
- `AZURE_CLIENT_SECRET`
- `AZURE_CLIENT_ID`
- `OS_USERNAME`
- `OS_PASSWORD`
- `OS_PROJECT_ID`
- `OS_AUTH_URL`
- `OS_USER_DOMAIN_NAME`
- `OS_CACERT`
This script is best run with Docker to have all dependencies in just one package, but it may be run stand-alone on systems with Python 3.5+
## To run stand-alone:
```
pip3 install --user cloudview
```
## To run with Docker:
Build image with:
```
docker build -t cloud --pull .
```
Export the variables listed in the [.dockerenv](.dockerenv) file and run with:
```
docker run --rm -v "$GOOGLE_APPLICATION_CREDENTIALS:$GOOGLE_APPLICATION_CREDENTIALS:ro" -v "$OS_CACERT:$OS_CACERT:ro" --env-file .dockerenv cloudview --status all
```
## Run the web server with [Docker Compose](https://docs.docker.com/compose/install/):
If you have a TLS key pair, rename the certificate to `cert.pem`, the private key to `key.pem` and the file containing the password to the private key to `key.txt`. Then edit the [docker-compose.yml](docker-compose.yml) file to mount them to `/etc/nginx/ssl` in read-only mode like this: `- "/path/to/tls:/etc/nginx/ssl:ro"`.
If you don't have a TLS key pair, a self-signed certificate will be generated. Be aware of the typical problems with time resolution related to TLS certificates.
```
docker-compose up -d
```
Now browse to [https://localhost:8443](https://localhost:8443)
To stop the web server:
```
docker-compose down
```
To rebuild with latest version:
```
docker-compose build --pull
```
### Filter options (AWS)
Usage: `--filter-aws NAME VALUE`
May be specified multiple times.
Complete list of filters:
[https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeInstances.html)
Example: `--filter-aws tag-key production`
Note: If `instance-state-name` is present in the filter name, the `--status` option is ignored.
### Filter options (Azure)
Usage: `--filter-azure FILTER`
Note: This filtering is done in the client SDK using [JMESPath](http://jmespath.org/) to filter the JSON response. You can view the JSON output using `--output JSON` or following the instance link in the HTML table.
Complete list of filters:
https://github.com/MicrosoftDocs/azure-docs-cli/blob/master/docs-ref-conceptual/query-azure-cli.md#filter-arrays
Example: `--filter-azure "location == 'westeurope' && !(name == 'admin')"`
Note: If `instance_view.statuses` is present in the filter, the `--status` option is ignored.
### Filter options (GCP)
Usage: `--filter-gcp FILTER`
Note: You may filter the resources listed in the API response.
Complete list of resources:
[https://cloud.google.com/compute/docs/reference/rest/v1/instances/list](https://cloud.google.com/compute/docs/reference/rest/v1/instances/list)
Example: `--filter-gcp 'name: instance-1 AND canIpForward: false'`
Note: If `status` is present in the filter, the `--status` option is ignored.
### Filter options (Nova)
Usage: `--filter-nova NAME VALUE`
May be specified multiple times.
Complete list of filters:
https://developer.openstack.org/api-ref/compute/?expanded=list-servers-detail#listServers
Example: `--filter-nova name admin`1
Note: If `status` is present in the filter, the `--status` option is ignored.
## TODO
- Search by tag (this can be done currently with the filter-\* options)
- Sort by instance type
- Use apache-libcloud?
- Improve documentation with use cases
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cloudview-0.2.6.tar.gz
(15.3 kB
view details)
Built Distribution
cloudview-0.2.6-py3-none-any.whl
(20.8 kB
view details)
File details
Details for the file cloudview-0.2.6.tar.gz
.
File metadata
- Download URL: cloudview-0.2.6.tar.gz
- Upload date:
- Size: 15.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9981db7a13fd35a52d55d1d5e98747df71fac16f1918386d479f51b75dd4b592 |
|
MD5 | ac1affaef38d70edfc31d4d4350ebabb |
|
BLAKE2b-256 | 3740de263a129b346b066eae5bc9b24adb1382dbecab872cdaa8ffb914e535f2 |
File details
Details for the file cloudview-0.2.6-py3-none-any.whl
.
File metadata
- Download URL: cloudview-0.2.6-py3-none-any.whl
- Upload date:
- Size: 20.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f068afcc045f7beb3c63f0a733c6e97558119a914c067c63128ec2e83eaa811 |
|
MD5 | 64e83496f054ff433daa859a6f5718be |
|
BLAKE2b-256 | a8b8a1a843922866bfe5de92579002b6f7e3de6185bc3090530163ed7bcd8145 |