Saltypie - salt-api wrapper and return parser
Project description
Saltypie - salt-api client and state return parser.
Installation
pip install saltypie
Local client example
Code:
from saltypie import Salt
from saltypie.output import StateOutput
salt = Salt(
url='https://192.168.70.11:8000',
username='saltapiuser',
passwd='abc123',
trust_host=True
)
ret = salt.execute(
client=Salt.CLIENT_LOCAL,
target='*',
fun='state.apply',
pillar={'sleep': 1}
)
sout = StateOutput(ret)
print(sout)
Output:
+ minion01 ---------------------------------------------------------+
| State Plot % ms Result |
+-------------------------------------------------------------------+
| test succeed with changes |||||||||||| 42.13% 0.404 True |
| test succeed without changes |||||||| 29.61% 0.284 True |
| test no operation |||||||| 28.26% 0.271 True |
+-------------------------------------------------------------------+
| Total elapsed time: 0.96ms |
+-------------------------------------------------------------------+
Runner client example
Code:
from saltypie import Salt
from saltypie.output import OrchestrationOutput
salt = Salt(
url='https://192.168.70.10:8000',
username='saltapiuser',
passwd='abc123',
trust_host=True
)
salt.eauth = 'pam'
ret = salt.execute(
client=Salt.CLIENT_RUNNER,
fun='state.orch',
args=['orch_fail'],
pillar={'sleep': 1}
)
orchout = OrchestrationOutput(ret, salt)
print(orchout.summary_table(max_bar_size=100, time_unit='s'))
Output:
+ Orchestration -----------------------------------------------------------------+
| Step Plot % Time(s) Result |
+--------------------------------------------------------------------------------+
| Step01 ||||||||||||||||||||||||| 25.20% 5.13 True |
| Step02 |||||||||||||||||||||||| 24.69% 5.03 True |
| Step03 |||||||||||||||||||||||| 24.79% 5.05 True |
| Step04 ||||||||||||||||||||||||| 25.32% 5.16 False |
+--------------------------------------------------------------------------------+
| Total elapsed time: 20.37s |
+--------------------------------------------------------------------------------+
Terminal safe mode
All output classes have the safe
property that is set to False
if the terminal encoding is dectected to be utf-8. To always use safe mode set it to True
:
Example:
from saltypie import Salt
from saltypie.output import StateOutput, OrchestrationOutput
sout = StateOutput(ret)
sout.safe = True
# play with the tables here ...
orchout = OrchestrationOutput(ret, salt)
orchout.safe = True
# play with the tables here ...
Disable table coloring
Set the output object colored
property to False
:
Example:
from saltypie import Salt
from saltypie.output import OrchestrationOutput
orchout = OrchestrationOutput(ret, salt)
orchout.colored = False
# play with the tables here ...
More examples
https://gitlab.com/cathaldallan/saltypie/tree/master/examples
Documentation
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
saltypie-0.14.0.tar.gz
(13.2 kB
view details)
File details
Details for the file saltypie-0.14.0.tar.gz
.
File metadata
- Download URL: saltypie-0.14.0.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0.post20190503 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/2.7.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc1b6220f9826f313c7cc444b2e4d7f34666f05eeca0969f0218570d86d4828b |
|
MD5 | 15dbae4456ffd2b08e74d6b8d704d202 |
|
BLAKE2b-256 | 53c91c7f45552a6e6931873c42a9ee83d6667ec3c7cc030e72137e9092fe8457 |