1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00
kyverno/docs/perf-testing/size.sh
shuting 8929bd72a1
chore: update perf docs for 1.12 (#10116)
* fix: update kwok installation

Signed-off-by: ShutingZhao <shuting@nirmata.com>

* feat: create deployment

Signed-off-by: ShutingZhao <shuting@nirmata.com>

* feat: create pod

Signed-off-by: ShutingZhao <shuting@nirmata.com>

* chore: update commands

Signed-off-by: ShutingZhao <shuting@nirmata.com>

* chore: update readme

Signed-off-by: ShutingZhao <shuting@nirmata.com>

---------

Signed-off-by: ShutingZhao <shuting@nirmata.com>
2024-04-29 13:09:44 +03:00

26 lines
No EOL
780 B
Bash
Executable file

#!/bin/bash
## calculate total size for the given object
# read user input for the resource
echo "Enter the resource to caclutate the size:"
read resource
# /registry/reports.kyverno.io/ephemeralreports/
# /registry/wgpolicyk8s.io/policyreports/
sum=0
for key in `etcdctl get --prefix --keys-only /registry/$resource`
do
size=`etcdctl get $key --print-value-only | wc -c`
count=`etcdctl get $key --write-out=fields | grep \"Count\" | cut -f2 -d':'`
if [ $count -ne 0 ]; then
versions=`etcdctl get $key --write-out=fields | grep \"Version\" | cut -f2 -d':'`
else
versions=0
fi
total=$(( $size * $versions))
sum=$(( $sum + $total ))
echo $sum $total $size $versions $count $key >> /tmp/etcdkeys.txt
done
echo "The total size for $resource is $sum bytes."