Understanding WiredTiger The WiredTiger storage engine is the default storage engine which starting in MongoDB version 3.2. It uses MultiVersion … More
Category: OpenShift
[OpenShift] – Get started (Recommended Book)
I’d like to share with you the book which was recommended to me. This book will cover from A to … More
[OpenShift] – How to allow auto shell completion for Minishift installation on MacOSx?
Following the commands. Use brew to install : brew install bash-completion Run : $source $(brew –prefix)/etc/bash_completion Run : oc completion … More
[OpenShift] – Why the oc command line is not working in my Minishift local installation? How to install oc tool for Minishift?
The Minishift installation has the oc tool by default already and it is not required be download and/or installed. In … More
[OpenShift] – Recommended free Material to learn OpenShift
OpenShift for Developers eBook: <https://www.openshift.com/promotions/for-developers.html> DevOps with OpenShift: <https://openshift-com.s3.amazonaws.com/ebooks/DevOps_with_OpenShift.pdf>
[OpenShift] – How to install Jenkins on OpenShift?
OpenShift provides container images for running Jenkins which includes the pre-installed Kubernetes plug-in that allows Jenkins slaves to be dynamically provisioned on … More
[OpenShift] – How to create credentials for your application connect to an external service in the build time?
You can use the command $oc secrets [options] Via the command $oc secrets –help you can see the available types. Following an … More
[OpenShift] – Resources configuration of a pod
The request resources is a configuration related to the quantity of memory and CPU minimal required to run the pod on … More
[OpenShift] – How to setup blue/green environment? POC of blue/green setup in Openshift.
Following a small example of this setup. (POC) Create a project: $ oc new-project bluegren Create a new app based on … More
[OpenShift] – How to change the default security policy to allow containers to run as root? ( Not recommended for production environments )
oc adm policy add-scc-to-user anyuid -z default