Deploy services on AKS with istio and cert-manager already installed! Part II

Sudharma Puranik
2 min readNov 10, 2019

In the previous article here I have explained the setup of Azure AKS with Istio and Cert manager.

Here I shall install a simple liveness service which shall be exposed via the Gateway .

Deploy a sample Kubernetes service shown below. Type of the service here is ClusterIP.

apiVersion: v1
kind: Service
metadata:
name: liveness-http
labels:
app: liveness-http
spec:
ports:
- name: http
port: 80
targetPort: 8001
selector:
app

--

--