Skip to content

Commit

Permalink
Merge pull request #275 from CybercentreCanada/kubernetes-watches
Browse files Browse the repository at this point in the history
Set http timeout on kubernetes api as well (dev)
  • Loading branch information
cccs-douglass authored Aug 9, 2021
2 parents 6ffc390 + bce127c commit 22ead95
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions assemblyline_core/scaler/controllers/kubernetes_ctl.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

API_TIMEOUT = 90
WATCH_TIMEOUT = 10 * 60
WATCH_API_TIMEOUT = WATCH_TIMEOUT + 10

_exponents = {
'Ki': 2**10,
Expand Down Expand Up @@ -242,7 +243,8 @@ def _monitor_node_pool(self):
self._node_pool_max_ram = 0
watch = TypelessWatch()

for event in watch.stream(func=self.api.list_node, timeout_seconds=WATCH_TIMEOUT):
for event in watch.stream(func=self.api.list_node, timeout_seconds=WATCH_TIMEOUT,
_request_timeout=WATCH_API_TIMEOUT):
if not self.running:
break

Expand All @@ -259,7 +261,8 @@ def _monitor_pods(self):
self._pod_used_cpu = 0
self._pod_used_ram = 0

for event in watch.stream(func=self.api.list_pod_for_all_namespaces, timeout_seconds=WATCH_TIMEOUT):
for event in watch.stream(func=self.api.list_pod_for_all_namespaces, timeout_seconds=WATCH_TIMEOUT,
_request_timeout=WATCH_API_TIMEOUT):
if not self.running:
break

Expand Down Expand Up @@ -296,7 +299,7 @@ def _monitor_quotas(self):
self._quota_mem_used = None

for event in watch.stream(func=self.api.list_namespaced_resource_quota, namespace=self.namespace,
timeout_seconds=WATCH_TIMEOUT):
timeout_seconds=WATCH_TIMEOUT, _request_timeout=WATCH_API_TIMEOUT):
if not self.running:
break

Expand Down Expand Up @@ -355,7 +358,7 @@ def _monitor_deployments(self):

for event in watch.stream(func=self.apps_api.list_namespaced_deployment,
namespace=self.namespace, label_selector=label_selector,
timeout_seconds=WATCH_TIMEOUT):
timeout_seconds=WATCH_TIMEOUT, _request_timeout=WATCH_API_TIMEOUT):
if event['type'] in ['ADDED', 'MODIFIED']:
name = event['raw_object']['metadata']['labels'].get('component', None)
if name is not None:
Expand Down

0 comments on commit 22ead95

Please sign in to comment.