deployml-core 0.0.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- deployml/__init__.py +0 -0
- deployml/cli/__init__.py +0 -0
- deployml/cli/cli.py +838 -0
- deployml/enum/__init__.py +0 -0
- deployml/enum/cloud_provider.py +10 -0
- deployml/enum/deployment_type.py +12 -0
- deployml/templates/gcp/cloud_run/base_main.tf.j2 +20 -0
- deployml/templates/gcp/cloud_run/main.tf.j2 +309 -0
- deployml/templates/gcp/cloud_run/mlflow_main.tf.j2 +378 -0
- deployml/templates/gcp/cloud_run/terraform.tfvars.j2 +71 -0
- deployml/templates/gcp/cloud_run/variables.tf.j2 +219 -0
- deployml/templates/gcp/cloud_run/wandb_main.tf.j2 +112 -0
- deployml/templates/gcp/cloud_vm/main.tf.j2 +2897 -0
- deployml/templates/gcp/cloud_vm/terraform.tfvars.j2 +185 -0
- deployml/templates/gcp/cloud_vm/variables.tf.j2 +352 -0
- deployml/terraform/modules/cloud_sql_postgres/main.tf +77 -0
- deployml/terraform/modules/cloud_sql_postgres/outputs.tf +87 -0
- deployml/terraform/modules/cloud_sql_postgres/variables.tf +57 -0
- deployml/terraform/modules/cron/cloud/gcp/cloud_run/main.tf +250 -0
- deployml/terraform/modules/cron/cloud/gcp/cloud_run/outputs.tf +38 -0
- deployml/terraform/modules/cron/cloud/gcp/cloud_run/variables.tf +119 -0
- deployml/terraform/modules/fastapi/cloud/gcp/cloud_run/main.tf +134 -0
- deployml/terraform/modules/fastapi/cloud/gcp/cloud_run/outputs.tf +14 -0
- deployml/terraform/modules/fastapi/cloud/gcp/cloud_run/variables.tf +96 -0
- deployml/terraform/modules/feast/cloud/gcp/cloud_run/main.tf +213 -0
- deployml/terraform/modules/feast/cloud/gcp/cloud_run/outputs.tf +46 -0
- deployml/terraform/modules/feast/cloud/gcp/cloud_run/variables.tf +139 -0
- deployml/terraform/modules/feast/cloud/gcp/cloud_vm/feast_env.tpl +36 -0
- deployml/terraform/modules/feast/cloud/gcp/cloud_vm/main.tf +96 -0
- deployml/terraform/modules/feast/cloud/gcp/cloud_vm/outputs.tf +54 -0
- deployml/terraform/modules/feast/cloud/gcp/cloud_vm/variables.tf +93 -0
- deployml/terraform/modules/grafana/cloud/gcp/cloud_run/main.tf +75 -0
- deployml/terraform/modules/grafana/cloud/gcp/cloud_run/outputs.tf +4 -0
- deployml/terraform/modules/grafana/cloud/gcp/cloud_run/variables.tf +55 -0
- deployml/terraform/modules/mlflow/cloud/gcp/cloud_run/main.tf +104 -0
- deployml/terraform/modules/mlflow/cloud/gcp/cloud_run/outputs.tf +24 -0
- deployml/terraform/modules/mlflow/cloud/gcp/cloud_run/variables.tf +132 -0
- deployml/terraform/modules/mlflow/cloud/gcp/cloud_vm/main.tf +1194 -0
- deployml/terraform/modules/mlflow/cloud/gcp/cloud_vm/variables.tf +197 -0
- deployml/terraform/modules/offline_scoring/cloud/gcp/cloud_run/main.tf +210 -0
- deployml/terraform/modules/offline_scoring/cloud/gcp/cloud_run/outputs.tf +45 -0
- deployml/terraform/modules/offline_scoring/cloud/gcp/cloud_run/variables.tf +182 -0
- deployml/terraform/modules/wandb/cloud/gcp/cloud_run/main.tf +79 -0
- deployml/terraform/modules/wandb/cloud/gcp/cloud_run/outputs.tf +24 -0
- deployml/terraform/modules/wandb/cloud/gcp/cloud_run/variables.tf +109 -0
- deployml/terraform/modules/wandb/cloud/gcp/cloud_vm/main.tf +222 -0
- deployml/terraform/modules/wandb/cloud/gcp/cloud_vm/variables.tf +124 -0
- deployml/utils/__init__.py +0 -0
- deployml/utils/banner.py +22 -0
- deployml/utils/constants.py +51 -0
- deployml/utils/helpers.py +435 -0
- deployml/utils/infracost.py +319 -0
- deployml/utils/menu.py +41 -0
- deployml_core-0.0.8.dist-info/LICENSE +21 -0
- deployml_core-0.0.8.dist-info/METADATA +105 -0
- deployml_core-0.0.8.dist-info/RECORD +58 -0
- deployml_core-0.0.8.dist-info/WHEEL +4 -0
- deployml_core-0.0.8.dist-info/entry_points.txt +3 -0
deployml/__init__.py
ADDED
|
File without changes
|
deployml/cli/__init__.py
ADDED
|
File without changes
|