Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into update-gcr-worker-guide
Browse files Browse the repository at this point in the history
  • Loading branch information
zzstoatzz committed Nov 28, 2023
2 parents 7be8366 + 231f68a commit af8ad4f
Show file tree
Hide file tree
Showing 11 changed files with 1,533 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# JetBrains
.idea

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Added `CloudRunJobV2` and `CloudRunWorkerV2` for executing Prefect flows via Google Cloud Run - [#220](https://github.com/PrefectHQ/prefect-gcp/pull/220)

### Changed

### Deprecated
Expand Down
1 change: 1 addition & 0 deletions docs/cloud_run_worker_v2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
::: prefect_gcp.workers.cloud_run_v2
2 changes: 2 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,12 @@ nav:
- BigQuery: bigquery.md
- Secret Manager: secret_manager.md
- Cloud Run: cloud_run.md
- Cloud Run V2: cloud_run_v2.md
- AI Platform: aiplatform.md
- Deployment Steps: deployments/steps.md
- Workers:
- Cloud Run: cloud_run_worker.md
- Cloud Run V2: cloud_run_worker_v2.md
- Vertex AI: vertex_worker.md

extra:
Expand Down
1 change: 1 addition & 0 deletions prefect_gcp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from .secret_manager import GcpSecret # noqa
from .workers.vertex import VertexAIWorker # noqa
from .workers.cloud_run import CloudRunWorker # noqa
from .workers.cloud_run_v2 import CloudRunWorkerV2 # noqa

register_renamed_module(
"prefect_gcp.projects", "prefect_gcp.deployments", start_date="Jun 2023"
Expand Down
Empty file added prefect_gcp/models/__init__.py
Empty file.
Loading

0 comments on commit af8ad4f

Please sign in to comment.