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.
Files changed (58) hide show
  1. deployml/__init__.py +0 -0
  2. deployml/cli/__init__.py +0 -0
  3. deployml/cli/cli.py +838 -0
  4. deployml/enum/__init__.py +0 -0
  5. deployml/enum/cloud_provider.py +10 -0
  6. deployml/enum/deployment_type.py +12 -0
  7. deployml/templates/gcp/cloud_run/base_main.tf.j2 +20 -0
  8. deployml/templates/gcp/cloud_run/main.tf.j2 +309 -0
  9. deployml/templates/gcp/cloud_run/mlflow_main.tf.j2 +378 -0
  10. deployml/templates/gcp/cloud_run/terraform.tfvars.j2 +71 -0
  11. deployml/templates/gcp/cloud_run/variables.tf.j2 +219 -0
  12. deployml/templates/gcp/cloud_run/wandb_main.tf.j2 +112 -0
  13. deployml/templates/gcp/cloud_vm/main.tf.j2 +2897 -0
  14. deployml/templates/gcp/cloud_vm/terraform.tfvars.j2 +185 -0
  15. deployml/templates/gcp/cloud_vm/variables.tf.j2 +352 -0
  16. deployml/terraform/modules/cloud_sql_postgres/main.tf +77 -0
  17. deployml/terraform/modules/cloud_sql_postgres/outputs.tf +87 -0
  18. deployml/terraform/modules/cloud_sql_postgres/variables.tf +57 -0
  19. deployml/terraform/modules/cron/cloud/gcp/cloud_run/main.tf +250 -0
  20. deployml/terraform/modules/cron/cloud/gcp/cloud_run/outputs.tf +38 -0
  21. deployml/terraform/modules/cron/cloud/gcp/cloud_run/variables.tf +119 -0
  22. deployml/terraform/modules/fastapi/cloud/gcp/cloud_run/main.tf +134 -0
  23. deployml/terraform/modules/fastapi/cloud/gcp/cloud_run/outputs.tf +14 -0
  24. deployml/terraform/modules/fastapi/cloud/gcp/cloud_run/variables.tf +96 -0
  25. deployml/terraform/modules/feast/cloud/gcp/cloud_run/main.tf +213 -0
  26. deployml/terraform/modules/feast/cloud/gcp/cloud_run/outputs.tf +46 -0
  27. deployml/terraform/modules/feast/cloud/gcp/cloud_run/variables.tf +139 -0
  28. deployml/terraform/modules/feast/cloud/gcp/cloud_vm/feast_env.tpl +36 -0
  29. deployml/terraform/modules/feast/cloud/gcp/cloud_vm/main.tf +96 -0
  30. deployml/terraform/modules/feast/cloud/gcp/cloud_vm/outputs.tf +54 -0
  31. deployml/terraform/modules/feast/cloud/gcp/cloud_vm/variables.tf +93 -0
  32. deployml/terraform/modules/grafana/cloud/gcp/cloud_run/main.tf +75 -0
  33. deployml/terraform/modules/grafana/cloud/gcp/cloud_run/outputs.tf +4 -0
  34. deployml/terraform/modules/grafana/cloud/gcp/cloud_run/variables.tf +55 -0
  35. deployml/terraform/modules/mlflow/cloud/gcp/cloud_run/main.tf +104 -0
  36. deployml/terraform/modules/mlflow/cloud/gcp/cloud_run/outputs.tf +24 -0
  37. deployml/terraform/modules/mlflow/cloud/gcp/cloud_run/variables.tf +132 -0
  38. deployml/terraform/modules/mlflow/cloud/gcp/cloud_vm/main.tf +1194 -0
  39. deployml/terraform/modules/mlflow/cloud/gcp/cloud_vm/variables.tf +197 -0
  40. deployml/terraform/modules/offline_scoring/cloud/gcp/cloud_run/main.tf +210 -0
  41. deployml/terraform/modules/offline_scoring/cloud/gcp/cloud_run/outputs.tf +45 -0
  42. deployml/terraform/modules/offline_scoring/cloud/gcp/cloud_run/variables.tf +182 -0
  43. deployml/terraform/modules/wandb/cloud/gcp/cloud_run/main.tf +79 -0
  44. deployml/terraform/modules/wandb/cloud/gcp/cloud_run/outputs.tf +24 -0
  45. deployml/terraform/modules/wandb/cloud/gcp/cloud_run/variables.tf +109 -0
  46. deployml/terraform/modules/wandb/cloud/gcp/cloud_vm/main.tf +222 -0
  47. deployml/terraform/modules/wandb/cloud/gcp/cloud_vm/variables.tf +124 -0
  48. deployml/utils/__init__.py +0 -0
  49. deployml/utils/banner.py +22 -0
  50. deployml/utils/constants.py +51 -0
  51. deployml/utils/helpers.py +435 -0
  52. deployml/utils/infracost.py +319 -0
  53. deployml/utils/menu.py +41 -0
  54. deployml_core-0.0.8.dist-info/LICENSE +21 -0
  55. deployml_core-0.0.8.dist-info/METADATA +105 -0
  56. deployml_core-0.0.8.dist-info/RECORD +58 -0
  57. deployml_core-0.0.8.dist-info/WHEEL +4 -0
  58. deployml_core-0.0.8.dist-info/entry_points.txt +3 -0
deployml/__init__.py ADDED
File without changes
File without changes