You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for i in `cat targets.list`; do if [[ ! -e rerun_yamls/${i}.yaml ]]; then cat gh_single_template.yaml | sed "s/\${INDEX}/$((i-1))/g" > rerun_yamls/${i}.yaml; kubectl apply -f rerun_yamls/${i}.yaml; else echo "Already created" $i; fi; done