drop unnecessary -f from diff

This commit is contained in:
Jeffrey Regan
2018-05-18 11:24:23 -07:00
parent 00cb01a222
commit 6662bb6cc7
3 changed files with 19 additions and 40 deletions

View File

@@ -28,13 +28,6 @@
set -x
target=$1
echo Kustomizing: \"$target\"
ls $target
tmpDir=$(mktemp -d)
function configureCluster {
kustomize build $target > $tmpDir/my.yaml
[[ $? -eq 0 ]] || { exitWith "Failed to kustomize build"; }
@@ -115,6 +108,13 @@ function deleteAddedUser {
"cn=The Postmaster,dc=example,dc=org"
}
target=$1
echo Kustomizing: \"$target\"
ls $target
tmpDir=$(mktemp -d)
configureCluster
podName=`getPodField '{.items[0].metadata.name}'`