vflaux
vflaux
I still encounter this error each time I delete a cluster.
I handled this issue with a custom bootstrap container: **bootstrap.sh:** ```bash #!/bin/bash set -o errexit set -o pipefail set -o nounset # Use IMDSv2 to get metadata TOKEN="$(curl --silent -X...
I tested manually with a `delete nodegroup` on an unamanged nodegroup. New: ``` $ ./eksct version 0.110.0-dev+22f59427b.2022-08-25T17:47:57Z $ ./eksctl --cluster foo delete nodegroup --name ng-1 2022-08-25 17:49:22 [ℹ] 1 nodegroup...
I was using 0.112. I just tested with 0.118 and this issue is gone. Fixed by https://github.com/weaveworks/eksctl/pull/5772 I assume. Thanks @cPu1.
With no registry configured, no mirror is configured in containerd config. Shouldn't you add a default configuration to mirror all registries to spegel in this case ? There is a...
Hi, The current chart do not add the `--registry` if spegel.registries is empty in values but spegel expect this argument. Either the chart should add it even if empty or...
Hi, I could, but the code hasn't changed in the `v1.15` branch or in `main`, so I'm pretty sure the result is the same. You should see this log systematically...
tl;dr: it just delays the allocation of IPs when a node suddenly need a lot of IPs (16 for example). If a node need more IP than what have been...
I don't use a kubeconfig file as I send the request via curl (kubectl is not installed of the ami). I get the endpoints of a service ([spegel](https://github.com/spegel-org/spegel)) and build...
For `Execute()` in `controller/execute.go` (cyclomatic complexity = 52), I see two options : - switch to a `map[string]func(params) error` that store the functions for building the providers (the code currently...