Blog Posts

  • All
  • Engineering
  • golang
  • grpc
  • programming
deploying grpc on google kubernetes

How to troubleshoot gRPC deployment on Google Kubernetes

Deploying a Golang gRPC application with a design that includes Google Cloud Kubernetes Engine requires additional modification to the service and the k8s configurations. Depending on the scenario, configurations are reasonably simple to execute; however, due to the lack of proper logging at the ingress or application level, one may need to learn what is […]

How to troubleshoot gRPC deployment on Google Kubernetes Read More »

securing grpc with server side tls

How to secure gRPC apps with server side TLS

Today, we will discuss securing our gRPC applications by enabling TLS on the server end and testing its functionality locally or at the pod/server using tools such as gRPCurl. TLS is a standard norm for all modern applications, but it’s of even higher importance when it comes to HTTP/2-based applications employing technologies such as gRPC. 

How to secure gRPC apps with server side TLS Read More »