Podman on mac: tls failed to verify certificate: x509: certificate signed by unknown authority

Recently when using podman on mac system, I encountered the error when pulling UBI base image from Red Hat’s registry. Here is the error from terminal I realised that, since, I was using a VM created using podman machine init command, adding the cert to my host machine was not going to help. Therefore we … Read more

List PODS behind a service in OpenShift.

POCGuru List Service Pods OpenShift

In Kubernetes service object is responsible for providing network access to a set of pods, which runs same images/applications, leading similar functionality. Sometimes we may want to list/check pods running behind a service in OpenShift cluster. Here are steps one can follow to do so :- Let’s start by listing the end-points for a service. … Read more

OpenShift – kubectl get custom output using JSONPath and custom-columns.

Sometimes we may want to get custom output from oc/kubectl commands when looking for k8 cluster objects like namespace, pods, etc. In this article, we will explain how to use JSONPath or custom column options to customize the kubectl output. We will use ‘service’ as an example. 1. JSONPath Query JSONPath is a query language for … Read more