devops-42

Results 42 comments of devops-42

> Yes, I have a Kafka broker (from Strimzi) deployed in the namespace `kafka`. The according topics were set up properly.

> I forgot to mention `reason: Skipped` is expected. Kafka requires you to bring your own kafka cluster (in contrast to nats and non-exotic jetstream) so the step to deploy...

Hey, also from my side thanks for sharing this wonderful app. 🚀 Regarding the keep-awake functionality: Is it possible to activate at least the screensaver in order to lock the...

Hi @jacklandrin , thanks for yor response. I think, you got my point: I want to prevent the system going to sleep (which kills my VPN everytime), but need to...

> On a different note, it looks like there are official Hazelcast docker images: > > https://hub.docker.com/r/hazelcast/hazelcast/ > > We could potentially use those for automatically testing this new data...

> Interestingly, it looks like Hazelcast have moved to be Open Core: > > https://hazelcast.com/blog/changes-to-community-edition/ > > The "not making CVE fixes available to the Community until the next point...

Hi, are there any instructions / how-to's to process "the most difficult part" at least locally? Thanks for your help!

Thanks for your response. The install process exits with an error. Steps I've made: ``` wget https://github.com/graalvm/graalvm-ce-builds/releases/download/vm-22.2.0/graalvm-ce-java11-darwin-aarch64-22.2.0.tar.gz tar zxf graalvm-ce-java11-darwin-aarch64-22.2.0.tar.gz mv graalvm-ce-java11-22.2.0 graalvm export JAVA_HOME=`pwd`/graalvm/Contents/Home export PATH=`pwd`/graalvm/Contents/Home/bin:$PATH gu install native-images...

Update: I could compile it finally with an additional environment variable: ``` USE_NATIVE_IMAGE_JAVA_PLATFORM_MODULE_SYSTEM=false pip install . ``` Remark: This environment variable won't be supported in future releases of GraalVM (see...

Hi, I'd appreciate the approach of referring to existing k8s secrets. This would decouple the direct communication from Ceph to a KMS like Vault. One could implement K8s secrets by...