2070 Create a Cluster with Named Machines¶
15 Minutes intermediate
Learn how to define a cluster to enable specific control of which machines are present or to have machines in multiple roles
Use the more advanced machine naming capabilities of clusters, the User will create a cluster with customized machine names and roles. Business ROI: Maintaining production clusters requires operators to maintain exact control of the lifecycle of all managed systems.
Prerequisites¶
Additional Labs:
Concepts¶
- params
- clusters
Summary¶
Create an empty cluster¶
- Navigate to Clusters
- Click
AddSetNametolab2070Set the `broker/name` to `context-broker` Set the `cluster/count` to 0 With this is 0, the cluster logic will not allocate any machines. This gives us a chance to build a Parameter that defines the cluster. Click `Save` and wait for it to enter Work Order Mode
Create a named set of machines for the cluster¶
- Navigate to the lab2070 cluster's Params tab
- Click
Add Paramsand selectcluster/machines - Click
Add Paramsand selectcluster/machine-types -
Set the
cluster/machines-typesparamter value The default value is acceptable.```json [ "machine" ] ``` -
Set the
cluster/machinesparamter value Set the value to:```json { "machine": { "names": [ "lab2070-red", "lab2070-green", "lab2070-blue" ] } } ``` Click the little `save` icon Hover over the `cluster/machines` text to review the inline help for formatting -
Navigate to the Activity tab
- Click
Applyto run theuniversal-application-base-clusterWork Order This Work Order reevaluates the parameters of the cluster to grow or shrink the cluster.
Observe the cluster being built¶
- Navigate to Machines
- Observe the named machines being created
As the cluster builds, machines named
lab2070-red,lab2070-green, andlab2070-bluewill appear.
Create a named set of machines for the cluster¶
- Navigate to the lab2070 cluster's Params tab
-
Edit the
cluster/machinesparamter value Set the value to:```json { "machine": { "names": [ "lab2070-red", "lab2070-yellow", "lab2070-blue" ] } } ``` Click the little `save` icon -
Navigate to the Activity tab
- Click
Applyto run theuniversal-application-base-clusterWork Order This Work Order reevaluates the parameters of the cluster to grow or shrink the cluster.
Observer the cluster being updated¶
- Navigate to Machines
- Observe the named machines being created and removed
As the cluster updates, the machine
lab2070-greenwill be removed and thelab2070-yellowmachine will be added.
Create a new class of named set of machines for the cluster¶
- Navigate to the lab2070 cluster's Params tab
-
Edit the
cluster/machine-typesparamter value Make the value look like this:```json [ "machine", "leader" ] ``` -
Edit the
cluster/machinesparamter value Set the value to:```json { "machine": { "names": [ "lab2070-red", "lab2070-yellow", "lab2070-blue" ] }, "leader": { "names": [ "lab2070-leader" ] } } ``` Click the little `save` icon -
Navigate to the Activity tab
- Click
Applyto run theuniversal-application-base-clusterWork Order This Work Order reevaluates the parameters of the cluster to grow or shrink the cluster.
Observer the cluster being updated to have a leader¶
- Navigate to Machines
- Observe the new leader named machine being created
As the cluster updates, the machine
lab2070-leaderwill be added.
Make a templatized set of named machines for a cluster¶
The named machines pattern is useful, but has "hard-coded" values for the names within the cluster. There are times when a template of machine names is useful. Part of the name should reflect the cluster name, but the rest of the name should follow the defined patterns. This section will walk through creating a template profile.
- Navigate to Profiles
-
Click
CreateSet 'Name' totemplate2070Click 'Save' -
Click
Add Paramsand addcluster/machine-typesandcluster-machines -
Edit
cluster/machine-typesSet the value to:```json [ "machine", "leader" ] ``` Click the little `save` icon -
Edit
cluster/machinesSet the value to:```json { "leader": { "names": [ "{{.Machine.Name}}-leader" ] }, "machine": { "names": [ "{{.Machine.Name}}-red", "{{.Machine.Name}}-green", "{{.Machine.Name}}-yellow" ] } } ``` Click the little `save` icon The `{{.Machine.Name}}` is Golang template expansion markers that DRP uses to templatize a value. In this case, the cluster name is represented by `{{.Machine.Name}}`.
Create a couple of clusters using the template¶
- Navigate to Clusters
-
Click
AddSetNametolab2070-t1Add the template profile, `template2070`, by clicking the `+` next to Configuration / Profiles Set the `broker/name` to `context-broker` Click `Save` `cluster/count` is ignored because the override by the template profile. -
Close the
lab2070-t1editor by clicking thex -
Click
AddSetNametolab2070-t2Add the template profile, `template2070`, by clicking the `+` next to Configuration / Profiles Set the `broker/name` to `context-broker` Click `Save` `cluster/count` is ignored because the override by the template profile. -
Close the
lab2070-t2editor by clicking thex
Observer the clusters being built¶
- Navigate to Machines
- Observe the named machines being created both clusters
As the clusters build, two sets of machines will be created with
lab2070-t1-andlab2070-t2-.The clusters are built in parallel once created.
Clean up the clusters¶
- Navigate to Clusters
- Select all three clusters (
lab2070,lab2070-t1,lab2070-t2) in the table - Click
Actionsand then selectWork Flow Mode - Click
Actionsand then selectDelete (Cleanup) - Click
Cleanupto confirm the action - Wait for the clusters and machines to be removed