-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace workflow_engine references to jobflow
- Loading branch information
Marcelo Ariel Hamra
committed
Jun 7, 2024
1 parent
df1d15c
commit 8b07c42
Showing
64 changed files
with
337 additions
and
249 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
Metadata-Version: 2.1 | ||
Name: jobflow | ||
Version: 1.0 | ||
Summary: Wazuh testing utilities to help programmers automate deployment tests | ||
Home-page: https://github.com/wazuh | ||
Author: Wazuh | ||
Author-email: [email protected] | ||
License: GPLv2 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
setup.py | ||
jobflow/README.MD | ||
jobflow/__init__.py | ||
jobflow/__main__.py | ||
jobflow/models.py | ||
jobflow/requirements-dev.txt | ||
jobflow/schema_validator.py | ||
jobflow/task.py | ||
jobflow/workflow_processor.py | ||
jobflow.egg-info/PKG-INFO | ||
jobflow.egg-info/SOURCES.txt | ||
jobflow.egg-info/dependency_links.txt | ||
jobflow.egg-info/entry_points.txt | ||
jobflow.egg-info/not-zip-safe | ||
jobflow.egg-info/top_level.txt | ||
jobflow/__pycache__/__init__.cpython-310.pyc | ||
jobflow/__pycache__/__main__.cpython-310.pyc | ||
jobflow/__pycache__/models.cpython-310.pyc | ||
jobflow/__pycache__/schema_validator.cpython-310.pyc | ||
jobflow/__pycache__/task.cpython-310.pyc | ||
jobflow/__pycache__/workflow_processor.cpython-310.pyc | ||
jobflow/examples/agent/aws/Jenkins-agents-test.yaml | ||
jobflow/examples/agent/aws/test-agent-basic-info.yaml | ||
jobflow/examples/agent/aws/test-agent-complete-macOS.yaml | ||
jobflow/examples/agent/aws/test-agent-complete.yaml | ||
jobflow/examples/agent/aws/test-agent-restart-ins-prov.yaml | ||
jobflow/examples/agent/aws/test-agent-stop-ins-prov.yaml | ||
jobflow/examples/agent/aws/test-agent-suse.yaml | ||
jobflow/examples/agent/aws/test-agent-time.yaml | ||
jobflow/examples/agent/aws/test-agent-uninstall-ins-prov.yaml | ||
jobflow/examples/agent/aws/test-agent-windows-complete.yaml | ||
jobflow/examples/agent/aws/test-full-agent-with-live.yaml | ||
jobflow/examples/agent/vagrant/test-agent-basic-info-vagrant.yaml | ||
jobflow/examples/agent/vagrant/test-agent-complete-1.yaml | ||
jobflow/examples/agent/vagrant/test-agent-complete-2.yaml | ||
jobflow/examples/agent/vagrant/test-agent-complete-macOS.yaml | ||
jobflow/examples/agent/vagrant/test-agent-restart-ins-prov-1.yaml | ||
jobflow/examples/agent/vagrant/test-agent-restart-ins-prov-2.yaml | ||
jobflow/examples/agent/vagrant/test-agent-stop-ins-prov-1.yaml | ||
jobflow/examples/agent/vagrant/test-agent-stop-ins-prov-2.yaml | ||
jobflow/examples/agent/vagrant/test-agent-uninstall-ins-prov-1.yaml | ||
jobflow/examples/agent/vagrant/test-agent-uninstall-ins-prov-2.yaml | ||
jobflow/examples/agent/vagrant/test-agent-windows-complete.yaml | ||
jobflow/examples/central_components/aws/Jenkins-central-component-test.yaml | ||
jobflow/examples/central_components/aws/dtt1-central_components-poc-aws.yaml | ||
jobflow/examples/central_components/vagrant/dtt1-central_components-poc-vagrant.yaml | ||
jobflow/examples/manager/aws/Jenkins-manager-test.yaml | ||
jobflow/examples/manager/aws/dtt1-managers-poc-aws.yaml | ||
jobflow/examples/manager/vagrant/dtt1-managers-poc-vagrant.yaml | ||
jobflow/logger/__init__.py | ||
jobflow/logger/config.yaml | ||
jobflow/logger/filter.py | ||
jobflow/logger/logger.py | ||
jobflow/logger/__pycache__/__init__.cpython-310.pyc | ||
jobflow/logger/__pycache__/logger.cpython-310.pyc | ||
jobflow/schemas/schema_v1.json | ||
jobflow/tests/TESTING-README.md | ||
jobflow/tests/conftest.py | ||
jobflow/tests/test_dag.py | ||
jobflow/tests/test_schema_validator.py | ||
jobflow/tests/test_task.py | ||
jobflow/tests/test_workflow_file.py | ||
jobflow/tests/test_workflow_processor.py | ||
jobflow/tests/__pycache__/conftest.cpython-310-pytest-7.4.4.pyc | ||
jobflow/tests/__pycache__/test_dag.cpython-310-pytest-7.4.4.pyc | ||
jobflow/tests/__pycache__/test_schema_validator.cpython-310-pytest-7.4.4.pyc | ||
jobflow/tests/__pycache__/test_task.cpython-310-pytest-7.4.4.pyc | ||
jobflow/tests/__pycache__/test_workflow_file.cpython-310-pytest-7.4.4.pyc | ||
jobflow/tests/__pycache__/test_workflow_processor.cpython-310-pytest-7.4.4.pyc | ||
jobflow/tests/data/wf-ko-no-path-on-cleanup.yaml | ||
jobflow/tests/data/wf-ko-no-path-on-do.yaml | ||
jobflow/tests/data/wf-ko-schema-error.yaml | ||
jobflow/tests/data/wf-ok.yaml |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[console_scripts] | ||
engine = jobflow.__main__:main |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
jobflow |
This file contains 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
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
This file contains 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
Oops, something went wrong.