K.C. Wong
K.C. Wong
@dadgar: Put it another way, `consul` is not meant to take action on the outcome of these checks, but `nomad` is.
Why do you need to put `node.class` constraints on all your Job/TaskGroup? That means a Job/TaskGroup can only run on "bar" or "foo", never either. Is that your intention?
Or `${node.class} != "bar"`. It sounds like you want something as a config at the Nomad client level, restricting it to only allow tasks with the constraint `${node.class} == "bar"`
I think the topic of certificate rotation is much broader than Raft and orderers. Certificates are used for both TLS communication and MSP identity service. From the brief mention in...
There lies the rub: the point of the plugin is to generate SSH keys, obviously requiring compatibility with OpenSSH. At this point, I would consider `ed25519` not supported.
A quick test with v4.5.3 shows these results: Current: ``` root@4f3f81c57237:/calcom/apps# FROM='http://localhost:3000'; TO='https://cal.example.com'; time find web/.next/ web/public/ -type f | while read file; do sed -i "s|$FROM|$TO|g" "$file"; done real...
Well, 2 points: * To get the timing difference, I just run the script in-place, changed and not changed. It's pretty easy to do by overriding `CMD` to the Docker...