Understanding Ingress in Kubernetes


Simply speaking ingress is a collection of routing rules, and ingress controller is the component that implements those rules in Kubernetes cluster. It is not available in any Kubernetes releases prior to 1.1. I guess it is the reason that why OpenShift developed Router. This is a not so nice diagram, but I think it … Continue reading Understanding Ingress in Kubernetes →

BitLocker on Windows 10


Three quick commands to turn on/off and check BitLocker on Windows 10 Professional and Enterprise. You have to run the following commands in an Administrative terminal. To turn on BitLokcer against volume C:  manage-bde -on C: -RecoveryPassword -skiphardwaretest -UsedSpaceOnly To turn off BitLocker against volume C:  manage-bde -off C: To check BitLocker against volume C:  … Continue reading BitLocker on Windows 10 →