-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcontainer_deployments_example.py
More file actions
221 lines (190 loc) · 7.35 KB
/
container_deployments_example.py
File metadata and controls
221 lines (190 loc) · 7.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
"""Example script demonstrating container deployment management using the DataCrunch API.
This script provides a comprehensive example of container deployment lifecycle,
including creation, monitoring, scaling, and cleanup.
"""
import os
import time
from datacrunch import DataCrunchClient
from datacrunch.exceptions import APIException
from datacrunch.containers.containers import (
Container,
ComputeResource,
ScalingOptions,
ScalingPolicy,
ScalingTriggers,
QueueLoadScalingTrigger,
UtilizationScalingTrigger,
HealthcheckSettings,
VolumeMount,
ContainerRegistrySettings,
Deployment,
VolumeMountType,
ContainerDeploymentStatus,
)
# Configuration constants
DEPLOYMENT_NAME = "my-deployment"
IMAGE_NAME = "your-image-name:version"
# Environment variables
DATACRUNCH_CLIENT_ID = os.environ.get('DATACRUNCH_CLIENT_ID')
DATACRUNCH_CLIENT_SECRET = os.environ.get('DATACRUNCH_CLIENT_SECRET')
# DataCrunch client instance
datacrunch_client = None
def wait_for_deployment_health(client: DataCrunchClient, deployment_name: str, max_attempts: int = 10, delay: int = 30) -> bool:
"""Wait for deployment to reach healthy status.
Args:
client: DataCrunch API client
deployment_name: Name of the deployment to check
max_attempts: Maximum number of status checks
delay: Delay between checks in seconds
Returns:
bool: True if deployment is healthy, False otherwise
"""
for attempt in range(max_attempts):
try:
status = client.containers.get_deployment_status(deployment_name)
print(f"Deployment status: {status}")
if status == ContainerDeploymentStatus.HEALTHY:
return True
time.sleep(delay)
except APIException as e:
print(f"Error checking deployment status: {e}")
return False
return False
def cleanup_resources(client: DataCrunchClient) -> None:
"""Clean up all created resources.
Args:
client: DataCrunch API client
"""
try:
# Delete deployment
client.containers.delete_deployment(DEPLOYMENT_NAME)
print("Deployment deleted")
except APIException as e:
print(f"Error during cleanup: {e}")
def main() -> None:
"""Main function demonstrating deployment lifecycle management."""
try:
# Check required environment variables
if not DATACRUNCH_CLIENT_ID or not DATACRUNCH_CLIENT_SECRET:
print(
"Please set DATACRUNCH_CLIENT_ID and DATACRUNCH_CLIENT_SECRET environment variables")
return
# Initialize client
global datacrunch_client
datacrunch_client = DataCrunchClient(
DATACRUNCH_CLIENT_ID, DATACRUNCH_CLIENT_SECRET)
# Create container configuration
container = Container(
image=IMAGE_NAME,
exposed_port=80,
healthcheck=HealthcheckSettings(
enabled=True,
port=80,
path="/health"
),
volume_mounts=[
VolumeMount(
type=VolumeMountType.SCRATCH,
mount_path="/data"
)
]
)
# Create scaling configuration
scaling_options = ScalingOptions(
min_replica_count=1,
max_replica_count=5,
scale_down_policy=ScalingPolicy(delay_seconds=300),
scale_up_policy=ScalingPolicy(delay_seconds=300),
queue_message_ttl_seconds=500,
concurrent_requests_per_replica=1,
scaling_triggers=ScalingTriggers(
queue_load=QueueLoadScalingTrigger(threshold=1),
cpu_utilization=UtilizationScalingTrigger(
enabled=True,
threshold=80
),
gpu_utilization=UtilizationScalingTrigger(
enabled=True,
threshold=80
)
)
)
# Create registry and compute settings
registry_settings = ContainerRegistrySettings(is_private=False)
compute = ComputeResource(name="General Compute", size=1)
# Create deployment object
deployment = Deployment(
name=DEPLOYMENT_NAME,
container_registry_settings=registry_settings,
containers=[container],
compute=compute,
scaling=scaling_options,
is_spot=False
)
# Create the deployment
created_deployment = datacrunch_client.containers.create_deployment(
deployment)
print(f"Created deployment: {created_deployment.name}")
# Wait for deployment to be healthy
if not wait_for_deployment_health(datacrunch_client, DEPLOYMENT_NAME):
print("Deployment health check failed")
cleanup_resources(datacrunch_client)
return
# Update scaling configuration
try:
deployment = datacrunch_client.containers.get_deployment_by_name(
DEPLOYMENT_NAME)
# Create new scaling options with increased replica counts
deployment.scaling = ScalingOptions(
min_replica_count=2,
max_replica_count=10,
scale_down_policy=ScalingPolicy(delay_seconds=300),
scale_up_policy=ScalingPolicy(delay_seconds=300),
queue_message_ttl_seconds=500,
concurrent_requests_per_replica=1,
scaling_triggers=ScalingTriggers(
queue_load=QueueLoadScalingTrigger(threshold=1),
cpu_utilization=UtilizationScalingTrigger(
enabled=True,
threshold=80
),
gpu_utilization=UtilizationScalingTrigger(
enabled=True,
threshold=80
)
)
)
updated_deployment = datacrunch_client.containers.update_deployment(
DEPLOYMENT_NAME, deployment)
print(f"Updated deployment scaling: {updated_deployment.name}")
except APIException as e:
print(f"Error updating scaling options: {e}")
# Demonstrate deployment operations
try:
# Pause deployment
datacrunch_client.containers.pause_deployment(DEPLOYMENT_NAME)
print("Deployment paused")
time.sleep(60)
# Resume deployment
datacrunch_client.containers.resume_deployment(DEPLOYMENT_NAME)
print("Deployment resumed")
# Restart deployment
datacrunch_client.containers.restart_deployment(DEPLOYMENT_NAME)
print("Deployment restarted")
# Purge queue
datacrunch_client.containers.purge_deployment_queue(
DEPLOYMENT_NAME)
print("Queue purged")
except APIException as e:
print(f"Error in deployment operations: {e}")
# Clean up
cleanup_resources(datacrunch_client)
except Exception as e:
print(f"Unexpected error: {e}")
# Attempt cleanup even if there was an error
try:
cleanup_resources(datacrunch_client)
except Exception as cleanup_error:
print(f"Error during cleanup after failure: {cleanup_error}")
if __name__ == "__main__":
main()