OpenShift Compute Concepts: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * OpenShift Concepts =Overview= =Node= =Machine= =MachineSet=") |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
=Node= | =Node= | ||
=Machine= | =Machine= | ||
<syntaxhighlight lang='bash'> | |||
kubectl -n openshift-machine-api get machines | |||
</syntaxhighlight> | |||
=MachineSet= | =MachineSet= | ||
<syntaxhighlight lang='bash'> | |||
kubectl -n openshift-machine-api get machineset | |||
</syntaxhighlight> | |||
To statically increase the number of nodes, increment the MachineSet desire count. The machines in the set go through "Provisioning" → "Provisioned" → "Provisioned as Node" transition. | |||
=MachineAutoscaler= |
Latest revision as of 21:31, 3 December 2020
Internal
Overview
Node
Machine
kubectl -n openshift-machine-api get machines
MachineSet
kubectl -n openshift-machine-api get machineset
To statically increase the number of nodes, increment the MachineSet desire count. The machines in the set go through "Provisioning" → "Provisioned" → "Provisioned as Node" transition.