Holger Dormann
Holger Dormann
There are other cases as well that needed to be checked for which `ank apply` should not block like for example dependency cannot be fulfilled, runtime not known yet, etc....
I just wonder whether we can also use this action to build the base image for the dev container and how long this would take for building an amd64 and...
Hi @koppor, sure, let's discuss the usage of containers in development and CI for Ankaios. So current we have the base container which serves as base of the dev container...
While working on #308 I was missing the following environment variables: Server: * `ANKSERVER_STARTUP_CONFIG` * `ANKSERVER_ADDRESS` Agent: * `ANKAGENT_NAME` * `ANKAGENT_SERVER_URL`
Not sure if we should put this in the `ank` tool or have separate tool for that as the `ank` tool is for controlling an Ankaios cluster.
Still missing: - [x] Documentation - [x] Dynamic completion
The current version only works for static completions. To prepare for dynamic completions, the method as described in https://github.com/clap-rs/clap/pull/5586/files probably has to be used.
Now this PR is prepared for dynamic completion as described in [clap_complete::dynamic::ArgValueCompleterCopy](https://docs.rs/clap_complete/latest/clap_complete/dynamic/struct.ArgValueCompleter.html). In there we need to query the server for available workloads.
I started a discussion in https://github.com/clap-rs/clap/discussions/5677.
The current version provides static completion. It also contains dynamic completion for the `ank delete workload` command and can be used for first evaluation. Then we need to decide, if...