💻 Tech
If series of pods are created like nginx1, nginx2, and nginx3, deleting them can be used with brace expression like this:
k delete po nginx{1...3}
The command above translates to: k delete po nginx1 nginx2 nginx3
If series of pods are created like nginx1, nginx2, and nginx3, deleting them can be used with brace expression like this:
k delete po nginx{1...3}
The command above translates to: k delete po nginx1 nginx2 nginx3