Microservices architecture is more dispersed in nature hence, there will be a larger surface area for attacks and vulnerabilities. But because of this dispersion where services being independent at one another, this architecture allows for a more granular restrictions.
At the infrastructure, the concern is coming from multiple network entry-points, rate limits and traffic throttling configuration,...
Monday, July 22, 2019
Saturday, July 13, 2019
CKAD Learning Series 01: Installing minikube

1. Enable CPU virtualization support which can be done through the BIOS of your laptop/PC. To check, run the command:
grep vmx /proc/cpuinfo
2. Add Kubernetes to your repositorycreate this file: /etc/yum.repos.d/kubernetes.repoto contain the snippet below:[kubernetes]name=Kubernetesbaseurl=https://packages.cloud.google.com/yum/repos/kubernetes-el7-x86_64enabled=1gpgcheck=1repo_gpgcheck=1gpgkey=https://packages.cloud.google.com/yum/doc/yum-key.gpg...