Skip to content

Instantly share code, notes, and snippets.

View Nqabeni's full-sized avatar
🏠
Working from home

Noel Simela Nqabeni

🏠
Working from home
View GitHub Profile
@Nqabeni
Nqabeni / Kubernetes-OpenShift-May12.md
Created May 12, 2020 17:07 — forked from dewan-ahmed/Kubernetes-OpenShift-May12.md
This is a public gist containing useful links for May12 2020 CrowdCast KRHOWT workshop by IBM Developer
  1. Sign-up for IBM Cloud account: https://ibm.biz/BdqyJj
  2. Kubernetes cluster (one-hour sandbox): https://www.katacoda.com/courses/kubernetes/first-steps-to-ckad-certification
  3. OpenShift cluster (one-hour sandbox): https://learn.openshift.com/playgrounds/openshift42/
  4. Workshop Gitbook: https://ibm-developer.gitbook.io/openshift101
  5. Workshop GitHub Repo: https://github.com/IBM/openshift101/tree/master/workshop
  6. Repo for the NodeJS application: https://github.com/IBM/node-s2i-openshift
  7. Background on containers: https://www.ibm.com/cloud/learn/containers
  8. Background on Kubernetes: https://www.ibm.com/cloud/learn/kubernetes
  9. All Kubernetes concepts under 30 minutes: https://www.youtube.com/watch?v=90kZRyPcRZw
  10. Source-to-Image(S2I) Deep-dive: https://www.youtube.com/watch?v=flI6zx9wH6M
@Nqabeni
Nqabeni / check_microsoft_windows_software_raid.ps1
Created January 5, 2018 15:03 — forked from schakko/check_microsoft_windows_software_raid.ps1
A simple PowerShell script for retrieving the RAID status of volumes with help of diskpart. The nicer solution would be using WMI (which does not contain the RAID status in the Status field of Win32_DiskDrive, Win32_LogicalDisk or Win32_Volume for unknown reason) or using the new PowerShell API introduced with Windows 8 (wrong target system as o…
# A simple PowerShell script for retrieving the RAID status of volumes with help of diskpart.
# The nicer solution would be using WMI (which does not contain the RAID status in the Status field of Win32_DiskDrive, Win32_LogicalDisk or Win32_Volume for unknown reason)
# or using the new PowerShell API introduced with Windows 8 (wrong target system as our customer uses a Windows 7 architecture).
#
# diskpart requires administrative privileges so this script must be executed under an administrative account if it is executed standalone.
# check_mk has this privileges and therefore this script must only be copied to your check_mk/plugins directory and you are done.
#
# Christopher Klein <ckl[at]neos-it[dot]de>
# This script is distributed under the GPL v2 license.