File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function clean_up(){
56
56
fi
57
57
58
58
if [[ -e " $PATH_TO_LOCAL_OPERATOR_MANIFEST " ]]; then
59
- rm --verbose " $PATH_TO_LOCAL_OPERATOR_MANIFEST "
59
+ rm -v " $PATH_TO_LOCAL_OPERATOR_MANIFEST "
60
60
fi
61
61
62
62
# the kubectl process does the port-forwarding between operator and local ports
@@ -70,7 +70,7 @@ function clean_up(){
70
70
if kill " $pid " > /dev/null 2>&1 ; then
71
71
echo " Kill the kubectl process responsible for port forwarding for minikube so that we can re-use the same ports for forwarding later..."
72
72
fi
73
- rm --verbose " $PATH_TO_PORT_FORWARED_KUBECTL_PID "
73
+ rm -v " $PATH_TO_PORT_FORWARED_KUBECTL_PID "
74
74
75
75
fi
76
76
}
@@ -121,7 +121,7 @@ function deploy_self_built_image() {
121
121
# update the tag in the postgres operator conf
122
122
# since the image with this tag already exists on the machine,
123
123
# docker should not attempt to fetch it from the registry due to imagePullPolicy
124
- sed --expression " s/\(image\:.*\:\).*$/\1$TAG /; s/smoke-tested-//" manifests/postgres-operator.yaml > " $PATH_TO_LOCAL_OPERATOR_MANIFEST "
124
+ sed -e " s/\(image\:.*\:\).*$/\1$TAG /; s/smoke-tested-//" manifests/postgres-operator.yaml > " $PATH_TO_LOCAL_OPERATOR_MANIFEST "
125
125
126
126
retry " kubectl create -f \" $PATH_TO_LOCAL_OPERATOR_MANIFEST \" " " attempt to create $PATH_TO_LOCAL_OPERATOR_MANIFEST resource"
127
127
}
You can’t perform that action at this time.
0 commit comments