Add local pipeline run support to the CLI#1039
Draft
SharangC96 wants to merge 2 commits into
Draft
Conversation
Introduce local pipeline execution that bypasses the Clarifai API and submits Argo Workflows directly to a Minikube/K3s/kind cluster. New modules in clarifai/runners/pipelines/local/: - preflight.py: validates Docker, kubectl, Argo CRDs, cluster type detection - image_loader.py: builds step Docker images and loads into local cluster - spec_adapter.py: converts templateRef to inline templates for local execution - secrets.py: creates K8s Secrets with Clarifai env vars - submitter.py: submits Argo Workflow CR via kubectl - log_streamer.py: streams pod logs in real-time with step prefixes - runner.py: orchestrates the full local pipeline run CLI changes: - Add --local and --namespace flags to clarifai pipeline run - When --local is set, skip all API calls and run locally Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
| if result.returncode != 0: | ||
| raise RuntimeError(f'Failed to create secret {secret_name}: {result.stderr}') | ||
|
|
||
| logger.info(f'Created K8s secret {secret_name} in namespace {namespace}.') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
clarifai pipeline run --localfor running pipeline workflows on a local Kubernetes clusterTesting
clarifai pipeline run --local /tmp/test-local-pipeline