Skip to content

Commit ba7eaed

Browse files
committed
[DFSM] Add comment to describe the statuses DEPLOYED and SKIPPED_LIVE_UPDATE returned by compute/login nodes when evaluating a live update.
Signed-off-by: Giacomo Marciani <[email protected]>
1 parent d9c1f84 commit ba7eaed

File tree

1 file changed

+8
-0
lines changed
  • cookbooks/aws-parallelcluster-slurm/libraries

1 file changed

+8
-0
lines changed

cookbooks/aws-parallelcluster-slurm/libraries/dynamo.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,15 @@
1616
# This is done to understand what is the deployed cluster config in each node, for example, during a CFN Stack update.
1717

1818
DDB_CONFIG_STATUS = {
19+
# The node successfully deployed the cluster configuration.
1920
DEPLOYED: "DEPLOYED",
21+
22+
# The node evaluated the cluster configuration and concluded that a live update should be skipped because:
23+
# 1. not supported: the changeset contains changes that cannot be applied with a live update
24+
# and may instead require a node replacement.
25+
# Example: mounting a managed EBS.
26+
# 2. not required: the changeset contains changes that could lead to an empty live update.
27+
# Example: changing the number of static nodes.
2028
SKIPPED_LIVE_UPDATE: "SKIPPED_LIVE_UPDATE",
2129
}.freeze
2230

0 commit comments

Comments
 (0)