Client for Argo Workflows
Project description
Argo Workflows Client
Python client for Argo Workflows
Installation
pip install argo-workflows
Usage
If you're familiar with Kubernetes client, the Argo client follows the same behaviour.
from argo.workflows.client import V1alpha1Api
from argo.workflows.config import load_kube_config
load_kube_config() # loads local configuration from ~/.kube/config
And to list Workflows from a namespace (say argo
):
v1alpha1 = V1alpha1Api()
wfs = v1alpha1.list_namespaced_workflows(namespace="argo")
To submit a Workflow
, one would simply load it from a YAML* and submit it as such:
import requests
import yaml
namespace = "argo"
# hello-world example
resp = requests.get("https://raw.githubusercontent.com/argoproj/argo/master/examples/hello-world.yaml")
resp.raise_for_status()
manifest: dict = yaml.safe_load(resp.text)
# Submit the Workflow to the `argo` namespace
v1alpha1.create_namespaced_workflow(namespace, manifest)
* When working on a higher level of abstraction, check out the Argo Python DSL
Versioning
The client is generated from the Argo and Kubernetes OpenAPI specification.
We follow semantic versioning, the client starts at version 1.0
which matches Argo release 2.3.0
and continues onwards.
Compatibility matrix
Argo 2.3 | Argo 2.4 | Argo 2.5 | |
---|---|---|---|
client-python 1.0 | ✓ | - | - |
client-python 2.0 | + | ✓ | - |
client-python 3.0 | + | + | ✓ |
Key:
✓
Exactly the same features / API objects in both client-python and the Kubernetes version.+
client-python has features or api objects that may not be present in the Kubernetes cluster, but everything they have in common will work.-
The Kubernetes cluster has features the client-python library can't use (additional API objects, etc).
We try to be consistent with Argo as much as possible and hence we created special branches for user convenience --- for example argo/v2.4.0 is identical with Argo release v2.4.0.
These can be then installed directly from github:
pip install -e "git+git://github.com/CermakM/argo-client-python@argo/v2.4.0#egg=argo-workflows"
:warning: The compatibility for such cases is not guaranteed
Code generation
If you wish to generate code yourself, you can do so by running make generate
with the ARGO_VERSION
environment variable being set to the you want to generate the client for.
Before
in the Makefile:
- make sure to select a compatible
KUBERNETES_BRANCH
according to Argo's Gopkg.toml - make sure to select a compatible version of kubernetes-client
- update requirements.txt and Pipfile
For additional configuration check out the Makefile.
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
File details
Details for the file argo-workflows-fvdnabee-3.6.1.tar.gz
.
File metadata
- Download URL: argo-workflows-fvdnabee-3.6.1.tar.gz
- Upload date:
- Size: 223.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 67a437d6a130f8343eb09ae0b030aad691a16f8cb8f697f2752992173ae663ff |
|
MD5 | 2bc3e5c203a07ed2833a4cc3634df9be |
|
BLAKE2b-256 | aace7497d190f9364cb9c578980cb93b17f04d0a42ba19c648cab758e6bbdafb |
File details
Details for the file argo_workflows_fvdnabee-3.6.1-py3-none-any.whl
.
File metadata
- Download URL: argo_workflows_fvdnabee-3.6.1-py3-none-any.whl
- Upload date:
- Size: 381.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 22deed8d3e7587033604e4f065a6729442f18d550d15761f19ac6730ab9c7cc5 |
|
MD5 | e07b55585a586d23d980ce26cba14527 |
|
BLAKE2b-256 | b981acee151d99f4eefec22531a4ee89a1039de3dd370c0f14aa6827e8376923 |