Kubectl: Get ConfigMap – Kubernetes

In programming, we use .env or separate config files to store settings, configurations or variables separately from the application code. This permits to run the application in different environments. A ConfigMap in a Kubernetes is used to achieve the same functionality – it allows to make applications portable by decoupling environment-specific configurations from the containers. […]

Kubernetes: Get Node Events

Kubernetes events are automatically created when resources have state changes, errors or other messages that should be broadcasted to the system. These events (logs) are very helpful for debugging issues in a Kubernetes cluster. In this note i will show how to get events from a specific Node in the Kubernetes cluster using the kubectl […]