Azure Kubernetes Service (AKS) get DNS of your Service

If you have service in AKS and type is LoadBalancer so you may get your DNS also like yourservicenames.northeurope.cloudapp.azure.com. Firstly in order to use DNS you should have Service type LoadBalancer. If it is type is other you may change it via kubectl edit service <yourservicename> It will create External IP for your service. So […]

Azure Kubernetes Service (AKS) connect servise to custom domain via ingress

Lets assume we have simple Kubernetes service in Azure, which is sample webpage. It doesnt matter if it is type is NodePort or LoadBalancer or ClusterIp. And we want to connect it to our domain name, for example to alakbarv.com

Dockerize ASP.NET Core Angular application (Solving error: The command “npm install” exited with code 127.)

When you try do dockerize ASP.NET Core application with Angular, you most probably faced with this error. The command “npm install” exited with code 127. So, why it happens ? Because of publish  stage happens on based microsoft/dotnet:2.1-sdk image. So, this dockerfile contains only dotnet sdk but not npm installed this base image.   What […]

Jenkins FxCop xml report view as a HTML format in Windows.

This topic about how I Solved convert XML file which is result of FxCop (Code Analyse Tool) to HTML in Jenkins and publish it as Report. I recently installed FxCop  (Code Analysis Tool) and FxCop Runner plugin for Jenkins. Everything was ok, I got report file as XML format for my projects within Jenkins, but […]