utils_devops 0.1.153__tar.gz → 0.1.155__tar.gz
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.
- {utils_devops-0.1.153 → utils_devops-0.1.155}/PKG-INFO +1 -1
- {utils_devops-0.1.153 → utils_devops-0.1.155}/pyproject.toml +1 -1
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/docker_ops.py +2 -1
- {utils_devops-0.1.153 → utils_devops-0.1.155}/README.md +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/__init__.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/core/__init__.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/core/datetimes.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/core/envs.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/core/files.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/core/logs.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/core/script_helpers.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/core/strings.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/core/systems.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/__init__.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/aws_ops.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/git_ops.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/interaction_ops.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/metrics_ops.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/network_ops.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/nginx_ops.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/notification_ops.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/performance_ops.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/ssh_ops.py +0 -0
- {utils_devops-0.1.153 → utils_devops-0.1.155}/src/utils_devops/extras/vault_ops.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: utils_devops
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.155
|
|
4
4
|
Summary: Lightweight DevOps utilities for automation scripts: config editing (YAML/JSON/INI/.env), templating, diffing, and CLI tools
|
|
5
5
|
License: MIT
|
|
6
6
|
Keywords: devops,automation,nginx,cli,jinja2,yaml,config,diff,templating,logging,docker,compose,file-ops
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "utils_devops"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.155" # Bumped for new string features + diffing
|
|
4
4
|
description = "Lightweight DevOps utilities for automation scripts: config editing (YAML/JSON/INI/.env), templating, diffing, and CLI tools"
|
|
5
5
|
authors = ["Hamed Sheikhan <sh.sheikhan.m@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -82,6 +82,7 @@ class ContainerInfo:
|
|
|
82
82
|
image: str
|
|
83
83
|
status: str
|
|
84
84
|
service: Optional[str] = None
|
|
85
|
+
ports: Dict[str, Any] = field(default_factory=dict)
|
|
85
86
|
|
|
86
87
|
# Core Docker operations
|
|
87
88
|
def get_docker_client():
|
|
@@ -778,8 +779,8 @@ def wait_for_healthy(
|
|
|
778
779
|
compose_file: str,
|
|
779
780
|
services: List[str],
|
|
780
781
|
timeout: int,
|
|
781
|
-
interval: int,
|
|
782
782
|
logger: logger,
|
|
783
|
+
interval: Optional[int] = 3,
|
|
783
784
|
env_file: Optional[str] = None
|
|
784
785
|
) -> bool:
|
|
785
786
|
"""Wait for services to become healthy with detailed status logging."""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|