Explore >> Select a destination


You are here

b.agilob.net
| | srcco.de
14.5 parsecs away

Travel
| | How to save cloud costs when running Kubernetes? There is no silver bullet, but this blog post describes a few tools to help you manage resources and reduce cloud spending. I wrote this post with Kub
| | jessitron.com
9.4 parsecs away

Travel
| | TL;DR: skip to this readme for the easiest path When you're running applications in Kubernetes, and you're using OpenTelemetry for observability, then one recommended practice is to run the OpenTelemetry Collector on each node in your cluster. Then each of your applications can send telemetry data (traces, metrics, logs) to that local collector. To run
| | tech.trivago.com
12.9 parsecs away

Travel
| | In 2020 we started to migrate one of our most significant workloads, our Node.js based GraphQL API and many of its microservices, from our datacenter to Google Kubernetes Engine. We deploy it in...
| | blog.nuculabs.de
40.0 parsecs away

Travel
| Hi ?????, In this article I will talk about how to authenticate your applications to the Kubernetes API via the service accounts feature. Citing the Kubernetes docs, a service account for a pod: "provides an identity for processes that run in a Pod. When you (a human) access the cluster (for example, using kubectl), you are authenticated by the apiserver as a particular User Account (currently this is usually admin, unless your cluster administrator has customized your cluster). Processes in containers inside pods can also contact the apiserver. When they do, they are authenticated as a particular Service Account (for example, default)." ??