DevTech101

DevTech101

mongodb

Web GUI/UI – Administrating A Kubernetes Cluster Created With Angular

Web GUI – Administrating A Kubernetes Cluster I am working on a Web GUI to Administrate a Kubernetes Cluster. this includes all manipulation i.e. stats lookups, add, modify, deletes. all manipulations are using the official Kubernetes API’s. Details as well as the full code is available on my Github repository. In the next few weeks …

Web GUI/UI – Administrating A Kubernetes Cluster Created With Angular Read More »

Using NodeJS With MongoDB

Configuring MongoDB First test and connect to mongo From connect line > use mcfly switched to db mcfly > db.createCollection(‘mathpeeps’) { “ok” : 1 } > db.mathpeeps.insert({Firstname: ‘Eli’, lastname: ‘Kleinman’}) WriteResult({ “nInserted” : 1 }) > db.mathpeeps.insert({Firstname: ‘Moshe’, lastname: ‘Kleinman’}) WriteResult({ “nInserted” : 1 }) > db.mathpeeps.find() { “_id” : ObjectId(“55ce19e7737e49e3a5a7553e”), “Firstname” : “Eli”, “lastname” …

Using NodeJS With MongoDB Read More »