Tag kubernetes

 Like

Liked Kubernetes: Which node is a pod on? | Mark Needham
Post details
When running Kubernetes on a cloud provider, rather than locally using minikube, it’s useful to know which node a pod is running on. The normal command to list pods doesn’t contain this information: $ kubectl get pod NAME READY STATUS RESTARTS AGE neo4j-core-0 1/1 Running 0 6m neo4j-core-1 1/1 Running 0 6m neo4j-core-2 1/1 Running 0 2m I spent a while searching for a command that I could use before I came across Ta-Ching Chen’s blog post while looking for something else.

 Like

Liked a post on Twitter
Post details

 Note

Has anything changed with the way that JSON Patch works in #Kubernetes recently? Seeing some failed interactions due to missing the /data/ in the path, and requiring it to be a list of operations. Not quite sure why my code has ever worked tbh 😅

 Like

Liked a post on Twitter
Post details

 Note

#Kubernetes peeps - is there a way to mount a Secrets volume as read-write and allow an application to write to it? I'm migrating code that expects a filesystem to persist secret changes to and am not sure if I'm trying to avoid rewriting too much?

 Note

Is anyone using #gitlab's Auto DevOps with a Maven/Gradle multimodule project? Thinking about maybe giving it a go, with deployment to GKE for ease of management of my services, but wanna find out if its suitable first, and how to pass secrets that would be in an application.properties on the host. Or I guess, do I need to rewire the app instead?