Meaningful error message when fetch request is received for a package when build is not successful. (#661)

This commit is contained in:
smruthi2187
2018-05-03 22:51:48 +08:00
committed by Ta-Ching Chen
parent 2ece0db13f
commit f0dc2554a1
5 changed files with 14 additions and 5 deletions
@@ -55,7 +55,7 @@ fi
timeout 60 bash -c "test_fn $fn 'world'"
log "Updating function $fn with new resource values"
fission fn update --name $fn --env $env --code $ROOT/examples/python/hello.py --minscale 1 --maxscale 4 --executortype newdeploy --mincpu $mincpu2 --maxcpu $maxcpu2 --minmemory $minmem2 --maxmemory $maxmem2
fission fn update --name $fn --code $ROOT/examples/python/hello.py --minscale 1 --maxscale 4 --executortype newdeploy --mincpu $mincpu2 --maxcpu $maxcpu2 --minmemory $minmem2 --maxmemory $maxmem2
maxcpu_actual=$(kubectl get $func $fn -n default -ojsonpath='{.spec.resources.limits.cpu}'|tr -dc '0-9')
mincpu_actual=$(kubectl get $func $fn -n default -ojsonpath='{.spec.resources.requests.cpu}'|tr -dc '0-9')