after cloning repo (tag v1.14.0)to local machine; i have modified cmd/kube-apiserver/app/server.go
file; i hvae added one line of new code which is custome log entry
upon K8s code compilation i found docker images tar ball in _output/release-images/amd64/
and i used docker load -i _output/release-images/amd64/kube-apiserver.tar
it adds a newly built apiserver docker image but, rather than overwriting to tag it creates a new tag v1.14.0-dirty
now my question is how and why K8s is adding dirty
suffix to image tag?
Now when i do kubeam init it will still deploy original image with v1.14.0
tag and will not deploy newly built image which has v1.14.0-dirty
tag
how do i launch K8s with newly built docker images?