- replicationController (rc): a controller that makes a best effort to maintain a number of pods running
- pods: groups of containers controlled by a single rc
- service (svc): a cluster-internal VIP that is linked to a collection of pods and ports
- route: An OpenShift construct. Externalizes services so you can reach them from remote machines
oc get [resource-kind]
oc get [resource-kind] -o wide oc describe [resource-kind] [resource-name] ex: oc describe pod kube2consul-xyz1
oc create -f [k8s-file] oc process -f [k8s-template] | oc create -f -
oc delete -f [k8s-file] oc process -f [k8s-template] | oc delete -f -
oc logs [pod-name] ex: oc logs kube2consul-xyz1 oc logs [pod-name] -c [container-name] ex: oc logs samplemicroservice-controller-xyz1 -c samplemicroservice
CONT=[service-name]; oc get pods | grep ^${CONT}-1- | cut -f1 -d" " ex: CONT=logstash; oc get pods | grep ^${CONT}-1- | cut -f1 -d" "