sigs.k8s.io/cluster-api@v1.7.1/docs/proposals/images/machinepool-machines/inframachinepool-scale-up.plantuml (about)

     1  @startuml inframachinepool-scale-up
     2  :begin reconciling InfraMachinePool;
     3  if (status.InfrastructureMachineKind is set on InfraMachinePool) then (no)
     4    :set status.InfrastructureMachineKind to InfraMachinePoolMachine;
     5  else (yes)
     6  endif
     7  while (~# up to date replicas < # desired replicas ?) is (yes)
     8    :create provider specific resource representing a replica;
     9  endwhile (no)
    10  while (every replica has an InfraMachinePoolMachine?) is (no)
    11    :create InfraMachinePoolMachine representing a replica;
    12  endwhile (yes)
    13  :end reconciling InfraMachinePool;
    14  stop
    15  @enduml