Boris S.

Results 12 comments of Boris S.

We're having the same problem when calling bootstrap.sh with, for example: ``` /etc/eks/bootstrap.sh cluster1 --kubelet-extra-args \ "--allowed-unsafe-sysctls 'net.*' \ --kube-reserved cpu=200m,memory=0.5Gi,ephemeral-storage=1Gi \ --system-reserved cpu=200m,memory=0.2Gi,ephemeral-storage=1Gi" ``` kubelet doesn't run with **KUBELET_EXTRA_ARGS**...

It helps, but it doesn't necessarily solve the issue, as sometimes some other ASG in cluster is resized in the meantime and it will never reach the wanted value. I've...

Just a simple hack, hardcoded to 5 tries. ```diff diff --git a/eksrollup/lib/k8s.py b/eksrollup/lib/k8s.py index ad286cf..9cf73f7 100644 --- a/eksrollup/lib/k8s.py +++ b/eksrollup/lib/k8s.py @@ -226,6 +226,9 @@ def k8s_nodes_count(desired_node_count, max_retry=app_config['GLOBAL_MAX_RETRY'] """ logger.info('Checking k8s...

Not using it anymore as we switched to EKS managed node groups.

Hi @cristim I don't have that much experience with this, as we don't run that many spot instances yet. About five days ago AWS terminated all 3 instances of the...

That ASG lost all capacity, luckily for us it was not a production workload. Hope some more people chime in. Thanks for the code pointer, will brush up on my...

+1 EDIT: As I needed the function ASAP, I just added the following (hackish) code to syncoid getsnaps() function, in each of the two foreach blocks. ```perl if ($line =~...

@cristim no, we don't use Autospotting at the moment.

We've moved to EKS Managed Node Groups, don't know if Autospotting would work with that at all? Will check out the tool, thanks!

Evaluating Citus right now. This is very frustrating, `pg_dump` indeed doesn't backup those tables so the doc is wrong. In older doc I found option to backup metadata tables like:...