Azure Kubernetes

Azure Kubernetes Service (AKS) is a managed container orchestration service provided by Microsoft Azure. It simplifies the deployment, management, and scaling of containerized applications using Kubernetes, an open-source platform for automating container operations....

Install eureka in kubernetes

To install Eureka (a service discovery tool from Netflix, commonly used in microservices architectures) in a Kubernetes cluster, you can deploy a Eureka server using a Kubernetes deployment and service configuration. Here’s a step-by-step guide to installing and...

How to check coverage in Golang

In Go, you can check test coverage using the built-in Go testing tool. Test coverage measures the percentage of your code that is exercised by your tests. The go test command provides an option to generate coverage reports. Here’s how you can check coverage in Go: 1....

How to get version of node in Kubernates Golang

To get the Kubernetes version of a node using Go, you can use the Kubernetes Client-Go library. The version of the node is stored in the node’s status, specifically in the NodeInfo field, which contains information about the node, such as the Kubelet version...

Sign In

Sign Up