8 lines
207 B
Bash
Executable File
8 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export INDEX
|
|
|
|
for INDEX in {0,1}{0,1,2,3,4,5,6,7,8,9} ; do
|
|
oc patch deployments test-shell-$INDEX -n test-richph -p '{"spec": {"template": {"spec": {"nodeSelector": null }}}}' >/dev/null
|
|
done
|