Skip to content
View kanedafromparis's full-sized avatar
Block or Report

Block or report kanedafromparis

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. khool-jkube-prez khool-jkube-prez Public

    This application is created in order to introduce Jkube plugin that replace https://dmp.fabric8.io/

    3 1

  2. khool-machine-config khool-machine-config Public

    This is a tutorials for testing OpenShift MachineConfig

  3. khool-tomcat-session khool-tomcat-session Public

    This is a tutorials/blog to present how to have a clustered tomcat into kubernetes

    Java

  4. scaledown project scaledown project
    1
    TIMESLOT=`date +%y%m%d%H%M%S`;
    2
    for proj in $(oc get project --show-labels -l zone!=production,role!=webhop --no-headers | cut -d " " -f 1); do 
    3
      for dc in $(oc get dc -n $proj --show-labels -l zone!=production,role!=webhop --no-headers | cut -d " " -f 1); do
    4
        #echo " dc $dc --replicas=0 -n $proj " | tee -a  $TIMESLOT-scaledown.log;
    5
        oc scale dc $dc --replicas=0 -n $proj | tee -a  $TIMESLOT-scaledown.log;