Skip to content

Commit ef2e5c6

Browse files
Merge pull request #18 from scribd/correcting_typos
fix: Correcting typos and modified comments and read me
2 parents 0442f9e + 679a3b1 commit ef2e5c6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
-5.26 KB
Loading

step-function.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
22
"Comment": "A open source module to taint/drain eks worker nodes gracefully",
3-
"StartAt": "Put and node to standby",
3+
"StartAt": "Put node to standby",
44
"States": {
5-
"Put and node to standby": {
6-
"Comment": "Putting and worker node to standby",
5+
"Put node to standby": {
6+
"Comment": "Putting worker node to standby",
77
"Type": "Task",
88
"Resource": "${put-nodes-to-standby-lambda-arn}",
99
"Next": "taint the node"
1010
},
1111
"taint the node": {
12-
"Comment": "Putting a taint on the standby node",
12+
"Comment": "Putting a unschedulable taint on the standby node",
1313
"Type": "Task",
1414
"Resource": "${taint-nodes-lambda-arn}",
1515
"Next": "Wait 100 sec"
1616
},
1717
"Wait 100 sec": {
18-
"Comment": "A Wait state delays the state machine from continuing for a specified time.",
18+
"Comment": "Putting a wait for 100 seconds",
1919
"Type": "Wait",
2020
"Seconds": 100,
2121
"Next": "Check for pods"
2222
},
2323
"Check for pods": {
24-
"Comment": "Checking for Running pods",
24+
"Comment": "Checking for Running pods based on the label selector",
2525
"Type": "Task",
2626
"Resource": "${check-nodes-forrunning-pods-lambda-arn}",
2727
"Next": "All active pods gone?"

0 commit comments

Comments
 (0)