Here is a quick start up article to unit test node.js application using frameworks like Mocha, Chai, Sinon.
https://scotch.io/tutorials/how-to-test-nodejs-apps-using-mocha-chai-and-sinonjs
MyLucky5.com Blog
Here is a quick start up article to unit test node.js application using frameworks like Mocha, Chai, Sinon.
https://scotch.io/tutorials/how-to-test-nodejs-apps-using-mocha-chai-and-sinonjs
The following blog post can be referred for CI/CD setup using Minikube, Helm, JenkinsX
The following post gives a brief description on how to install minikube in an Virtual Box environment.
Login to your ubuntu VM from your virtual box and follow the commands
sudo apt-get install virtualbox
Cd /usr/local/bin
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
chmod +x minikube
Install dockersudo apt-get update
sudo apt-get remove docker docker-engine docker.io
sudo apt install docker.io
sudo systemctl start docker
sudo systemctl enable docker
minikube --vm-driver=none start
Very good content on modern Devops
I will be posting a series of “Tech i learned today”. This will be similar to reddit or Pinterest content. These post will be small, simple and some times just URL’s alone.
Tech i learned today – Post 1
Domain Driven Design and bounded context
https://dzone.com/articles/validate-your-microservices-with-microprofile-and
The below link explains about various architecture view, viz Conceptual,Logical and Physical Architecture
You can download free icons for your presentation from the following URL
https://icons8.com/icons/set/marketing
www.iconfinder.com
www.iconmonstr.com
www.cloudconvert.com
Following are the key components in a AWS VPC. If you are planning to Setup a VPC, follow the order of creating components.
The following link has the spring integration 5 single page HTML manual
https://docs.spring.io/autorepo/docs/spring-integration/5.0.2.BUILD-SNAPSHOT/reference/htmlsingle/
Generally windows doesn’t allow to backup system image in USB flash drive. This is because of the size limitation, as the size of the disk images can go up to GB’s. In case if you have a bigger USB drive, then it is worth to back up in it considering its portability.
There is no straight forward way to backup image to USB. The following steps to be performed to achieve the task.
1) Create a directory on your USB drive
2) Right-click the directory and choose “Share with”, “Specific people”- choose yourself from the list of users and click Share and Done
3)In the “Create System Image” menu choose “On a network location”- now enter the URL for your share (\\your-computer\sharename)- enter your username and password and click OK
Reply by CK1968