NebulaPythonSDK is a Pythonic SDK to manage Nebula container orchestrator
Project description
Nebula-Python-SDK
An SDK for managing nebula via python.
translates all of Nebula API calls to something more pythonic.
How To Use
first get NebulaPythonSDK onto your machine
# Install from PyPi
pip install NebulaPythonSDK
now use it in your code
# Load API wrapper from library
from NebulaPythonSDK import Nebula
# Create API object.
# port defaults to 80, protocol defaults to "http" & request_timeout defaults to 60 if any of them is not set.
connection = Nebula(username="your_nebula_user", password="your_nebula_pass", host="nebula.example.com", port=80, protocol="http", request_timeout=60)
# List apps
app_list = connection.list_apps()
# List app info
app_config = connection.list_app_info("app_name")
# Create app
app_conf = {
"containers_per_cpu": 8,
"env_vars": {
"test": "blabla",
"test3t2t32": "tesg4ehgee"
},
"docker_ulimits": [],
"networks": ["nebula"],
"running": True,
"volumes": ["/tmp:/tmp/1", "/var/tmp/:/var/tmp/1:ro"],
"containers_per": {
"cpu": 6
},
"starting_ports": [
{
"81": 80
}
],
"docker_image": "httpd",
"privileged": False,
"devices": []
}
connection.create_app("app_name", app_conf)
Note that the response returned is a requests formatted response.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file NebulaPythonSDK-1.5.1.tar.gz.
File metadata
- Download URL: NebulaPythonSDK-1.5.1.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a309a5bf2c808d79c69a127ea65592a4744668ccdb10e38c8e7ffd587b9e8d5e
|
|
| MD5 |
324240655842bc0f344f90c5ca2b0971
|
|
| BLAKE2b-256 |
dbe281c902fa13a3209b98ad29606f998c134a999af238625a73db2aaeeb6555
|
File details
Details for the file NebulaPythonSDK-1.5.1-py2-none-any.whl.
File metadata
- Download URL: NebulaPythonSDK-1.5.1-py2-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/2.7.15
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cefbefc83962893c18a9f914f3c0b71e5407baa44582c96e05be8d1f45371f36
|
|
| MD5 |
70bfb184b63b9cba4db78280db11751d
|
|
| BLAKE2b-256 |
f40abe12500c24bcb0bf8aaca3b1ffe8003d2dc243caf22fde253794c07bd3b5
|