DIGIT uses golang (required v1.13.3) automated scripts to deploy the builds onto Kubernetes - Linux or Windows or Mac.
All DIGIT services are packaged using helm charts Installing Helm.
kubectl is a CLI to connect to the Kubernetes cluster from your machine.
Install VisualStudio IDE Code for better code/configuration editing capabilities.
Git
Cost-analyzer - cost-analyzer must be deployed on the client side.
Prometheus-operator - Prometheus must be deployed on the client side.
prometheus-kafka-exporter (A Prometheus exporter acts as a proxy between such an application and the Prometheus server) - prometheus-kafka-exporter must be deployed on the client side
Steps
Step 1: Install Prometheus Operator On Each Client Cluster
Step 2: Expose The Prometheus Operator
Expose the Prometheus Operator using nginx-ingress rule in each client cluster. This makes it easy to access Prometheus metrics in central-dashboard clusters
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
certmanager.k8s.io/cluster-issuer: letsencrypt-prod //By using this annotation, a certificate will be issued
labels:
app: prometheus-operator
name: prometheus-prometheus
namespace: monitoring
spec:
rules:
- host: <host_name> //Replace with prometheus host
http:
paths:
- backend:
service:
name: prometheus-prometheus
port:
number: 9090
path: /
pathType: ImplementationSpecific
tls:
- hosts:
- <host_name> //Replace with prometheus host
secretName: <host_name>-tls-certs //Replace with prometheus host
Note: Ensure you create the CANAME DNS record with the hostname and loadbalancer ID.
Step 3: Install Cost Analyzer On Each Client Cluster
Kubecost provides visibility into current and historical Kubernetes spending and resource allocation. These provide cost transparency in Kubernetes environments.
You can deploy the cost analyser using one of the below methods.
1. Deploy using go lang deployer
git clone https://github.com/egovernments/DIGIT-DevOps.git
cd DIGIT-DevOps/deploy-as-code/egov-deployer
go run main.go -e <environment_name> "cost-analyzer"
2. Deploy using Jenkin’s deployment job. Here we are using deploy-to-dev. Choose your environment-specific deployment job.
Step 4: Install Grafana On The Central Dashboard Cluster
Below Grafana configuration should be added to the environments file, and then Grafana should be deployed using one of the following methods.
Based on the number of client clusters, you have to add data sources. There should be one entry per client cluster as shown below.
git clone https://github.com/egovernments/DIGIT-DevOps.git
cd DIGIT-DevOps/deploy-as-code/egov-deployer
go run main.go -e <environment_name> "grafana"
Deploy using Jenkin’s deployment job.
Step 4: DNS Mapping
To access the monitoring central dashboard with this https://central-dashboard.digit.org URL. Ensure you create the CANAME DNS record with the hostname and load balancer ID.