-
Notifications
You must be signed in to change notification settings - Fork 67
feat: introduce API-based execution engine as an alternative to legacy shell script orchestration #130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
satyakommula96
wants to merge
15
commits into
GoogleCloudDataproc:main
Choose a base branch
from
satyakommula96:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
feat: introduce API-based execution engine as an alternative to legacy shell script orchestration #130
Changes from 3 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
1163d8f
feat: introduce API-based execution engine as an alternative to legac…
satyakommula96 3df8b0f
Apply suggestions from code review
satyakommula96 94a0d5d
refactor: improve metadata parsing regex, standardize timestamp handl…
satyakommula96 9ba299d
Apply suggestions from code review
satyakommula96 f96a653
Apply suggestions from gemini code review
satyakommula96 1509139
address review comments
satyakommula96 42ac6fb
feat: add support for explicit OAuth credentials injection in ApiExec…
satyakommula96 9fa6fbc
chore: update copyright notices and default Dataproc version examples…
satyakommula96 ac28371
style: keep legacy 2-space indentation on all pre-existing files
satyakommula96 6ae6f7d
style: restore legacy 2-space indentation on shell_script_generator.py
satyakommula96 b9140bd
style: restore legacy 2-space indentation on generate_custom_image.py
satyakommula96 93465ee
style: restore legacy 2-space indentation on tests/test_args_parser.py
satyakommula96 9fa4c92
fix: restore default trusted_cert to tls/db.der and update tests
satyakommula96 4988073
revert
satyakommula96 7a36973
feat: print resolved Dataproc subminor version and base image uri to …
satyakommula96 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| name: Dataproc Custom Image | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| pull_request: | ||
| branches: [ main ] | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
| strategy: | ||
| matrix: | ||
| python-version: ["3.10", "3.11", "3.12"] | ||
|
|
||
| steps: | ||
| - name: Checkout Repository | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Set up Python ${{ matrix.python-version }} | ||
| uses: actions/setup-python@v6 | ||
| with: | ||
| python-version: ${{ matrix.python-version }} | ||
| cache: 'pip' | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install -r requirements.txt | ||
|
|
||
| - name: Run Ruff check (Linter) | ||
| run: ruff check . | ||
|
|
||
| - name: Run Ruff format check | ||
| run: ruff format --check . | ||
|
|
||
| - name: Run Unit Tests | ||
| run: python -m unittest discover -s tests -p "test_*.py" |
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.