Jumping the opportunity:; we make a product that do hyper-personalisation for marketing emails, we do have few customers using SFMC and we tried to think about some use cases with Agentforce but i don't see a lot of useful things.
Some customers want to see data about who saw personalisation in tableau/datacloud but again this isn't direct integration with Agentforce but more sending data to any salesforce product. Did you see any pratical use case for Agentforce in SFMC ? Thanks
They do have a policy to only include free software [1]:
> We only accept formulae that use a Debian Free Software Guidelines license or are released into the public domain following DFSG Guidelines on Public Domain software into homebrew/core.
You could do that with Ansible, there's kubespray [0] from the official project to do that. You may want to read [1] starting with [2]. There's also k3s [0] and k0s [4]. I've written about my setup here [5] also if you are interested.
I've used OpenTelemetry since it's original alpha in 2020. Originally the main issue i had was supporting tracing across common libraries (there wasn't a lot of libraries supported back then). Now (and i recently worked with it) i would say is which protocol is supported by which component: your sdk generate spans/metrics in a specific format, then you send that to a collector that accept a range of protocol versions and finally you can send that to your vendor ... but you need to know which protocol/version it supports.
That's not actually something you can do much about considering the sheer size of opentelemetry (both in term of implementation and vendors working on it) and i expect for people implementing nowadays, proto should be pretty stable and my experience should theorically not be the case anymore.
We have ~two dozens rented boxes @ OVH in their French datacenters, apart from hardware failures from time to time (1/2 per year) you should be fine, just take that into account while designing the architecture. Also don't expect the support to helps you, they will sometimes but i'll say it's better to not expect it to not be surprised :)
Not specially something that you cannot do without WASM but at $WORK we are using a WASM build of Skia [0] to render canvas from nodejs.
Why use WASM ? Because we wanted to stay close to our stack (ie. calling wasm from nodejs). Do it work ? Yes, memory consumption is quite heavy though (each WASM module have its own heap that can quickly grow).
However we are looking to directly use Skia now and avoid the overhead of WASM so i think its a nice solution in the beginning but you might want to ditch it later on.